feat(image): complete reviewed generation delivery
Memind CI / Test, build, and release guards (pull_request) Successful in 2m47s

This commit is contained in:
john
2026-07-20 20:04:44 +08:00
parent fc3d27aae0
commit 4b15610aa8
42 changed files with 1764 additions and 97 deletions
+5
View File
@@ -20,6 +20,10 @@ test('lists static-page-publish in platform catalog', () => {
assert.ok(catalog.some((item) => item.name === 'service-integration-smoke'));
assert.ok(catalog.some((item) => item.name === 'product-campaign-page'));
assert.ok(catalog.some((item) => item.name === 'long-image-download'));
const imageGeneration = catalog.find((item) => item.name === 'image-generation');
assert.ok(imageGeneration);
assert.ok(imageGeneration.manifest.trigger.keywords.includes('AI配图'));
assert.equal(imageGeneration.manifest.router.promptKey, 'image-generation');
assert.ok(catalog.some((item) => item.name === 'excel-analyst'));
});
@@ -65,6 +69,7 @@ test('DEFAULT_USER_SKILLS enables common platform skills', () => {
assert.equal(DEFAULT_USER_SKILLS['table-viewer'], true);
assert.equal(DEFAULT_USER_SKILLS['product-campaign-page'], true);
assert.equal(DEFAULT_USER_SKILLS['long-image-download'], true);
assert.equal(DEFAULT_USER_SKILLS['image-generation'], true);
assert.equal(DEFAULT_USER_SKILLS['page-data-collect'], true);
assert.equal(DEFAULT_USER_SKILLS['static-page-publish'], false);
assert.equal(DEFAULT_USER_SKILLS['excel-analyst'], false);