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:
@@ -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: '系统测试服务未启用' });
|
||||
|
||||
Reference in New Issue
Block a user