zilmate 1.9.3 → 1.10.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.agents/skills/ad-creative/SKILL.md +362 -0
- package/.agents/skills/ad-creative/evals/evals.json +90 -0
- package/.agents/skills/ad-creative/references/generative-tools.md +637 -0
- package/.agents/skills/ad-creative/references/platform-specs.md +213 -0
- package/.agents/skills/ai-seo/SKILL.md +489 -0
- package/.agents/skills/ai-seo/evals/evals.json +90 -0
- package/.agents/skills/ai-seo/references/content-patterns.md +285 -0
- package/.agents/skills/ai-seo/references/content-types.md +71 -0
- package/.agents/skills/ai-seo/references/okf.md +104 -0
- package/.agents/skills/ai-seo/references/platform-ranking-factors.md +154 -0
- package/.agents/skills/clerk-backend-api/SKILL.md +426 -0
- package/.agents/skills/clerk-backend-api/evals/evals.json +87 -0
- package/.agents/skills/clerk-backend-api/scripts/api-specs-context.sh +30 -0
- package/.agents/skills/clerk-backend-api/scripts/execute-request.sh +88 -0
- package/.agents/skills/clerk-backend-api/scripts/extract-endpoint-detail.sh +165 -0
- package/.agents/skills/clerk-backend-api/scripts/extract-tag-endpoints.sh +208 -0
- package/.agents/skills/clerk-backend-api/scripts/extract-tags.js +14 -0
- package/.agents/skills/copy-editing/SKILL.md +457 -0
- package/.agents/skills/copy-editing/evals/evals.json +89 -0
- package/.agents/skills/copy-editing/references/checklist.md +66 -0
- package/.agents/skills/copy-editing/references/content-refresh.md +38 -0
- package/.agents/skills/copy-editing/references/plain-english-alternatives.md +394 -0
- package/.agents/skills/hyperframes/SKILL.md +163 -0
- package/.agents/skills/hyperframes-cli/SKILL.md +109 -0
- package/.agents/skills/hyperframes-cli/references/doctor-browser.md +45 -0
- package/.agents/skills/hyperframes-cli/references/init-and-scaffold.md +51 -0
- package/.agents/skills/hyperframes-cli/references/lambda.md +132 -0
- package/.agents/skills/hyperframes-cli/references/lint-validate-inspect.md +121 -0
- package/.agents/skills/hyperframes-cli/references/preview-render.md +109 -0
- package/.agents/skills/hyperframes-cli/references/upgrade-info-misc.md +75 -0
- package/.agents/skills/hyperframes-media/SKILL.md +97 -0
- package/.agents/skills/hyperframes-media/assets/sfx/CREDITS.md +35 -0
- package/.agents/skills/hyperframes-media/assets/sfx/manifest.json +97 -0
- package/.agents/skills/hyperframes-media/references/bgm.md +72 -0
- package/.agents/skills/hyperframes-media/references/captions/authoring.md +159 -0
- package/.agents/skills/hyperframes-media/references/captions/motion.md +87 -0
- package/.agents/skills/hyperframes-media/references/captions/transcript-handling.md +97 -0
- package/.agents/skills/hyperframes-media/references/remove-background.md +143 -0
- package/.agents/skills/hyperframes-media/references/requirements.md +29 -0
- package/.agents/skills/hyperframes-media/references/sfx.md +42 -0
- package/.agents/skills/hyperframes-media/references/transcribe.md +52 -0
- package/.agents/skills/hyperframes-media/references/tts-to-captions.md +24 -0
- package/.agents/skills/hyperframes-media/references/tts.md +135 -0
- package/.agents/skills/hyperframes-media/scripts/audio.mjs +282 -0
- package/.agents/skills/hyperframes-media/scripts/heygen-tts.mjs +121 -0
- package/.agents/skills/hyperframes-media/scripts/lib/bgm.mjs +235 -0
- package/.agents/skills/hyperframes-media/scripts/lib/heygen.mjs +131 -0
- package/.agents/skills/hyperframes-media/scripts/lib/sfx.mjs +128 -0
- package/.agents/skills/hyperframes-media/scripts/lib/tts.mjs +220 -0
- package/.agents/skills/hyperframes-media/scripts/lyria-recipe.py +128 -0
- package/.agents/skills/hyperframes-media/scripts/wait-bgm.mjs +167 -0
- package/.agents/skills/hyperframes-registry/SKILL.md +101 -0
- package/.agents/skills/hyperframes-registry/examples/add-block.md +51 -0
- package/.agents/skills/hyperframes-registry/examples/add-component.md +73 -0
- package/.agents/skills/hyperframes-registry/references/contributing.md +166 -0
- package/.agents/skills/hyperframes-registry/references/demo-html-pattern.md +54 -0
- package/.agents/skills/hyperframes-registry/references/discovery.md +215 -0
- package/.agents/skills/hyperframes-registry/references/install-locations.md +45 -0
- package/.agents/skills/hyperframes-registry/references/templates.md +417 -0
- package/.agents/skills/hyperframes-registry/references/wiring-blocks.md +61 -0
- package/.agents/skills/hyperframes-registry/references/wiring-components.md +39 -0
- package/.agents/skills/marketing-psychology/SKILL.md +455 -0
- package/.agents/skills/marketing-psychology/evals/evals.json +88 -0
- package/.agents/skills/mintlify/SKILL.md +328 -0
- package/.agents/skills/product-launch-video/SKILL.md +206 -0
- package/.agents/skills/product-launch-video/references/cut-catalog.md +220 -0
- package/.agents/skills/product-launch-video/references/motion-language.md +156 -0
- package/.agents/skills/product-launch-video/references/story-design.md +373 -0
- package/.agents/skills/product-launch-video/references/visual-design.md +126 -0
- package/.agents/skills/product-launch-video/scripts/assemble-index.mjs +570 -0
- package/.agents/skills/product-launch-video/scripts/audio.mjs +253 -0
- package/.agents/skills/product-launch-video/scripts/build-frame.mjs +536 -0
- package/.agents/skills/product-launch-video/scripts/captions.mjs +508 -0
- package/.agents/skills/product-launch-video/scripts/lib/assets.mjs +55 -0
- package/.agents/skills/product-launch-video/scripts/lib/dimensions.mjs +45 -0
- package/.agents/skills/product-launch-video/scripts/lib/storyboard.mjs +249 -0
- package/.agents/skills/product-launch-video/scripts/lib/tokens.mjs +204 -0
- package/.agents/skills/product-launch-video/scripts/lib/transition-registry.mjs +38 -0
- package/.agents/skills/product-launch-video/scripts/lib/transitions.json +71 -0
- package/.agents/skills/product-launch-video/scripts/stage-assets.mjs +39 -0
- package/.agents/skills/product-launch-video/scripts/transitions.mjs +320 -0
- package/.agents/skills/product-launch-video/sub-agents/frame-worker.md +74 -0
- package/.agents/skills/prompt-engineering-patterns/SKILL.md +144 -0
- package/.agents/skills/prompt-engineering-patterns/assets/few-shot-examples.json +106 -0
- package/.agents/skills/prompt-engineering-patterns/assets/prompt-template-library.md +264 -0
- package/.agents/skills/prompt-engineering-patterns/references/chain-of-thought.md +412 -0
- package/.agents/skills/prompt-engineering-patterns/references/details.md +338 -0
- package/.agents/skills/prompt-engineering-patterns/references/few-shot-learning.md +386 -0
- package/.agents/skills/prompt-engineering-patterns/references/prompt-optimization.md +428 -0
- package/.agents/skills/prompt-engineering-patterns/references/prompt-templates.md +484 -0
- package/.agents/skills/prompt-engineering-patterns/references/system-prompts.md +195 -0
- package/.agents/skills/prompt-engineering-patterns/scripts/optimize-prompt.py +279 -0
- package/.agents/skills/remotion-to-hyperframes/SKILL.md +127 -0
- package/.agents/skills/remotion-to-hyperframes/assets/.gitkeep +0 -0
- package/.agents/skills/remotion-to-hyperframes/assets/test-corpus/run.sh +249 -0
- package/.agents/skills/remotion-to-hyperframes/assets/test-corpus/tier-1-title-card/README.md +41 -0
- package/.agents/skills/remotion-to-hyperframes/assets/test-corpus/tier-1-title-card/expected.json +26 -0
- package/.agents/skills/remotion-to-hyperframes/assets/test-corpus/tier-1-title-card/hf-src/index.html +61 -0
- package/.agents/skills/remotion-to-hyperframes/assets/test-corpus/tier-1-title-card/remotion-src/package.json +14 -0
- package/.agents/skills/remotion-to-hyperframes/assets/test-corpus/tier-1-title-card/remotion-src/remotion.config.ts +13 -0
- package/.agents/skills/remotion-to-hyperframes/assets/test-corpus/tier-1-title-card/remotion-src/src/Root.tsx +13 -0
- package/.agents/skills/remotion-to-hyperframes/assets/test-corpus/tier-1-title-card/remotion-src/src/TitleCard.tsx +34 -0
- package/.agents/skills/remotion-to-hyperframes/assets/test-corpus/tier-1-title-card/remotion-src/src/index.ts +4 -0
- package/.agents/skills/remotion-to-hyperframes/assets/test-corpus/tier-1-title-card/remotion-src/tsconfig.json +15 -0
- package/.agents/skills/remotion-to-hyperframes/assets/test-corpus/tier-2-multi-scene/README.md +54 -0
- package/.agents/skills/remotion-to-hyperframes/assets/test-corpus/tier-2-multi-scene/expected.json +29 -0
- package/.agents/skills/remotion-to-hyperframes/assets/test-corpus/tier-2-multi-scene/hf-src/index.html +118 -0
- package/.agents/skills/remotion-to-hyperframes/assets/test-corpus/tier-2-multi-scene/remotion-src/package.json +14 -0
- package/.agents/skills/remotion-to-hyperframes/assets/test-corpus/tier-2-multi-scene/remotion-src/remotion.config.ts +13 -0
- package/.agents/skills/remotion-to-hyperframes/assets/test-corpus/tier-2-multi-scene/remotion-src/src/MultiScene.tsx +105 -0
- package/.agents/skills/remotion-to-hyperframes/assets/test-corpus/tier-2-multi-scene/remotion-src/src/Root.tsx +13 -0
- package/.agents/skills/remotion-to-hyperframes/assets/test-corpus/tier-2-multi-scene/remotion-src/src/index.ts +4 -0
- package/.agents/skills/remotion-to-hyperframes/assets/test-corpus/tier-2-multi-scene/remotion-src/tsconfig.json +15 -0
- package/.agents/skills/remotion-to-hyperframes/assets/test-corpus/tier-2-multi-scene/setup.sh +34 -0
- package/.agents/skills/remotion-to-hyperframes/assets/test-corpus/tier-3-data-driven/README.md +85 -0
- package/.agents/skills/remotion-to-hyperframes/assets/test-corpus/tier-3-data-driven/expected.json +41 -0
- package/.agents/skills/remotion-to-hyperframes/assets/test-corpus/tier-3-data-driven/hf-src/index.html +269 -0
- package/.agents/skills/remotion-to-hyperframes/assets/test-corpus/tier-3-data-driven/remotion-src/package.json +15 -0
- package/.agents/skills/remotion-to-hyperframes/assets/test-corpus/tier-3-data-driven/remotion-src/remotion.config.ts +13 -0
- package/.agents/skills/remotion-to-hyperframes/assets/test-corpus/tier-3-data-driven/remotion-src/src/Root.tsx +27 -0
- package/.agents/skills/remotion-to-hyperframes/assets/test-corpus/tier-3-data-driven/remotion-src/src/Stargazed.tsx +37 -0
- package/.agents/skills/remotion-to-hyperframes/assets/test-corpus/tier-3-data-driven/remotion-src/src/components/AnimatedNumber.tsx +23 -0
- package/.agents/skills/remotion-to-hyperframes/assets/test-corpus/tier-3-data-driven/remotion-src/src/components/StatCard.tsx +59 -0
- package/.agents/skills/remotion-to-hyperframes/assets/test-corpus/tier-3-data-driven/remotion-src/src/components/UnderlinedText.tsx +47 -0
- package/.agents/skills/remotion-to-hyperframes/assets/test-corpus/tier-3-data-driven/remotion-src/src/index.ts +4 -0
- package/.agents/skills/remotion-to-hyperframes/assets/test-corpus/tier-3-data-driven/remotion-src/src/scenes/OutroScene.tsx +18 -0
- package/.agents/skills/remotion-to-hyperframes/assets/test-corpus/tier-3-data-driven/remotion-src/src/scenes/StatsScene.tsx +34 -0
- package/.agents/skills/remotion-to-hyperframes/assets/test-corpus/tier-3-data-driven/remotion-src/src/scenes/TitleScene.tsx +55 -0
- package/.agents/skills/remotion-to-hyperframes/assets/test-corpus/tier-3-data-driven/remotion-src/tsconfig.json +15 -0
- package/.agents/skills/remotion-to-hyperframes/assets/test-corpus/tier-4-escape-hatch/README.md +51 -0
- package/.agents/skills/remotion-to-hyperframes/assets/test-corpus/tier-4-escape-hatch/cases/01-use-state.tsx +29 -0
- package/.agents/skills/remotion-to-hyperframes/assets/test-corpus/tier-4-escape-hatch/cases/02-use-effect-deps.tsx +29 -0
- package/.agents/skills/remotion-to-hyperframes/assets/test-corpus/tier-4-escape-hatch/cases/03-async-metadata.tsx +39 -0
- package/.agents/skills/remotion-to-hyperframes/assets/test-corpus/tier-4-escape-hatch/cases/04-third-party-react.tsx +30 -0
- package/.agents/skills/remotion-to-hyperframes/assets/test-corpus/tier-4-escape-hatch/cases/05-lambda-config.tsx +38 -0
- package/.agents/skills/remotion-to-hyperframes/assets/test-corpus/tier-4-escape-hatch/cases/06-warnings-only.tsx +36 -0
- package/.agents/skills/remotion-to-hyperframes/assets/test-corpus/tier-4-escape-hatch/cases/07-custom-hook.tsx +28 -0
- package/.agents/skills/remotion-to-hyperframes/assets/test-corpus/tier-4-escape-hatch/cases/08-mixed.tsx +41 -0
- package/.agents/skills/remotion-to-hyperframes/assets/test-corpus/tier-4-escape-hatch/expected.json +85 -0
- package/.agents/skills/remotion-to-hyperframes/assets/test-corpus/tier-4-escape-hatch/validate.sh +110 -0
- package/.agents/skills/remotion-to-hyperframes/references/api-map.md +142 -0
- package/.agents/skills/remotion-to-hyperframes/references/escape-hatch.md +115 -0
- package/.agents/skills/remotion-to-hyperframes/references/eval.md +140 -0
- package/.agents/skills/remotion-to-hyperframes/references/fonts.md +112 -0
- package/.agents/skills/remotion-to-hyperframes/references/limitations.md +136 -0
- package/.agents/skills/remotion-to-hyperframes/references/lottie.md +121 -0
- package/.agents/skills/remotion-to-hyperframes/references/media.md +149 -0
- package/.agents/skills/remotion-to-hyperframes/references/parameters.md +167 -0
- package/.agents/skills/remotion-to-hyperframes/references/sequencing.md +195 -0
- package/.agents/skills/remotion-to-hyperframes/references/timing.md +165 -0
- package/.agents/skills/remotion-to-hyperframes/references/transitions.md +114 -0
- package/.agents/skills/remotion-to-hyperframes/scripts/.gitkeep +0 -0
- package/.agents/skills/remotion-to-hyperframes/scripts/frame_strip.sh +107 -0
- package/.agents/skills/remotion-to-hyperframes/scripts/lint_source.py +358 -0
- package/.agents/skills/remotion-to-hyperframes/scripts/render_diff.sh +103 -0
- package/.agents/skills/remotion-to-hyperframes/scripts/tests/fixtures/blocker.tsx +50 -0
- package/.agents/skills/remotion-to-hyperframes/scripts/tests/fixtures/clean.tsx +46 -0
- package/.agents/skills/remotion-to-hyperframes/scripts/tests/smoke.sh +90 -0
- package/.agents/skills/seo-audit/SKILL.md +497 -0
- package/.agents/skills/seo-audit/evals/evals.json +136 -0
- package/.agents/skills/seo-audit/references/ai-writing-detection.md +200 -0
- package/.agents/skills/seo-audit/references/international-seo.md +230 -0
- package/README.md +4 -2
- package/SDK.md +64 -1
- package/dist/agents/coding.agent.d.ts +632 -0
- package/dist/agents/coding.agent.d.ts.map +1 -1
- package/dist/agents/coding.agent.js +11 -3
- package/dist/agents/coding.agent.js.map +1 -1
- package/dist/agents/developer-helper.agent.d.ts +704 -0
- package/dist/agents/developer-helper.agent.d.ts.map +1 -1
- package/dist/agents/developer-helper.agent.js +6 -0
- package/dist/agents/developer-helper.agent.js.map +1 -1
- package/dist/agents/manager.d.ts +1009 -4
- package/dist/agents/manager.d.ts.map +1 -1
- package/dist/agents/manager.js +16 -5
- package/dist/agents/manager.js.map +1 -1
- package/dist/agents/security.agent.d.ts +157 -3
- package/dist/agents/security.agent.d.ts.map +1 -1
- package/dist/agents/security.agent.js +3 -0
- package/dist/agents/security.agent.js.map +1 -1
- package/dist/agents/swarm/main.js +1 -1
- package/dist/agents/swarm/main.js.map +1 -1
- package/dist/agents/swarm/registry.d.ts.map +1 -1
- package/dist/agents/swarm/registry.js +232 -26
- package/dist/agents/swarm/registry.js.map +1 -1
- package/dist/cli/chat.d.ts +1 -1
- package/dist/cli/chat.d.ts.map +1 -1
- package/dist/cli/chat.js +32 -10
- package/dist/cli/chat.js.map +1 -1
- package/dist/cli/doctor.d.ts +14 -0
- package/dist/cli/doctor.d.ts.map +1 -1
- package/dist/cli/doctor.js +91 -0
- package/dist/cli/doctor.js.map +1 -1
- package/dist/cli/format.d.ts +1 -0
- package/dist/cli/format.d.ts.map +1 -1
- package/dist/cli/format.js +68 -14
- package/dist/cli/format.js.map +1 -1
- package/dist/cli/menu.d.ts.map +1 -1
- package/dist/cli/menu.js +102 -0
- package/dist/cli/menu.js.map +1 -1
- package/dist/cli/setup.d.ts +10 -0
- package/dist/cli/setup.d.ts.map +1 -1
- package/dist/cli/setup.js +187 -3
- package/dist/cli/setup.js.map +1 -1
- package/dist/cli/update.d.ts +2 -0
- package/dist/cli/update.d.ts.map +1 -1
- package/dist/cli/update.js +89 -1
- package/dist/cli/update.js.map +1 -1
- package/dist/config/env.d.ts +12 -0
- package/dist/config/env.d.ts.map +1 -1
- package/dist/config/env.js +19 -5
- package/dist/config/env.js.map +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +61 -5
- package/dist/index.js.map +1 -1
- package/dist/jobs/trigger-orchestrator.d.ts +5 -1
- package/dist/jobs/trigger-orchestrator.d.ts.map +1 -1
- package/dist/jobs/trigger-orchestrator.js +29 -9
- package/dist/jobs/trigger-orchestrator.js.map +1 -1
- package/dist/jobs/trigger-router.d.ts.map +1 -1
- package/dist/jobs/trigger-router.js +3 -2
- package/dist/jobs/trigger-router.js.map +1 -1
- package/dist/memory/corporate-wiki.d.ts +15 -0
- package/dist/memory/corporate-wiki.d.ts.map +1 -0
- package/dist/memory/corporate-wiki.js +152 -0
- package/dist/memory/corporate-wiki.js.map +1 -0
- package/dist/observability/doctor.d.ts.map +1 -1
- package/dist/observability/doctor.js +12 -4
- package/dist/observability/doctor.js.map +1 -1
- package/dist/pre-init.d.ts +2 -0
- package/dist/pre-init.d.ts.map +1 -0
- package/dist/pre-init.js +3 -0
- package/dist/pre-init.js.map +1 -0
- package/dist/runtime/chat-bridge.d.ts.map +1 -1
- package/dist/runtime/chat-bridge.js +33 -2
- package/dist/runtime/chat-bridge.js.map +1 -1
- package/dist/runtime/swarm.d.ts +0 -1
- package/dist/runtime/swarm.d.ts.map +1 -1
- package/dist/runtime/swarm.js +26 -15
- package/dist/runtime/swarm.js.map +1 -1
- package/dist/safety/approvals.d.ts +2 -2
- package/dist/safety/approvals.d.ts.map +1 -1
- package/dist/safety/approvals.js +47 -1
- package/dist/safety/approvals.js.map +1 -1
- package/dist/safety/redaction.d.ts.map +1 -1
- package/dist/safety/redaction.js +10 -0
- package/dist/safety/redaction.js.map +1 -1
- package/dist/server.d.ts +1 -0
- package/dist/server.d.ts.map +1 -1
- package/dist/server.js +1 -0
- package/dist/server.js.map +1 -1
- package/dist/tools/cloud.tool.d.ts +394 -0
- package/dist/tools/cloud.tool.d.ts.map +1 -0
- package/dist/tools/cloud.tool.js +784 -0
- package/dist/tools/cloud.tool.js.map +1 -0
- package/dist/tools/computer-use.tool.d.ts +6 -6
- package/dist/tools/corporate-wiki.tool.d.ts +22 -0
- package/dist/tools/corporate-wiki.tool.d.ts.map +1 -0
- package/dist/tools/corporate-wiki.tool.js +39 -0
- package/dist/tools/corporate-wiki.tool.js.map +1 -0
- package/dist/tools/desktop.tool.d.ts +96 -0
- package/dist/tools/desktop.tool.d.ts.map +1 -1
- package/dist/tools/desktop.tool.js +439 -0
- package/dist/tools/desktop.tool.js.map +1 -1
- package/dist/tools/devops.tool.d.ts +162 -0
- package/dist/tools/devops.tool.d.ts.map +1 -0
- package/dist/tools/devops.tool.js +377 -0
- package/dist/tools/devops.tool.js.map +1 -0
- package/dist/tools/multimedia.tool.d.ts +126 -0
- package/dist/tools/multimedia.tool.d.ts.map +1 -0
- package/dist/tools/multimedia.tool.js +533 -0
- package/dist/tools/multimedia.tool.js.map +1 -0
- package/dist/tools/osint.tool.d.ts +6 -6
- package/dist/tools/sandbox-dev.tool.d.ts +15 -0
- package/dist/tools/sandbox-dev.tool.d.ts.map +1 -0
- package/dist/tools/sandbox-dev.tool.js +139 -0
- package/dist/tools/sandbox-dev.tool.js.map +1 -0
- package/dist/tools/setup-assistant.tool.d.ts +1 -1
- package/dist/tools/shell.tool.d.ts +82 -0
- package/dist/tools/shell.tool.d.ts.map +1 -1
- package/dist/tools/shell.tool.js +192 -1
- package/dist/tools/shell.tool.js.map +1 -1
- package/dist/tools/swarm-ops.tool.d.ts +14 -0
- package/dist/tools/swarm-ops.tool.d.ts.map +1 -1
- package/dist/tools/swarm-ops.tool.js +44 -0
- package/dist/tools/swarm-ops.tool.js.map +1 -1
- package/dist/tools/sysops.tool.d.ts +157 -0
- package/dist/tools/sysops.tool.d.ts.map +1 -0
- package/dist/tools/sysops.tool.js +643 -0
- package/dist/tools/sysops.tool.js.map +1 -0
- package/dist/voice/cascade.d.ts +1 -0
- package/dist/voice/cascade.d.ts.map +1 -1
- package/dist/voice/cascade.js +16 -1
- package/dist/voice/cascade.js.map +1 -1
- package/dist/voice/deepgram.d.ts.map +1 -1
- package/dist/voice/deepgram.js +34 -2
- package/dist/voice/deepgram.js.map +1 -1
- package/dist/voice/terminal.d.ts +1 -0
- package/dist/voice/terminal.d.ts.map +1 -1
- package/dist/voice/terminal.js +28 -0
- package/dist/voice/terminal.js.map +1 -1
- package/dist/voice/types.d.ts +2 -0
- package/dist/voice/types.d.ts.map +1 -1
- package/package.json +9 -1
- package/scripts/release-github.mjs +23 -18
|
@@ -21,6 +21,7 @@ export const specialistRegistry = {
|
|
|
21
21
|
'2. Prioritize the backlog based on user feedback and competitive analysis.',
|
|
22
22
|
'3. Coordinate with the Architect to ensure technical feasibility.',
|
|
23
23
|
'4. Review feature completion reports from QA and provide the final sign-off.',
|
|
24
|
+
'5. ALWAYS read and apply the following specialized skills as appropriate: "design-md", "ai-seo", "marketing-psychology", and "find-skills".',
|
|
24
25
|
'KPIs: Sprint velocity, feature-market fit, and ticket clarity.',
|
|
25
26
|
].join('\n'),
|
|
26
27
|
tools: { ...fileSystemTools, ...webIntelligenceTools, ...skillTools },
|
|
@@ -36,6 +37,7 @@ export const specialistRegistry = {
|
|
|
36
37
|
'2. Monitor industry trends and signal strategic threats or opportunities.',
|
|
37
38
|
'3. Analyze market sentiment from Twitter/Reddit/Discord.',
|
|
38
39
|
'4. Provide the Product Manager with data-backed feature suggestions.',
|
|
40
|
+
'5. ALWAYS read and apply relevant search and research skills before starting tasks: "firecrawl-deep-research", "tavily-research", "firecrawl", and "linkup-search".',
|
|
39
41
|
'KPIs: Insight depth, threat detection speed, and research accuracy.',
|
|
40
42
|
].join('\n'),
|
|
41
43
|
tools: { ...fileSystemTools, ...webIntelligenceTools, ...skillTools },
|
|
@@ -51,6 +53,7 @@ export const specialistRegistry = {
|
|
|
51
53
|
'2. Perform visual audits using "visualBrowserAudit" to find UI friction.',
|
|
52
54
|
'3. Draft UX improvement specs for the Creative Director.',
|
|
53
55
|
'4. Monitor "sentiment drop-off" in the sales funnel.',
|
|
56
|
+
'5. ALWAYS read and apply the following design guidelines and browser skills before audits: "web-design-guidelines", "ui-ux-pro-max", "frontend-design", and "agent-browser".',
|
|
54
57
|
'KPIs: User satisfaction (CSAT), task completion rate, and UI polish score.',
|
|
55
58
|
].join('\n'),
|
|
56
59
|
tools: { ...fileSystemTools, ...browserTools, ...skillTools },
|
|
@@ -66,6 +69,7 @@ export const specialistRegistry = {
|
|
|
66
69
|
'2. Review Pull Requests specifically for architectural consistency and security vulnerabilities.',
|
|
67
70
|
'3. Maintain the technical documentation and ADRs (Architecture Decision Records) in Notion.',
|
|
68
71
|
'4. Plan infrastructure scaling with the DevOps SRE and manage Render/AWS/Vercel blueprints.',
|
|
72
|
+
'5. ALWAYS read and apply the following specialized engineering and design skills before defining specs: "next-best-practices", "stripe-best-practices", "supabase-postgres-best-practices", and "mcp-builder".',
|
|
69
73
|
'KPIs: System uptime potential, technical debt reduction, and implementation speed.',
|
|
70
74
|
].join('\n'),
|
|
71
75
|
tools: { ...fileSystemTools, ...shellTools },
|
|
@@ -81,6 +85,7 @@ export const specialistRegistry = {
|
|
|
81
85
|
'2. Write unit and integration tests for every new feature.',
|
|
82
86
|
'3. Fix bugs identified by the QA Engineer or User Feedback.',
|
|
83
87
|
'4. Optimize code performance and manage the Git repository.',
|
|
88
|
+
'5. ALWAYS read and apply the following coding, framework, and database skills before modifying source code: "tdd", "shadcn", "ai-sdk", "chat-sdk", "neon-drizzle", and "prisma-client-api".',
|
|
84
89
|
'KPIs: Code quality (lint/test pass), commit frequency, and bug fix rate.',
|
|
85
90
|
].join('\n'),
|
|
86
91
|
tools: { ...fileSystemTools, ...shellTools },
|
|
@@ -97,6 +102,7 @@ export const specialistRegistry = {
|
|
|
97
102
|
'3. Use Visual Reasoning to verify UI state and layout against design specs.',
|
|
98
103
|
'4. Use "runHealPass" to automatically attempt to fix environment issues or test failures.',
|
|
99
104
|
'5. Block the CEO from approving deployments if critical tests fail.',
|
|
105
|
+
'6. ALWAYS read and apply the following quality, browser automation, and testing skills before running audits: "playwright-best-practices", "playwright-cli", "tdd", and "agent-browser".',
|
|
100
106
|
'KPIs: Test coverage, bug leakage to production, and regression detection.',
|
|
101
107
|
].join('\n'),
|
|
102
108
|
tools: { ...fileSystemTools, ...browserTools, ...healTools, ...skillTools },
|
|
@@ -112,11 +118,75 @@ export const specialistRegistry = {
|
|
|
112
118
|
'2. Monitor production logs via Sentry/Datadog and manage "Log Sentinels".',
|
|
113
119
|
'3. Automate server scaling and resource allocation on Render/AWS.',
|
|
114
120
|
'4. Coordinate disaster recovery protocols with the COO.',
|
|
121
|
+
'5. ALWAYS read and apply the following sandbox and Upstash runtime skills: "upstash-box-js", "upstash-box-py", "upstash-cli", "upstash-qstash-js", "upstash-ratelimit-js", and "upstash-redis-js".',
|
|
115
122
|
'KPIs: Mean time to recovery (MTTR), infrastructure cost, and system uptime.',
|
|
116
123
|
].join('\n'),
|
|
117
124
|
tools: { ...shellTools, ...fileSystemTools },
|
|
118
125
|
composioToolkits: ['github', 'sentry', 'datadog', 'render', 'aws', 'pagerduty'],
|
|
119
126
|
},
|
|
127
|
+
creativeDirector: {
|
|
128
|
+
name: 'Creative Director',
|
|
129
|
+
department: 'Engineering',
|
|
130
|
+
instructions: [
|
|
131
|
+
'You are the lead visual designer and brand guardian.',
|
|
132
|
+
'OPERATING PROCEDURES:',
|
|
133
|
+
'1. Design high-fidelity UI components and design systems.',
|
|
134
|
+
'2. Create visual assets for marketing campaigns (social, ads, blog).',
|
|
135
|
+
'3. Ensure brand consistency across the entire digital footprint.',
|
|
136
|
+
'4. Review UI implementation with the UX Researcher.',
|
|
137
|
+
'5. ALWAYS read and apply the following design system, layout, and utility skills before creating design blueprints: "ui-ux-pro-max", "frontend-design", "web-design-guidelines", and "ai-elements".',
|
|
138
|
+
'KPIs: Brand consistency, asset quality, and design-to-code fidelity.',
|
|
139
|
+
].join('\n'),
|
|
140
|
+
tools: { ...fileSystemTools, ...browserTools, ...skillTools },
|
|
141
|
+
},
|
|
142
|
+
securityAuditor: {
|
|
143
|
+
name: 'Security Auditor',
|
|
144
|
+
department: 'Engineering',
|
|
145
|
+
instructions: [
|
|
146
|
+
'You are the Lead Security Auditor responsible for the swarm’s defensive posture.',
|
|
147
|
+
'OPERATING PROCEDURES:',
|
|
148
|
+
'1. Perform periodic OSINT and Pentest scans of the corporation’s digital assets.',
|
|
149
|
+
'2. Audit API key usage and detect suspicious credential leaks.',
|
|
150
|
+
'3. Review code patches for OWASP Top 10 vulnerabilities.',
|
|
151
|
+
'4. Lead the technical response during a "Security Crisis".',
|
|
152
|
+
'5. ALWAYS read and apply secure backend and authentication skills before conducting audits: "supabase-postgres-best-practices" and "clerk-backend-api".',
|
|
153
|
+
'KPIs: Vulnerability detection rate, patch speed, and zero-day protection.',
|
|
154
|
+
].join('\n'),
|
|
155
|
+
tools: { ...fileSystemTools, ...shellTools, ...webIntelligenceTools, ...skillTools },
|
|
156
|
+
composioToolkits: ['github', 'sentry', 'auth0'],
|
|
157
|
+
},
|
|
158
|
+
cyberSecurityRedTeamer: {
|
|
159
|
+
name: 'Cybersecurity Red-Teamer',
|
|
160
|
+
department: 'Engineering',
|
|
161
|
+
instructions: [
|
|
162
|
+
'You are the Lead Cybersecurity Penetration Tester and Red-Team operator.',
|
|
163
|
+
'OPERATING PROCEDURES:',
|
|
164
|
+
'1. Conduct continuous automated vulnerability scans on active API endpoints and staging apps.',
|
|
165
|
+
'2. Perform security fuzzing, input validation attacks, and search for secret keys leaks in repositories.',
|
|
166
|
+
'3. Generate comprehensive security audit logs and patch blueprints for the Backend Architect.',
|
|
167
|
+
'4. Test OAuth integration configurations and Role-Based Access Controls (RBAC) under malicious scenarios.',
|
|
168
|
+
'5. ALWAYS read and apply the following security and sandbox browser skills before conducting tests: "supabase-postgres-best-practices" and "agent-browser".',
|
|
169
|
+
'KPIs: Vulnerabilities detected pre-release, security coverage, and system hardiness.',
|
|
170
|
+
].join('\n'),
|
|
171
|
+
tools: { ...fileSystemTools, ...shellTools, ...webIntelligenceTools, ...skillTools },
|
|
172
|
+
composioToolkits: ['github', 'sentry', 'shodan'],
|
|
173
|
+
},
|
|
174
|
+
videoProducer: {
|
|
175
|
+
name: 'Video Producer',
|
|
176
|
+
department: 'Engineering',
|
|
177
|
+
instructions: [
|
|
178
|
+
'You are the lead Video Producer and Creative Asset Animator.',
|
|
179
|
+
'OPERATING PROCEDURES:',
|
|
180
|
+
'1. Design and write storyboards, video scripts, and narration copies for product features.',
|
|
181
|
+
'2. Generate motion graphics, subtitle tracks, and voiceovers using text-to-speech tools.',
|
|
182
|
+
'3. ALWAYS read and apply relevant video/rendering skills before starting design: "remotion-render", "remotion-best-practices", "remotion-to-hyperframes", "hyperframes", "hyperframes-cli", "hyperframes-media", "hyperframes-registry", and "product-launch-video".',
|
|
183
|
+
'4. Utilize Remotion or Canvas-rendering automation (HyperFrames) to programmatically compile React/HTML into MP4 assets.',
|
|
184
|
+
'5. Review final video assets and coordinate with the Social Media Manager for multi-channel distribution.',
|
|
185
|
+
'KPIs: Video engagement rate, render speed, and creative clarity.',
|
|
186
|
+
].join('\n'),
|
|
187
|
+
tools: { ...fileSystemTools, ...shellTools, ...skillTools, postGenerateTool },
|
|
188
|
+
composioToolkits: ['youtube', 'tiktok', 'instagram', 'github'],
|
|
189
|
+
},
|
|
120
190
|
// ── Development Department ──────────────────────────────────────────────
|
|
121
191
|
leadDeveloper: {
|
|
122
192
|
name: 'Lead Developer',
|
|
@@ -128,6 +198,7 @@ export const specialistRegistry = {
|
|
|
128
198
|
'2. Ensure cross-departmental coordination (e.g., Database vs Frontend).',
|
|
129
199
|
'3. Review final integrated codebases for completeness and performance.',
|
|
130
200
|
'4. Manage the development lifecycle from scaffolding to deployment readiness.',
|
|
201
|
+
'5. ALWAYS read and apply the following architectural and orchestration skills before structuring plans: "next-best-practices", "find-skills", and "skill-creator".',
|
|
131
202
|
'KPIs: Project delivery time, system stability, and feature completeness.',
|
|
132
203
|
].join('\n'),
|
|
133
204
|
tools: { ...fileSystemTools, ...shellTools, ...codeIntelligenceTools, ...skillTools },
|
|
@@ -143,6 +214,7 @@ export const specialistRegistry = {
|
|
|
143
214
|
'2. Implement complex UI components using shadcn/ui, Tailwind CSS, and Framer Motion.',
|
|
144
215
|
'3. Set up global state management (Zustand, Redux, React Query).',
|
|
145
216
|
'4. Integrate frontend with Supabase Auth or third-party OAuth providers.',
|
|
217
|
+
'5. ALWAYS read and apply the following high-fidelity frontend component skills: "shadcn", "ui-ux-pro-max", "frontend-design", "web-design-guidelines", and "ai-elements".',
|
|
146
218
|
'KPIs: UI performance, accessibility score, and design fidelity.',
|
|
147
219
|
].join('\n'),
|
|
148
220
|
tools: { ...fileSystemTools, ...shellTools, ...skillTools },
|
|
@@ -158,6 +230,7 @@ export const specialistRegistry = {
|
|
|
158
230
|
'2. Implement complex business logic, background jobs, and Webhook handlers.',
|
|
159
231
|
'3. Integrate third-party services via Composio (Stripe, Twilio, SendGrid).',
|
|
160
232
|
'4. Manage serverless functions and edge computing deployments.',
|
|
233
|
+
'5. ALWAYS read and apply the following server architecture and billing integration skills: "next-best-practices", "stripe-best-practices", and "mcp-builder".',
|
|
161
234
|
'KPIs: API latency, uptime, and integration reliability.',
|
|
162
235
|
].join('\n'),
|
|
163
236
|
tools: { ...fileSystemTools, ...shellTools, ...codeIntelligenceTools, ...skillTools },
|
|
@@ -173,6 +246,7 @@ export const specialistRegistry = {
|
|
|
173
246
|
'2. Manage auto-migrations using Drizzle or Prisma.',
|
|
174
247
|
'3. Optimize slow queries and implement effective indexing strategies.',
|
|
175
248
|
'4. Handle real-time data sync using Supabase Realtime or WebSockets.',
|
|
249
|
+
'5. ALWAYS read and apply the following database, modeling, and performance optimization skills: "neon-drizzle", "neon-postgres", "prisma-client-api", "prisma-database-setup", "prisma-postgres", and "supabase-postgres-best-practices".',
|
|
176
250
|
'KPIs: Query performance, data integrity, and migration safety.',
|
|
177
251
|
].join('\n'),
|
|
178
252
|
tools: { ...fileSystemTools, ...shellTools, ...skillTools },
|
|
@@ -188,6 +262,7 @@ export const specialistRegistry = {
|
|
|
188
262
|
'2. Perform security audits for OWASP Top 10 vulnerabilities.',
|
|
189
263
|
'3. Configure RBAC (Role-Based Access Control) and secure API endpoints.',
|
|
190
264
|
'4. Debug and fix legacy code regressions and critical bugs.',
|
|
265
|
+
'5. ALWAYS read and apply the following QA, E2E testing, and TDD skills before running builds: "playwright-best-practices", "playwright-cli", and "tdd".',
|
|
191
266
|
'KPIs: Test coverage, vulnerability count, and bug resolution speed.',
|
|
192
267
|
].join('\n'),
|
|
193
268
|
tools: { ...fileSystemTools, ...shellTools, ...healTools, ...skillTools },
|
|
@@ -203,6 +278,7 @@ export const specialistRegistry = {
|
|
|
203
278
|
'2. Implement Stripe subscription management and billing webhooks.',
|
|
204
279
|
'3. Monitor system health and optimize infrastructure costs.',
|
|
205
280
|
'4. Set up Edge functions and global CDN configurations.',
|
|
281
|
+
'5. ALWAYS read and apply the following monetization, cloud provisioning, and webhook handling skills: "stripe-best-practices", "stripe-projects", "upstash-qstash-js", and "upstash-workflow-js".',
|
|
206
282
|
'KPIs: Deployment speed, billing accuracy, and infrastructure ROI.',
|
|
207
283
|
].join('\n'),
|
|
208
284
|
tools: { ...fileSystemTools, ...shellTools, ...skillTools },
|
|
@@ -218,6 +294,7 @@ export const specialistRegistry = {
|
|
|
218
294
|
'2. Use Three.js, PixiJS, or Canvas for high-performance rendering.',
|
|
219
295
|
'3. Build usable game UIs and HUDs with React/Vite.',
|
|
220
296
|
'4. Implement multiplayer synchronization using WebSockets.',
|
|
297
|
+
'5. ALWAYS read and apply the following animation, design, and rendering skills before starting: "ui-ux-pro-max", "frontend-design", and "remotion-render".',
|
|
221
298
|
'KPIs: Frame rate stability, player engagement, and logic accuracy.',
|
|
222
299
|
].join('\n'),
|
|
223
300
|
tools: { ...fileSystemTools, ...shellTools, ...skillTools },
|
|
@@ -233,24 +310,91 @@ export const specialistRegistry = {
|
|
|
233
310
|
'2. Build data visualization dashboards using D3.js or Recharts.',
|
|
234
311
|
'3. Integrate AI/ML models for predictive features (e.g., sleep pattern analysis).',
|
|
235
312
|
'4. Generate comprehensive technical documentation and API specifications.',
|
|
313
|
+
'5. ALWAYS read and apply the following memory, semantic search, and vector storage skills: "supermemory", "supermemory-cli", "upstash-vector-js", and "upstash-search-js".',
|
|
236
314
|
'KPIs: Data processing speed, insight accuracy, and documentation quality.',
|
|
237
315
|
].join('\n'),
|
|
238
316
|
tools: { ...fileSystemTools, ...shellTools, ...codeIntelligenceTools, ...skillTools },
|
|
239
317
|
composioToolkits: ['github', 'notion', 'supabase', 'google_search'],
|
|
240
318
|
},
|
|
241
|
-
|
|
242
|
-
name: '
|
|
243
|
-
department: '
|
|
319
|
+
apiIntegrator: {
|
|
320
|
+
name: 'API Integrator',
|
|
321
|
+
department: 'Development',
|
|
244
322
|
instructions: [
|
|
245
|
-
'You are the
|
|
323
|
+
'You are the API & SDK Integration Specialist.',
|
|
246
324
|
'OPERATING PROCEDURES:',
|
|
247
|
-
'1.
|
|
248
|
-
'2.
|
|
249
|
-
'3.
|
|
250
|
-
'4.
|
|
251
|
-
'
|
|
325
|
+
'1. Connect and interface with third-party APIs and platform connectors using Composio.',
|
|
326
|
+
'2. Integrate core AI frameworks and handle model interactions. Always read "ai-sdk" and "chat-sdk" before writing code.',
|
|
327
|
+
'3. Consult the "composio" and "clerk-backend-api" skills when handling third-party integrations or authentication schemas.',
|
|
328
|
+
'4. Ensure resilient error handling, retry backoffs, and secure credential parsing across all system endpoints.',
|
|
329
|
+
'5. ALWAYS read and apply the following integration and monetization skills before starting tasks: "ai-sdk", "chat-sdk", "clerk-backend-api", "composio", and "stripe-best-practices".',
|
|
330
|
+
'KPIs: API integration reliability, response parsing latency, and integration coverage.',
|
|
252
331
|
].join('\n'),
|
|
253
|
-
tools: { ...fileSystemTools, ...
|
|
332
|
+
tools: { ...fileSystemTools, ...shellTools, ...skillTools },
|
|
333
|
+
composioToolkits: ['github', 'stripe', 'clerk', 'notion'],
|
|
334
|
+
},
|
|
335
|
+
mobileDeveloper: {
|
|
336
|
+
name: 'Mobile Developer',
|
|
337
|
+
department: 'Development',
|
|
338
|
+
instructions: [
|
|
339
|
+
'You are the Expo and React Native Mobile Specialist.',
|
|
340
|
+
'OPERATING PROCEDURES:',
|
|
341
|
+
'1. Scaffold, develop, and test cross-platform mobile apps using Expo and React Native.',
|
|
342
|
+
'2. Read the "vercel-react-native-skills" and "expo-tailwind-setup" skills before writing code.',
|
|
343
|
+
'3. Follow mobile aesthetic and human interface guidelines by reading "mobile-ios-design" and "mobile-android-design" skills.',
|
|
344
|
+
'4. Build performance-optimized mobile screens with smooth transitions and touch interactions.',
|
|
345
|
+
'5. ALWAYS read and apply the following mobile architecture, setup, and native design skills: "vercel-react-native-skills", "expo-tailwind-setup", "mobile-ios-design", and "mobile-android-design".',
|
|
346
|
+
'KPIs: Touch response speed, UI render performance, and visual fidelity.',
|
|
347
|
+
].join('\n'),
|
|
348
|
+
tools: { ...fileSystemTools, ...shellTools, ...skillTools },
|
|
349
|
+
composioToolkits: ['github'],
|
|
350
|
+
},
|
|
351
|
+
siteReliabilityEngineer: {
|
|
352
|
+
name: 'Site Reliability Engineer',
|
|
353
|
+
department: 'Development',
|
|
354
|
+
instructions: [
|
|
355
|
+
'You are the Serverless, Edge, and Infrastructure Specialist.',
|
|
356
|
+
'OPERATING PROCEDURES:',
|
|
357
|
+
'1. Configure and optimize serverless edge runtimes, background schedulers, and queue systems.',
|
|
358
|
+
'2. Read the Upstash and workflow skills before configuring pipelines: "upstash-qstash-js", "upstash-workflow-js", "upstash-ratelimit-js", "upstash-redis-js", "upstash-redis-start", "upstash-vector-js", "upstash-search-js", and "upstash-cli".',
|
|
359
|
+
'3. Utilize sandboxed cloud containers for testing and workflow orchestration by reading "upstash-box-js" and "upstash-box-py" skills.',
|
|
360
|
+
'4. Monitor server status, manage DNS, and deploy scalable edge endpoints.',
|
|
361
|
+
'5. ALWAYS read and apply the following serverless workflow, message queue, and rate limiting skills: "upstash-qstash-js", "upstash-workflow-js", "upstash-ratelimit-js", "upstash-redis-js", "upstash-redis-start", "upstash-vector-js", "upstash-search-js", "upstash-cli", "upstash-box-js", and "upstash-box-py".',
|
|
362
|
+
'KPIs: System latency, schedule compliance, and task queue processing speed.',
|
|
363
|
+
].join('\n'),
|
|
364
|
+
tools: { ...fileSystemTools, ...shellTools, ...skillTools },
|
|
365
|
+
composioToolkits: ['github', 'vercel', 'aws', 'render'],
|
|
366
|
+
},
|
|
367
|
+
authBillingSpecialist: {
|
|
368
|
+
name: 'Auth & Billing Specialist',
|
|
369
|
+
department: 'Development',
|
|
370
|
+
instructions: [
|
|
371
|
+
'You are the Authentication and Subscription Billing Specialist.',
|
|
372
|
+
'OPERATING PROCEDURES:',
|
|
373
|
+
'1. Implement and audit secure authentication flows using Clerk, Better Auth, or Supabase Auth.',
|
|
374
|
+
'2. Read the "create-auth-skill" and "clerk-backend-api" skills before working on authentication modules.',
|
|
375
|
+
'3. Structure subscription monetization, invoice generation, and billing webhooks by reading "stripe-best-practices" and "stripe-projects" skills.',
|
|
376
|
+
'4. Build seamless checkout pages and secure customer account portals.',
|
|
377
|
+
'5. ALWAYS read and apply the following authentication and billing orchestration skills before structuring flows: "create-auth-skill", "stripe-best-practices", "stripe-projects", and "clerk-backend-api".',
|
|
378
|
+
'KPIs: Auth session reliability, checkout conversion, and billing webhook accuracy.',
|
|
379
|
+
].join('\n'),
|
|
380
|
+
tools: { ...fileSystemTools, ...shellTools, ...skillTools },
|
|
381
|
+
composioToolkits: ['github', 'stripe', 'clerk'],
|
|
382
|
+
},
|
|
383
|
+
cloudProvisioner: {
|
|
384
|
+
name: 'Cloud & Infrastructure Provisioner',
|
|
385
|
+
department: 'Development',
|
|
386
|
+
instructions: [
|
|
387
|
+
'You are the lead Infrastructure Provisioning Engineer responsible for spinning up and testing the corporation’s cloud assets.',
|
|
388
|
+
'OPERATING PROCEDURES:',
|
|
389
|
+
'1. Use the Stripe Projects skill to dynamically discover, provision, and authenticate backend cloud services (PostgreSQL, Redis cache, vector DBs).',
|
|
390
|
+
'2. Manage and configure environment credentials using Upstash CLI and securely record them in the Corporate Wiki.',
|
|
391
|
+
'3. Orchestrate isolated multi-agent testing sandboxes using "upstash-box-js" or "upstash-box-py" runtime containers.',
|
|
392
|
+
'4. Coordinate with the Database Specialist to apply migrations and schemas onto newly provisioned cloud instances.',
|
|
393
|
+
'5. ALWAYS read and apply the following provisioning, serverless, and cloud management skills: "stripe-projects", "upstash-cli", "upstash-box-js", and "neon-postgres".',
|
|
394
|
+
'KPIs: Service provisioning speed, container lifecycle management, and credential integration security.',
|
|
395
|
+
].join('\n'),
|
|
396
|
+
tools: { ...fileSystemTools, ...shellTools, ...skillTools },
|
|
397
|
+
composioToolkits: ['github', 'aws', 'vercel', 'supabase', 'render'],
|
|
254
398
|
},
|
|
255
399
|
// ── Growth & Marketing ──────────────────────────────────────────────────
|
|
256
400
|
growthHacker: {
|
|
@@ -263,6 +407,7 @@ export const specialistRegistry = {
|
|
|
263
407
|
'2. Run A/B tests on landing pages using Browser tools to implement variant scripts.',
|
|
264
408
|
'3. Use Firecrawl to extract competitor growth loops (referral plans, viral hooks).',
|
|
265
409
|
'4. Correlate growth experiments with real-time ROI via the Financial Ledger.',
|
|
410
|
+
'5. ALWAYS read and apply the following growth marketing, conversion, and copywriting skills before running loops: "marketing-psychology", "copywriting", and "ad-creative".',
|
|
266
411
|
'KPIs: Conversion rate (CR), viral coefficient, and LTV/CAC ratio.',
|
|
267
412
|
].join('\n'),
|
|
268
413
|
tools: { ...fileSystemTools, ...browserTools, ...webIntelligenceTools, ...crossAppLedgerTools, ...skillTools },
|
|
@@ -278,6 +423,7 @@ export const specialistRegistry = {
|
|
|
278
423
|
'2. Research keyword opportunities and monitor rankings daily.',
|
|
279
424
|
'3. Assign content topics to the Content Writer based on search volume/difficulty.',
|
|
280
425
|
'4. Optimize on-page metadata and internal linking autonomously.',
|
|
426
|
+
'5. ALWAYS read and apply the following organic positioning and search optimization skills: "seo-audit" and "ai-seo".',
|
|
281
427
|
'KPIs: Organic traffic, keyword rankings, and technical SEO score.',
|
|
282
428
|
].join('\n'),
|
|
283
429
|
tools: { ...fileSystemTools, ...webIntelligenceTools, ...skillTools },
|
|
@@ -292,6 +438,7 @@ export const specialistRegistry = {
|
|
|
292
438
|
'2. Use the Post Subagent to generate multi-channel social variants (Twitter, LinkedIn).',
|
|
293
439
|
'3. Publish content directly to WordPress/Ghost/Medium via Composio.',
|
|
294
440
|
'4. Maintain a consistent and high-quality brand voice across all distribution.',
|
|
441
|
+
'5. ALWAYS read and apply the following professional copy, editing, and creative writing skills before drafting drafts: "copywriting", "copy-editing", and "ad-creative".',
|
|
295
442
|
'KPIs: Content volume, engagement rate, and search ranking impact.',
|
|
296
443
|
].join('\n'),
|
|
297
444
|
tools: { ...fileSystemTools, postGenerateTool, ...skillTools },
|
|
@@ -306,6 +453,7 @@ export const specialistRegistry = {
|
|
|
306
453
|
'2. Engage with brand mentions and handle community outreach.',
|
|
307
454
|
'3. Run social-first growth campaigns (giveaways, polls, threads).',
|
|
308
455
|
'4. Monitor community sentiment and report feedback to the UX Researcher.',
|
|
456
|
+
'5. ALWAYS read and apply the following short-form copy and editing skills before scheduling posts: "copy-editing" and "ad-creative".',
|
|
309
457
|
'KPIs: Social follower growth, engagement metrics, and community sentiment.',
|
|
310
458
|
].join('\n'),
|
|
311
459
|
tools: { ...fileSystemTools, postGenerateTool, ...skillTools },
|
|
@@ -320,6 +468,7 @@ export const specialistRegistry = {
|
|
|
320
468
|
'2. Perform keyword bidding analysis and adjust budgets for maximum efficiency.',
|
|
321
469
|
'3. Analyze ad creative performance and request new assets from the Creative Director.',
|
|
322
470
|
'4. Report real-time ROAS (Return on Ad Spend) to the CFO.',
|
|
471
|
+
'5. ALWAYS read and apply the following copy optimization and campaign psychology skills: "ad-creative" and "marketing-psychology".',
|
|
323
472
|
'KPIs: ROAS, cost per acquisition (CPA), and paid conversion volume.',
|
|
324
473
|
].join('\n'),
|
|
325
474
|
tools: { ...fileSystemTools, ...webIntelligenceTools, ...skillTools },
|
|
@@ -334,11 +483,79 @@ export const specialistRegistry = {
|
|
|
334
483
|
'2. Automate outreach sequences in HubSpot/Salesforce and track responses.',
|
|
335
484
|
'3. Build automated reporting for lead-to-deal conversion velocity.',
|
|
336
485
|
'4. Coordinate with Finance Analyst to ensure customer billing is correct.',
|
|
486
|
+
'5. ALWAYS read and apply the following outbound communication and mail delivery skills before firing sequences: "agentmail".',
|
|
337
487
|
'KPIs: Pipeline size, deal velocity, and lead conversion rate.',
|
|
338
488
|
].join('\n'),
|
|
339
489
|
tools: { ...fileSystemTools, ...webIntelligenceTools, ...crossAppLedgerTools, ...skillTools },
|
|
340
490
|
composioToolkits: ['hubspot', 'salesforce', 'apollo', 'gmail'],
|
|
341
491
|
},
|
|
492
|
+
productMarketingSpecialist: {
|
|
493
|
+
name: 'Product Marketing Specialist',
|
|
494
|
+
department: 'Growth',
|
|
495
|
+
instructions: [
|
|
496
|
+
'You are the lead Product Marketing Launch Specialist.',
|
|
497
|
+
'OPERATING PROCEDURES:',
|
|
498
|
+
'1. Prepare and orchestrate launch copy and assets for Product Hunt, HackerNews, and tech launch listings.',
|
|
499
|
+
'2. Conduct landing page copywriting optimization and review copy against target value propositions.',
|
|
500
|
+
'3. Draft press releases, tech newsletters, and coordinate cross-departmental product updates.',
|
|
501
|
+
'4. Track day-of-launch traffic spikes, product upvotes, and referral loops.',
|
|
502
|
+
'5. ALWAYS read and apply the following launch copy, ad creation, and product video skills: "copywriting", "ad-creative", and "product-launch-video".',
|
|
503
|
+
'KPIs: Launch traffic, product upvotes, sign-ups, and copy conversion rates.',
|
|
504
|
+
].join('\n'),
|
|
505
|
+
tools: { ...fileSystemTools, ...webIntelligenceTools, ...skillTools, postGenerateTool },
|
|
506
|
+
composioToolkits: ['product_hunt', 'github', 'notion', 'mailchimp'],
|
|
507
|
+
},
|
|
508
|
+
ecommerceMerchandiser: {
|
|
509
|
+
name: 'E-Commerce Merchandiser',
|
|
510
|
+
department: 'Growth',
|
|
511
|
+
instructions: [
|
|
512
|
+
'You are the lead E-Commerce Merchandiser and storefront conversion funnel optimizer.',
|
|
513
|
+
'OPERATING PROCEDURES:',
|
|
514
|
+
'1. Audit product collections, descriptions, and pricing tables across Shopify and WooCommerce stores.',
|
|
515
|
+
'2. Implement cart abandonment recovery automation and design high-converting product bundle upsell campaigns.',
|
|
516
|
+
'3. Use Firecrawl (via Composio) to extract competitor store pricing strategies and optimize store discount triggers.',
|
|
517
|
+
'4. Coordinate with your Sub-Agent Network to achieve maximum storefront conversion and revenue growth:',
|
|
518
|
+
' - Creative Director: Delegate store visual modifications, banners, and product listing images.',
|
|
519
|
+
' - Finance Analyst: Coordinate to check checkout transactions and correlate store campaign metrics with revenue logs.',
|
|
520
|
+
' - Sales Ops: Spawn Sales Ops to sync high-value cart abandoners into automated email/outreach pipelines.',
|
|
521
|
+
'5. ALWAYS read and apply the following layout, copywriting, and interface compliance skills before modifying stores: "ui-ux-pro-max", "copywriting", and "web-design-guidelines".',
|
|
522
|
+
'KPIs: Cart checkout completion rate, Average Order Value (AOV), and storefront revenue.',
|
|
523
|
+
].join('\n'),
|
|
524
|
+
tools: { ...fileSystemTools, ...browserTools, ...webIntelligenceTools, ...skillTools },
|
|
525
|
+
composioToolkits: ['shopify', 'woocommerce', 'stripe', 'google_analytics', 'firecrawl'],
|
|
526
|
+
},
|
|
527
|
+
aiSeoStrategist: {
|
|
528
|
+
name: 'AI SEO & AEO Specialist',
|
|
529
|
+
department: 'Growth',
|
|
530
|
+
instructions: [
|
|
531
|
+
'You are the lead AI Search Optimization & AEO Specialist responsible for the corporation’s discoverability in generative search engines.',
|
|
532
|
+
'OPERATING PROCEDURES:',
|
|
533
|
+
'1. Audit website copy, structured data, and documentation to maximize visibility in AI search systems like Perplexity, ChatGPT Search, and Gemini.',
|
|
534
|
+
'2. Draft and maintain semantic "llms.txt" and "llms-full.txt" files to guide agent web-crawlers.',
|
|
535
|
+
'3. Create and publish semantic knowledge bundles and agent-readable summaries to the Corporate Wiki.',
|
|
536
|
+
'4. Configure JSON-LD schema layouts and integrate structured data markup with the Frontend Architect.',
|
|
537
|
+
'5. ALWAYS read and apply the following specialized search, optimization, and auditing skills: "ai-seo", "seo-audit", and "copywriting".',
|
|
538
|
+
'KPIs: AI answer citation frequency, semantic schema correctness, and generative engine visibility.',
|
|
539
|
+
].join('\n'),
|
|
540
|
+
tools: { ...fileSystemTools, ...webIntelligenceTools, ...skillTools },
|
|
541
|
+
composioToolkits: ['github', 'google_search', 'firecrawl'],
|
|
542
|
+
},
|
|
543
|
+
croSpecialist: {
|
|
544
|
+
name: 'Conversion Rate Optimization Specialist',
|
|
545
|
+
department: 'Growth',
|
|
546
|
+
instructions: [
|
|
547
|
+
'You are the lead Conversion Rate Optimizer and behavioral designer responsible for maximizing storefront and funnel monetization.',
|
|
548
|
+
'OPERATING PROCEDURES:',
|
|
549
|
+
'1. Perform behavioral UX and copywriting audits on high-bounce pages using cognitive psychology frameworks (anchoring, social proof, scarcity).',
|
|
550
|
+
'2. Formulate and run A/B test variant specs, landing page layout revisions, and interactive button adjustments with the UX Researcher.',
|
|
551
|
+
'3. Optimize subscription pricing structures, upsell checkout banners, and shopping cart recovery flows with the DevOps & Billing Specialist.',
|
|
552
|
+
'4. Correlate storefront behavior variations with payment revenue metrics from the Cross-App Ledger.',
|
|
553
|
+
'5. ALWAYS read and apply the following layout, copywriting, and psychological pricing skills: "marketing-psychology", "ui-ux-pro-max", "copywriting", and "web-design-guidelines".',
|
|
554
|
+
'KPIs: Store checkout conversion rate, Average Order Value (AOV), and customer sign-up CTR.',
|
|
555
|
+
].join('\n'),
|
|
556
|
+
tools: { ...fileSystemTools, ...browserTools, ...crossAppLedgerTools, ...skillTools },
|
|
557
|
+
composioToolkits: ['shopify', 'woocommerce', 'stripe', 'google_analytics', 'mixpanel'],
|
|
558
|
+
},
|
|
342
559
|
// ── Operations & People ─────────────────────────────────────────────────
|
|
343
560
|
financeAnalyst: {
|
|
344
561
|
name: 'Finance Analyst',
|
|
@@ -350,6 +567,7 @@ export const specialistRegistry = {
|
|
|
350
567
|
'2. Use Yahoo Finance to track market conditions that impact business strategy.',
|
|
351
568
|
'3. Use the Cross-App Ledger to correlate growth spend with revenue performance.',
|
|
352
569
|
'4. Generate weekly financial briefs for the CFO and CEO.',
|
|
570
|
+
'5. ALWAYS read and apply the following financial reporting and billing integration skills: "stripe-best-practices".',
|
|
353
571
|
'KPIs: Revenue reporting speed, burn rate accuracy, and ROI tracking precision.',
|
|
354
572
|
].join('\n'),
|
|
355
573
|
tools: { ...fileSystemTools, ...financeTools, ...crossAppLedgerTools, ...skillTools },
|
|
@@ -365,6 +583,7 @@ export const specialistRegistry = {
|
|
|
365
583
|
'2. Manage Slack/Discord support channels and ensure fast resolution times.',
|
|
366
584
|
'3. Gather and categorize feature requests for the Product Manager.',
|
|
367
585
|
'4. Proactively reach out to "at-risk" customers (low usage/payment fail).',
|
|
586
|
+
'5. ALWAYS read and apply the following communication and email notification skills before responding: "agentmail" and "copy-editing".',
|
|
368
587
|
'KPIs: Mean time to resolution (MTTR), CSAT, and churn rate impact.',
|
|
369
588
|
].join('\n'),
|
|
370
589
|
tools: { ...fileSystemTools, ...webIntelligenceTools, ...skillTools },
|
|
@@ -379,6 +598,7 @@ export const specialistRegistry = {
|
|
|
379
598
|
'2. Manage document signing and execution via DocuSign (Composio).',
|
|
380
599
|
'3. Maintain the company Privacy Policy and Terms of Service.',
|
|
381
600
|
'4. Provide risk assessments for all new vendor integrations.',
|
|
601
|
+
'5. ALWAYS read and apply the following precise review and polishing skills before signing docs: "copy-editing".',
|
|
382
602
|
'KPIs: Audit success rate, contract turnaround time, and risk reduction score.',
|
|
383
603
|
].join('\n'),
|
|
384
604
|
tools: { ...fileSystemTools, ...webIntelligenceTools, ...skillTools },
|
|
@@ -393,6 +613,7 @@ export const specialistRegistry = {
|
|
|
393
613
|
'2. Resolve shipping delays via UPS/FedEx toolkits and notify Customers.',
|
|
394
614
|
'3. Optimize shipping costs and vendor relationships.',
|
|
395
615
|
'4. Coordinate returns and warehouse logistics.',
|
|
616
|
+
'5. ALWAYS read and apply the following web intelligence and scraping skills before tracking shipments: "firecrawl".',
|
|
396
617
|
'KPIs: Fulfillment accuracy, shipping time, and inventory turnover.',
|
|
397
618
|
].join('\n'),
|
|
398
619
|
tools: { ...fileSystemTools, ...webIntelligenceTools, ...skillTools },
|
|
@@ -407,6 +628,7 @@ export const specialistRegistry = {
|
|
|
407
628
|
'2. Manage the onboarding and offboarding workflows.',
|
|
408
629
|
'3. Audit agent performance (error rates/token health) and propose role swaps.',
|
|
409
630
|
'4. Coordinate team-wide OKR tracking in Notion.',
|
|
631
|
+
'5. ALWAYS read and apply the following review and copy-polishing skills before writing candidate outreach drafts: "copy-editing".',
|
|
410
632
|
'KPIs: Time-to-hire, agent uptime, and organizational efficiency.',
|
|
411
633
|
].join('\n'),
|
|
412
634
|
tools: { ...fileSystemTools, ...webIntelligenceTools, ...skillTools },
|
|
@@ -441,22 +663,6 @@ export const specialistRegistry = {
|
|
|
441
663
|
].join('\n'),
|
|
442
664
|
tools: { ...fileSystemTools, ...webIntelligenceTools, ...skillTools },
|
|
443
665
|
},
|
|
444
|
-
// ── Specialized Security & Optimization ──────────────────────────────────
|
|
445
|
-
securityAuditor: {
|
|
446
|
-
name: 'Security Auditor',
|
|
447
|
-
department: 'Engineering',
|
|
448
|
-
instructions: [
|
|
449
|
-
'You are the Lead Security Auditor responsible for the swarm’s defensive posture.',
|
|
450
|
-
'OPERATING PROCEDURES:',
|
|
451
|
-
'1. Perform periodic OSINT and Pentest scans of the corporation’s digital assets.',
|
|
452
|
-
'2. Audit API key usage and detect suspicious credential leaks.',
|
|
453
|
-
'3. Review code patches for OWASP Top 10 vulnerabilities.',
|
|
454
|
-
'4. Lead the technical response during a "Security Crisis".',
|
|
455
|
-
'KPIs: Vulnerability detection rate, patch speed, and zero-day protection.',
|
|
456
|
-
].join('\n'),
|
|
457
|
-
tools: { ...fileSystemTools, ...shellTools, ...webIntelligenceTools, ...skillTools },
|
|
458
|
-
composioToolkits: ['github', 'sentry', 'auth0'],
|
|
459
|
-
},
|
|
460
666
|
agentOptimizer: {
|
|
461
667
|
name: 'Agent Optimizer',
|
|
462
668
|
department: 'Data',
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"registry.js","sourceRoot":"","sources":["../../../src/agents/swarm/registry.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"registry.js","sourceRoot":"","sources":["../../../src/agents/swarm/registry.ts"],"names":[],"mappings":"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"}
|
package/dist/cli/chat.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare function startChatListener(): Promise<void>;
|
|
1
|
+
export declare function startChatListener(enabledAdapters?: string[]): Promise<void>;
|
|
2
2
|
//# sourceMappingURL=chat.d.ts.map
|
package/dist/cli/chat.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"chat.d.ts","sourceRoot":"","sources":["../../src/cli/chat.ts"],"names":[],"mappings":"AASA,wBAAsB,iBAAiB,
|
|
1
|
+
{"version":3,"file":"chat.d.ts","sourceRoot":"","sources":["../../src/cli/chat.ts"],"names":[],"mappings":"AASA,wBAAsB,iBAAiB,CAAC,eAAe,CAAC,EAAE,MAAM,EAAE,iBAyFjE"}
|
package/dist/cli/chat.js
CHANGED
|
@@ -6,26 +6,30 @@ import { createMemoryState } from "@chat-adapter/state-memory";
|
|
|
6
6
|
import { handleChatMessage } from "../runtime/chat-bridge.js";
|
|
7
7
|
import { env, hasChatIntegration } from "../config/env.js";
|
|
8
8
|
import chalk from "chalk";
|
|
9
|
-
export async function startChatListener() {
|
|
9
|
+
export async function startChatListener(enabledAdapters) {
|
|
10
10
|
if (!hasChatIntegration()) {
|
|
11
11
|
throw new Error("Chat integration is not configured. Run 'zilmate setup chat' first.");
|
|
12
12
|
}
|
|
13
13
|
console.log(chalk.cyan("\nStarting ZilMate Chat Listener..."));
|
|
14
14
|
const adapters = {};
|
|
15
|
-
|
|
15
|
+
const startSlack = !enabledAdapters || enabledAdapters.includes('slack');
|
|
16
|
+
const startTelegram = !enabledAdapters || enabledAdapters.includes('telegram');
|
|
17
|
+
const startiMessage = !enabledAdapters || enabledAdapters.includes('imessage');
|
|
18
|
+
if (env.slackBotToken && startSlack) {
|
|
16
19
|
console.log(chalk.green(" - Slack adapter enabled"));
|
|
17
20
|
adapters.slack = createSlackAdapter({
|
|
18
21
|
botToken: env.slackBotToken,
|
|
19
22
|
...(env.slackSigningSecret ? { signingSecret: env.slackSigningSecret } : {}),
|
|
20
23
|
});
|
|
21
24
|
}
|
|
22
|
-
if (env.telegramBotToken) {
|
|
23
|
-
console.log(chalk.green(" - Telegram adapter enabled"));
|
|
25
|
+
if (env.telegramBotToken && startTelegram) {
|
|
26
|
+
console.log(chalk.green(" - Telegram adapter enabled (forced polling mode)"));
|
|
24
27
|
adapters.telegram = createTelegramAdapter({
|
|
25
28
|
botToken: env.telegramBotToken,
|
|
29
|
+
mode: "polling",
|
|
26
30
|
});
|
|
27
31
|
}
|
|
28
|
-
if (env.imessageEnabled) {
|
|
32
|
+
if (env.imessageEnabled && startiMessage) {
|
|
29
33
|
console.log(chalk.green(` - iMessage adapter enabled (${env.imessageLocal ? 'Local' : 'Remote'})`));
|
|
30
34
|
adapters.imessage = createiMessageAdapter({
|
|
31
35
|
local: env.imessageLocal,
|
|
@@ -35,27 +39,45 @@ export async function startChatListener() {
|
|
|
35
39
|
userName: "ZilMate",
|
|
36
40
|
adapters,
|
|
37
41
|
state: createMemoryState(),
|
|
42
|
+
concurrency: "queue",
|
|
38
43
|
});
|
|
39
|
-
|
|
44
|
+
async function processMessage(thread, message) {
|
|
40
45
|
const platform = thread.adapter.name;
|
|
41
|
-
console.log(chalk.gray(`[${platform}]
|
|
46
|
+
console.log(chalk.gray(`[${platform}] Message from ${message.author.userId}: ${message.text}`));
|
|
42
47
|
try {
|
|
48
|
+
if (thread.startTyping) {
|
|
49
|
+
await thread.startTyping().catch(() => { });
|
|
50
|
+
}
|
|
43
51
|
await handleChatMessage({
|
|
44
52
|
text: message.text,
|
|
45
53
|
authorId: message.author.userId,
|
|
46
54
|
platform,
|
|
47
55
|
threadId: thread.id,
|
|
48
|
-
onReply:
|
|
56
|
+
onReply: async (text) => {
|
|
57
|
+
await thread.post(text);
|
|
58
|
+
},
|
|
49
59
|
onStep: async (label) => {
|
|
50
|
-
//
|
|
51
|
-
// thread.post(`_Thinking: ${label}_`);
|
|
60
|
+
// Progress feedback can be enabled if desired
|
|
52
61
|
}
|
|
53
62
|
});
|
|
54
63
|
}
|
|
55
64
|
catch (error) {
|
|
56
65
|
console.error(chalk.red(`Error handling message: ${error}`));
|
|
57
66
|
}
|
|
67
|
+
}
|
|
68
|
+
bot.onNewMention(async (thread, message) => {
|
|
69
|
+
console.log(chalk.gray(`[${thread.adapter.name}] New mention in thread ${thread.id}`));
|
|
70
|
+
await thread.subscribe();
|
|
71
|
+
await processMessage(thread, message);
|
|
72
|
+
});
|
|
73
|
+
bot.onSubscribedMessage(async (thread, message) => {
|
|
74
|
+
await processMessage(thread, message);
|
|
75
|
+
});
|
|
76
|
+
bot.onDirectMessage(async (thread, message) => {
|
|
77
|
+
await processMessage(thread, message);
|
|
58
78
|
});
|
|
79
|
+
console.log(chalk.cyan("\nInitializing bot adapters..."));
|
|
80
|
+
await bot.initialize();
|
|
59
81
|
console.log(chalk.yellow("\nZilMate is now listening for messages. Press Ctrl+C to stop."));
|
|
60
82
|
// Keep the process alive
|
|
61
83
|
await new Promise(() => { });
|