feat: Page Data dev loop, adm Code Run UI, and customer order demo

Add verify→Aider→OpenHands dev loop, memindadm config/history UI, and john4
customer-order Page Data demo with scenario + verification scripts.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
john
2026-07-23 22:11:18 +08:00
parent 239c41f935
commit dab6140f99
22 changed files with 1795 additions and 14 deletions
+8
View File
@@ -284,6 +284,14 @@ export function createAdminApi({
return res.json(await agentCodeRunPolicyService.getRuntimeState());
});
adminApi.get('/agent-code-run/runs', requireAdmin, async (req, res) => {
if (!agentCodeRunPolicyService?.listRecentPageDataDevRuns) {
return res.status(503).json({ message: 'Agent Code Run 配置服务未启用' });
}
const limit = Number(req.query?.limit ?? 50);
return res.json(await agentCodeRunPolicyService.listRecentPageDataDevRuns({ limit }));
});
adminApi.post('/system-tests/skill-validation', requireAdmin, async (req, res) => {
if (!adminSystemTestService?.runSkillValidation) {
return res.status(503).json({ message: '系统测试服务未启用' });