@jaimevalasek/aioson 1.4.0 → 1.6.0
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/CHANGELOG.md +31 -1
- package/LICENSE +661 -21
- package/README.md +9 -1
- package/docs/design-previews/aurora-command-ui-website.html +884 -0
- package/docs/design-previews/aurora-command-ui.html +682 -0
- package/docs/design-previews/bold-editorial-ui-website.html +658 -0
- package/docs/design-previews/bold-editorial-ui.html +717 -0
- package/docs/design-previews/clean-saas-ui-website.html +1202 -0
- package/docs/design-previews/clean-saas-ui.html +549 -0
- package/docs/design-previews/cognitive-core-ui-website.html +1009 -0
- package/docs/design-previews/cognitive-core-ui.html +463 -0
- package/docs/design-previews/glassmorphism-ui-website.html +572 -0
- package/docs/design-previews/glassmorphism-ui.html +886 -0
- package/docs/design-previews/index.html +699 -0
- package/docs/design-previews/interface-design-website.html +1187 -0
- package/docs/design-previews/interface-design.html +513 -0
- package/docs/design-previews/neo-brutalist-ui-website.html +621 -0
- package/docs/design-previews/neo-brutalist-ui.html +797 -0
- package/docs/design-previews/premium-command-center-ui-website.html +1217 -0
- package/docs/design-previews/premium-command-center-ui.html +552 -0
- package/docs/design-previews/warm-craft-ui-website.html +684 -0
- package/docs/design-previews/warm-craft-ui.html +739 -0
- package/docs/en/cli-reference.md +20 -9
- package/docs/en/squad-dashboard.md +372 -0
- package/docs/openclaw-bridge.md +308 -0
- package/docs/pt/README.md +7 -0
- package/docs/pt/agent-sharding.md +132 -0
- package/docs/pt/agentes.md +131 -11
- package/docs/pt/busca-de-contexto.md +129 -0
- package/docs/pt/cache-de-contexto.md +156 -0
- package/docs/pt/cenarios.md +46 -2
- package/docs/pt/comandos-cli.md +88 -1
- package/docs/pt/design-hybrid-forge.md +107 -0
- package/docs/pt/inicio-rapido.md +72 -5
- package/docs/pt/inteligencia-adaptativa.md +324 -0
- package/docs/pt/monitor-de-contexto.md +104 -0
- package/docs/pt/recuperacao-de-sessao.md +125 -0
- package/docs/pt/sandbox.md +125 -0
- package/docs/pt/skills.md +98 -6
- package/docs/pt/squad-dashboard.md +373 -0
- package/docs/testing/genome-2.0-matrix.md +5 -5
- package/docs/testing/genome-2.0-rollout.md +9 -9
- package/package.json +2 -2
- package/src/agent-loader.js +280 -0
- package/src/backup-local.js +74 -0
- package/src/cli.js +192 -0
- package/src/commands/agent-loader.js +85 -0
- package/src/commands/backup-local-cmd.js +25 -0
- package/src/commands/context-cache.js +90 -0
- package/src/commands/context-monitor.js +92 -0
- package/src/commands/context-search.js +66 -0
- package/src/commands/design-hybrid-options.js +385 -0
- package/src/commands/health.js +214 -0
- package/src/commands/init.js +54 -13
- package/src/commands/install.js +52 -13
- package/src/commands/learning-evolve.js +355 -0
- package/src/commands/live.js +34 -0
- package/src/commands/recovery.js +43 -0
- package/src/commands/runtime.js +242 -0
- package/src/commands/sandbox.js +37 -0
- package/src/commands/setup-context.js +29 -4
- package/src/commands/setup.js +178 -0
- package/src/commands/skill.js +79 -32
- package/src/commands/squad-daemon.js +209 -0
- package/src/commands/squad-dashboard.js +39 -0
- package/src/commands/squad-deploy.js +64 -0
- package/src/commands/squad-doctor.js +52 -0
- package/src/commands/squad-mcp.js +270 -0
- package/src/commands/squad-processes.js +56 -0
- package/src/commands/squad-recovery.js +42 -0
- package/src/commands/squad-roi.js +291 -0
- package/src/commands/squad-score.js +250 -0
- package/src/commands/squad-status.js +37 -1
- package/src/commands/squad-validate.js +62 -1
- package/src/commands/squad-webhook.js +160 -0
- package/src/commands/squad-worker.js +191 -0
- package/src/commands/squad-worktrees.js +75 -0
- package/src/commands/tool-registry-cmd.js +232 -0
- package/src/commands/update.js +7 -0
- package/src/commands/web-map.js +70 -0
- package/src/commands/web-scrape.js +71 -0
- package/src/constants.js +17 -0
- package/src/context-cache.js +159 -0
- package/src/context-search.js +326 -0
- package/src/context-writer.js +45 -1
- package/src/design-variation-catalog.js +503 -0
- package/src/i18n/messages/en.js +159 -3
- package/src/i18n/messages/es.js +147 -2
- package/src/i18n/messages/fr.js +147 -2
- package/src/i18n/messages/pt-BR.js +158 -3
- package/src/install-animation.js +260 -0
- package/src/install-profile.js +143 -0
- package/src/install-wizard.js +474 -0
- package/src/installer.js +38 -10
- package/src/lib/webhook-server.js +328 -0
- package/src/mcp-connectors/registry.js +602 -0
- package/src/parser.js +7 -1
- package/src/recovery-context-session.js +154 -0
- package/src/runtime-store.js +355 -2
- package/src/sandbox.js +177 -0
- package/src/squad/external-session.js +180 -0
- package/src/squad/inter-squad.js +74 -0
- package/src/squad/recovery-context.js +201 -0
- package/src/squad/worktree-manager.js +114 -0
- package/src/squad-daemon.js +490 -0
- package/src/squad-dashboard/api.js +223 -0
- package/src/squad-dashboard/attachment-handler.js +93 -0
- package/src/squad-dashboard/context-monitor.js +157 -0
- package/src/squad-dashboard/execution-logs.js +115 -0
- package/src/squad-dashboard/hunk-review.js +209 -0
- package/src/squad-dashboard/metrics.js +133 -0
- package/src/squad-dashboard/process-monitor.js +125 -0
- package/src/squad-dashboard/renderer.js +858 -0
- package/src/squad-dashboard/server.js +232 -0
- package/src/squad-dashboard/styles.js +525 -0
- package/src/squad-dashboard/token-tracker.js +99 -0
- package/src/tool-executor.js +94 -0
- package/src/updater.js +11 -3
- package/src/web.js +284 -0
- package/src/worker-runner.js +339 -0
- package/template/.aioson/agents/analyst.md +62 -3
- package/template/.aioson/agents/architect.md +42 -0
- package/template/.aioson/agents/design-hybrid-forge.md +127 -0
- package/template/.aioson/agents/dev.md +223 -11
- package/template/.aioson/agents/deyvin.md +65 -0
- package/template/.aioson/agents/neo.md +152 -0
- package/template/.aioson/agents/orache.md +17 -0
- package/template/.aioson/agents/orchestrator.md +26 -0
- package/template/.aioson/agents/pm.md +58 -0
- package/template/.aioson/agents/product.md +88 -12
- package/template/.aioson/agents/qa.md +80 -0
- package/template/.aioson/agents/setup.md +128 -22
- package/template/.aioson/agents/sheldon.md +704 -0
- package/template/.aioson/agents/squad.md +191 -0
- package/template/.aioson/agents/tester.md +410 -0
- package/template/.aioson/agents/ux-ui.md +12 -0
- package/template/.aioson/config.md +21 -0
- package/template/.aioson/context/forensics/.gitkeep +0 -0
- package/template/.aioson/context/seeds/seed-example.md +27 -0
- package/template/.aioson/context/user-profile.md +42 -0
- package/template/.aioson/locales/en/agents/analyst.md +8 -0
- package/template/.aioson/locales/en/agents/architect.md +8 -0
- package/template/.aioson/locales/en/agents/dev.md +66 -7
- package/template/.aioson/locales/en/agents/deyvin.md +8 -0
- package/template/.aioson/locales/en/agents/neo.md +8 -0
- package/template/.aioson/locales/en/agents/orchestrator.md +26 -0
- package/template/.aioson/locales/en/agents/qa.md +49 -0
- package/template/.aioson/locales/en/agents/setup.md +35 -2
- package/template/.aioson/locales/en/agents/sheldon.md +340 -0
- package/template/.aioson/locales/en/agents/ux-ui.md +8 -0
- package/template/.aioson/locales/es/agents/analyst.md +8 -0
- package/template/.aioson/locales/es/agents/architect.md +8 -0
- package/template/.aioson/locales/es/agents/dev.md +66 -7
- package/template/.aioson/locales/es/agents/deyvin.md +8 -0
- package/template/.aioson/locales/es/agents/neo.md +48 -0
- package/template/.aioson/locales/es/agents/orchestrator.md +26 -0
- package/template/.aioson/locales/es/agents/qa.md +26 -0
- package/template/.aioson/locales/es/agents/setup.md +35 -2
- package/template/.aioson/locales/es/agents/sheldon.md +192 -0
- package/template/.aioson/locales/es/agents/squad.md +63 -0
- package/template/.aioson/locales/es/agents/ux-ui.md +8 -0
- package/template/.aioson/locales/fr/agents/analyst.md +8 -0
- package/template/.aioson/locales/fr/agents/architect.md +8 -0
- package/template/.aioson/locales/fr/agents/dev.md +66 -7
- package/template/.aioson/locales/fr/agents/deyvin.md +8 -0
- package/template/.aioson/locales/fr/agents/neo.md +48 -0
- package/template/.aioson/locales/fr/agents/orchestrator.md +26 -0
- package/template/.aioson/locales/fr/agents/qa.md +26 -0
- package/template/.aioson/locales/fr/agents/setup.md +35 -2
- package/template/.aioson/locales/fr/agents/sheldon.md +192 -0
- package/template/.aioson/locales/fr/agents/squad.md +63 -0
- package/template/.aioson/locales/fr/agents/ux-ui.md +8 -0
- package/template/.aioson/locales/pt-BR/agents/analyst.md +19 -0
- package/template/.aioson/locales/pt-BR/agents/architect.md +19 -0
- package/template/.aioson/locales/pt-BR/agents/dev.md +75 -12
- package/template/.aioson/locales/pt-BR/agents/deyvin.md +8 -0
- package/template/.aioson/locales/pt-BR/agents/neo.md +147 -0
- package/template/.aioson/locales/pt-BR/agents/orchestrator.md +26 -0
- package/template/.aioson/locales/pt-BR/agents/product.md +8 -3
- package/template/.aioson/locales/pt-BR/agents/qa.md +60 -0
- package/template/.aioson/locales/pt-BR/agents/setup.md +35 -2
- package/template/.aioson/locales/pt-BR/agents/sheldon.md +192 -0
- package/template/.aioson/locales/pt-BR/agents/squad.md +105 -0
- package/template/.aioson/locales/pt-BR/agents/ux-ui.md +8 -0
- package/template/.aioson/schemas/squad-blueprint.schema.json +21 -0
- package/template/.aioson/schemas/squad-manifest.schema.json +178 -1
- package/template/.aioson/skills/design/aurora-command-ui/SKILL.md +243 -0
- package/template/.aioson/skills/design/aurora-command-ui/references/art-direction.md +293 -0
- package/template/.aioson/skills/design/aurora-command-ui/references/components.md +827 -0
- package/template/.aioson/skills/design/aurora-command-ui/references/dashboards.md +250 -0
- package/template/.aioson/skills/design/aurora-command-ui/references/design-tokens.md +585 -0
- package/template/.aioson/skills/design/aurora-command-ui/references/motion.md +365 -0
- package/template/.aioson/skills/design/aurora-command-ui/references/patterns.md +482 -0
- package/template/.aioson/skills/design/aurora-command-ui/references/websites.md +387 -0
- package/template/.aioson/skills/design/bold-editorial-ui/SKILL.md +205 -0
- package/template/.aioson/skills/design/bold-editorial-ui/references/art-direction.md +338 -0
- package/template/.aioson/skills/design/bold-editorial-ui/references/components.md +977 -0
- package/template/.aioson/skills/design/bold-editorial-ui/references/dashboards.md +218 -0
- package/template/.aioson/skills/design/bold-editorial-ui/references/design-tokens.md +326 -0
- package/template/.aioson/skills/design/bold-editorial-ui/references/motion.md +461 -0
- package/template/.aioson/skills/design/bold-editorial-ui/references/patterns.md +293 -0
- package/template/.aioson/skills/design/bold-editorial-ui/references/websites.md +352 -0
- package/template/.aioson/skills/design/clean-saas-ui/SKILL.md +210 -0
- package/template/.aioson/skills/design/clean-saas-ui/references/art-direction.md +319 -0
- package/template/.aioson/skills/design/clean-saas-ui/references/components.md +365 -0
- package/template/.aioson/skills/design/clean-saas-ui/references/dashboards.md +196 -0
- package/template/.aioson/skills/design/clean-saas-ui/references/design-tokens.md +244 -0
- package/template/.aioson/skills/design/clean-saas-ui/references/motion.md +235 -0
- package/template/.aioson/skills/design/clean-saas-ui/references/patterns.md +215 -0
- package/template/.aioson/skills/design/clean-saas-ui/references/websites.md +295 -0
- package/template/.aioson/skills/design/cognitive-core-ui/SKILL.md +55 -9
- package/template/.aioson/skills/design/cognitive-core-ui/references/art-direction.md +339 -0
- package/template/.aioson/skills/design/cognitive-core-ui/references/components.md +1 -1
- package/template/.aioson/skills/design/cognitive-core-ui/references/dashboards.md +100 -0
- package/template/.aioson/skills/design/cognitive-core-ui/references/design-tokens.md +43 -9
- package/template/.aioson/skills/design/cognitive-core-ui/references/motion.md +40 -0
- package/template/.aioson/skills/design/cognitive-core-ui/references/patterns.md +1 -1
- package/template/.aioson/skills/design/cognitive-core-ui/references/websites.md +99 -12
- package/template/.aioson/skills/design/glassmorphism-ui/SKILL.md +222 -0
- package/template/.aioson/skills/design/glassmorphism-ui/references/art-direction.md +159 -0
- package/template/.aioson/skills/design/glassmorphism-ui/references/components.md +498 -0
- package/template/.aioson/skills/design/glassmorphism-ui/references/dashboards.md +236 -0
- package/template/.aioson/skills/design/glassmorphism-ui/references/design-tokens.md +274 -0
- package/template/.aioson/skills/design/glassmorphism-ui/references/motion.md +355 -0
- package/template/.aioson/skills/design/glassmorphism-ui/references/patterns.md +198 -0
- package/template/.aioson/skills/design/glassmorphism-ui/references/websites.md +307 -0
- package/template/.aioson/skills/design/neo-brutalist-ui/SKILL.md +213 -0
- package/template/.aioson/skills/design/neo-brutalist-ui/references/art-direction.md +228 -0
- package/template/.aioson/skills/design/neo-brutalist-ui/references/components.md +855 -0
- package/template/.aioson/skills/design/neo-brutalist-ui/references/dashboards.md +334 -0
- package/template/.aioson/skills/design/neo-brutalist-ui/references/design-tokens.md +342 -0
- package/template/.aioson/skills/design/neo-brutalist-ui/references/motion.md +286 -0
- package/template/.aioson/skills/design/neo-brutalist-ui/references/patterns.md +458 -0
- package/template/.aioson/skills/design/neo-brutalist-ui/references/websites.md +723 -0
- package/template/.aioson/skills/design/warm-craft-ui/SKILL.md +209 -0
- package/template/.aioson/skills/design/warm-craft-ui/references/art-direction.md +324 -0
- package/template/.aioson/skills/design/warm-craft-ui/references/components.md +508 -0
- package/template/.aioson/skills/design/warm-craft-ui/references/dashboards.md +223 -0
- package/template/.aioson/skills/design/warm-craft-ui/references/design-tokens.md +374 -0
- package/template/.aioson/skills/design/warm-craft-ui/references/motion.md +356 -0
- package/template/.aioson/skills/design/warm-craft-ui/references/patterns.md +288 -0
- package/template/.aioson/skills/design/warm-craft-ui/references/websites.md +289 -0
- package/template/.aioson/skills/premium-visual-design/SKILL.md +83 -0
- package/template/.aioson/skills/premium-visual-design/components/agent-badge.md +92 -0
- package/template/.aioson/skills/premium-visual-design/components/dependency-node.md +102 -0
- package/template/.aioson/skills/premium-visual-design/components/mention-autocomplete.md +136 -0
- package/template/.aioson/skills/premium-visual-design/components/notification-center.md +136 -0
- package/template/.aioson/skills/premium-visual-design/components/review-action-bar.md +188 -0
- package/template/.aioson/skills/premium-visual-design/components/team-switcher.md +131 -0
- package/template/.aioson/skills/premium-visual-design/patterns/agent-message-thread.md +198 -0
- package/template/.aioson/skills/premium-visual-design/patterns/notification-panel.md +275 -0
- package/template/.aioson/skills/premium-visual-design/patterns/review-workflow-ui.md +234 -0
- package/template/.aioson/skills/premium-visual-design/patterns/task-dependency-graph.md +147 -0
- package/template/.aioson/skills/premium-visual-design/tokens/status-extended.md +142 -0
- package/template/.aioson/skills/process/aioson-spec-driven/SKILL.md +45 -0
- package/template/.aioson/skills/process/aioson-spec-driven/references/approval-gates.md +109 -0
- package/template/.aioson/skills/process/aioson-spec-driven/references/artifact-map.md +44 -0
- package/template/.aioson/skills/process/aioson-spec-driven/references/classification-map.md +37 -0
- package/template/.aioson/skills/process/aioson-spec-driven/references/hardening-lane.md +49 -0
- package/template/.aioson/skills/process/aioson-spec-driven/references/maintenance-and-state.md +66 -0
- package/template/.aioson/skills/process/aioson-spec-driven/references/ui-language.md +75 -0
- package/template/.aioson/skills/process/design-hybrid-forge/SKILL.md +144 -0
- package/template/.aioson/skills/process/design-hybrid-forge/references/crossover-protocol.md +221 -0
- package/template/.aioson/skills/process/design-hybrid-forge/references/naming-registry.md +88 -0
- package/template/.aioson/skills/process/design-hybrid-forge/references/output-contract.md +291 -0
- package/template/.aioson/skills/process/design-hybrid-forge/references/pair-compatibility.md +117 -0
- package/template/.aioson/skills/process/design-hybrid-forge/references/quality-gates.md +188 -0
- package/template/.aioson/skills/process/design-hybrid-forge/references/variation-library.md +125 -0
- package/template/.aioson/skills/squad/formats/catalog.json +15 -0
- package/template/.aioson/skills/squad/formats/content/blog-post.md +47 -0
- package/template/.aioson/skills/squad/formats/content/newsletter.md +47 -0
- package/template/.aioson/skills/squad/formats/creative/podcast-script.md +43 -0
- package/template/.aioson/skills/squad/formats/creative/video-script.md +41 -0
- package/template/.aioson/skills/squad/formats/social/instagram-feed.md +42 -0
- package/template/.aioson/skills/squad/formats/social/linkedin-post.md +42 -0
- package/template/.aioson/skills/squad/formats/social/tiktok.md +39 -0
- package/template/.aioson/skills/squad/formats/social/twitter-thread.md +39 -0
- package/template/.aioson/skills/squad/formats/social/youtube-long.md +47 -0
- package/template/.aioson/skills/squad/formats/social/youtube-shorts.md +39 -0
- package/template/.aioson/skills/squad/patterns/multi-platform-pattern.md +108 -0
- package/template/.aioson/skills/squad/patterns/persona-based-pattern.md +98 -0
- package/template/.aioson/skills/squad/patterns/pipeline-pattern.md +106 -0
- package/template/.aioson/skills/squad/patterns/review-loop-pattern.md +81 -0
- package/template/.aioson/skills/squad/references/checklist-templates.md +122 -0
- package/template/.aioson/skills/squad/references/executor-archetypes.md +123 -0
- package/template/.aioson/skills/squad/references/workflow-templates.md +169 -0
- package/template/.aioson/skills/static/debugging-protocol.md +42 -0
- package/template/.aioson/skills/static/git-worktrees.md +36 -0
- package/template/.aioson/tasks/implementation-plan.md +19 -0
- package/template/.aioson/tasks/squad-design.md +28 -0
- package/template/.aioson/tasks/squad-profile.md +48 -0
- package/template/.aioson/tasks/squad-review.md +61 -0
- package/template/.aioson/tasks/squad-task-decompose.md +66 -0
- package/template/.claude/commands/aioson/agent/neo.md +5 -0
- package/template/.claude/commands/aioson/agent/tester.md +5 -0
- package/template/.gemini/GEMINI.md +1 -0
- package/template/.gemini/commands/aios-neo.toml +4 -0
- package/template/.gemini/commands/aios-tester.toml +6 -0
- package/template/AGENTS.md +26 -1
- package/template/CLAUDE.md +6 -2
- package/template/OPENCODE.md +2 -0
|
@@ -0,0 +1,108 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: multi-platform-pattern
|
|
3
|
+
description: How to create squads that produce content for multiple platforms simultaneously
|
|
4
|
+
version: 1.0.0
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
# Multi-Platform Pattern
|
|
8
|
+
|
|
9
|
+
A multi-platform squad produces content adapted for 2+ platforms from a single
|
|
10
|
+
creative brief. The key challenge is platform-specific adaptation without
|
|
11
|
+
losing message coherence.
|
|
12
|
+
|
|
13
|
+
## When to use
|
|
14
|
+
|
|
15
|
+
- Content squads targeting Instagram + YouTube + TikTok (or any combination)
|
|
16
|
+
- Marketing squads with omnichannel campaigns
|
|
17
|
+
- Brand squads maintaining consistent voice across platforms
|
|
18
|
+
|
|
19
|
+
## Structure
|
|
20
|
+
|
|
21
|
+
### Option A: Single creator + platform adapters
|
|
22
|
+
|
|
23
|
+
```
|
|
24
|
+
core-creator → platform-adapter-instagram
|
|
25
|
+
→ platform-adapter-youtube
|
|
26
|
+
→ platform-adapter-tiktok
|
|
27
|
+
```
|
|
28
|
+
|
|
29
|
+
Best when: one strong creative vision needs platform-specific formatting.
|
|
30
|
+
|
|
31
|
+
### Option B: Platform specialists
|
|
32
|
+
|
|
33
|
+
```
|
|
34
|
+
briefer → instagram-specialist
|
|
35
|
+
→ youtube-specialist
|
|
36
|
+
→ tiktok-specialist
|
|
37
|
+
→ brand-reviewer (cross-platform consistency check)
|
|
38
|
+
```
|
|
39
|
+
|
|
40
|
+
Best when: each platform requires deeply different approaches.
|
|
41
|
+
|
|
42
|
+
### Option C: Hybrid (recommended for most cases)
|
|
43
|
+
|
|
44
|
+
```
|
|
45
|
+
strategist → core-creator → platform-specialists (parallel)
|
|
46
|
+
→ cross-platform-reviewer
|
|
47
|
+
```
|
|
48
|
+
|
|
49
|
+
## Executor recommendations
|
|
50
|
+
|
|
51
|
+
| Role | Type | Model tier | Purpose |
|
|
52
|
+
|---|---|---|---|
|
|
53
|
+
| strategist | agent | powerful | Defines the creative brief and core message |
|
|
54
|
+
| core-creator | agent | powerful | Creates the primary content piece |
|
|
55
|
+
| platform-adapter | agent | balanced | Adapts content per platform specs |
|
|
56
|
+
| brand-reviewer | agent | balanced | Ensures cross-platform consistency |
|
|
57
|
+
| format-checker | worker | none | Validates platform constraints (char limits, dimensions) |
|
|
58
|
+
|
|
59
|
+
## Format loading
|
|
60
|
+
|
|
61
|
+
Load format templates from `formats/` only for platforms the squad targets:
|
|
62
|
+
|
|
63
|
+
```
|
|
64
|
+
formats/instagram-feed.md → Instagram squads
|
|
65
|
+
formats/youtube-long.md → YouTube squads
|
|
66
|
+
formats/tiktok.md → TikTok squads
|
|
67
|
+
formats/linkedin-post.md → LinkedIn squads
|
|
68
|
+
formats/twitter-thread.md → Twitter/X squads
|
|
69
|
+
```
|
|
70
|
+
|
|
71
|
+
## Workflow template
|
|
72
|
+
|
|
73
|
+
```json
|
|
74
|
+
{
|
|
75
|
+
"slug": "multi-platform-content",
|
|
76
|
+
"phases": [
|
|
77
|
+
{ "id": "brief", "executor": "strategist" },
|
|
78
|
+
{ "id": "core-draft", "executor": "core-creator" },
|
|
79
|
+
{ "id": "adapt", "executors": ["ig-adapter", "yt-adapter", "tt-adapter"], "parallel": true },
|
|
80
|
+
{ "id": "review", "executor": "brand-reviewer", "review": { "criteria": ["brand-consistency", "platform-fit"] } },
|
|
81
|
+
{ "id": "validate", "executor": "format-checker" }
|
|
82
|
+
]
|
|
83
|
+
}
|
|
84
|
+
```
|
|
85
|
+
|
|
86
|
+
## Anti-patterns
|
|
87
|
+
|
|
88
|
+
- **Copy-paste across platforms:** Each platform has unique audience behavior. Adaptation is mandatory.
|
|
89
|
+
- **Ignoring platform constraints:** Character limits, video durations, image ratios differ per platform.
|
|
90
|
+
- **One-size-fits-all CTA:** "Subscribe" on YouTube, "Follow" on Instagram, "Connect" on LinkedIn.
|
|
91
|
+
- **Missing cross-platform review:** Without consistency checks, brand voice fragments.
|
|
92
|
+
|
|
93
|
+
## Content blueprint suggestion
|
|
94
|
+
|
|
95
|
+
```json
|
|
96
|
+
{
|
|
97
|
+
"slug": "multi-platform-package",
|
|
98
|
+
"contentType": "multi-platform",
|
|
99
|
+
"layoutType": "tabs",
|
|
100
|
+
"sections": [
|
|
101
|
+
{ "key": "brief", "label": "Creative Brief" },
|
|
102
|
+
{ "key": "core-content", "label": "Core Content" },
|
|
103
|
+
{ "key": "instagram", "label": "Instagram Version" },
|
|
104
|
+
{ "key": "youtube", "label": "YouTube Version" },
|
|
105
|
+
{ "key": "tiktok", "label": "TikTok Version" }
|
|
106
|
+
]
|
|
107
|
+
}
|
|
108
|
+
```
|
|
@@ -0,0 +1,98 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: persona-based-pattern
|
|
3
|
+
description: How to create squads driven by a specific person's voice, methodology, or brand
|
|
4
|
+
version: 1.0.0
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
# Persona-Based Pattern
|
|
8
|
+
|
|
9
|
+
A persona-based squad produces content or work that reflects a specific person's
|
|
10
|
+
voice, methodology, or cognitive style. This pattern uses the profiler pipeline
|
|
11
|
+
to create a cognitive genome that informs creative executors.
|
|
12
|
+
|
|
13
|
+
## When to use
|
|
14
|
+
|
|
15
|
+
- Personal branding squads (content in someone's voice)
|
|
16
|
+
- Methodology-based squads (applying a specific expert's framework)
|
|
17
|
+
- Ghost-writing or content delegation squads
|
|
18
|
+
- Squads where "sounding like the person" is a core requirement
|
|
19
|
+
|
|
20
|
+
## Detection heuristics
|
|
21
|
+
|
|
22
|
+
The squad agent should suggest profiling when:
|
|
23
|
+
|
|
24
|
+
- The user mentions a specific person by name
|
|
25
|
+
- The goal includes "in the style of", "like {person}", "based on {person}'s approach"
|
|
26
|
+
- The domain is personal branding or creator content
|
|
27
|
+
- The user references a specific methodology tied to a person
|
|
28
|
+
|
|
29
|
+
## Profiler pipeline
|
|
30
|
+
|
|
31
|
+
```
|
|
32
|
+
@profiler-researcher → @profiler-enricher → @profiler-forge
|
|
33
|
+
↓ ↓ ↓
|
|
34
|
+
evidence gathering pattern analysis genome generation
|
|
35
|
+
```
|
|
36
|
+
|
|
37
|
+
### Step 1: Check existing profile
|
|
38
|
+
|
|
39
|
+
Before running the pipeline, check `.aioson/profiler-reports/{person-slug}/`.
|
|
40
|
+
If a profile exists, reuse it.
|
|
41
|
+
|
|
42
|
+
### Step 2: Run profiling (if needed)
|
|
43
|
+
|
|
44
|
+
1. `@profiler-researcher` — collects public evidence about the person
|
|
45
|
+
2. `@profiler-enricher` — analyzes patterns, voice, methodology
|
|
46
|
+
3. `@profiler-forge` — generates the cognitive genome
|
|
47
|
+
|
|
48
|
+
### Step 3: Apply genome selectively
|
|
49
|
+
|
|
50
|
+
The genome should only be applied to executors that produce voice-sensitive output:
|
|
51
|
+
|
|
52
|
+
| Executor type | Apply genome? | Reason |
|
|
53
|
+
|---|---|---|
|
|
54
|
+
| Copywriter/Scriptwriter | Yes | Needs the person's voice |
|
|
55
|
+
| Editor/Reviewer | Yes | Needs to judge voice fidelity |
|
|
56
|
+
| Researcher/Analyst | No | Research should be objective |
|
|
57
|
+
| Orchestrator | No | Coordination doesn't need voice |
|
|
58
|
+
| Worker (no LLM) | No | Deterministic, no voice needed |
|
|
59
|
+
|
|
60
|
+
### Step 4: Register in blueprint
|
|
61
|
+
|
|
62
|
+
```json
|
|
63
|
+
{
|
|
64
|
+
"profiling": {
|
|
65
|
+
"person": "Person Name",
|
|
66
|
+
"genomePath": ".aioson/profiler-reports/person-slug/genome.json",
|
|
67
|
+
"genomeSlug": "person-slug",
|
|
68
|
+
"evidenceMode": "verified",
|
|
69
|
+
"profiledAt": "2026-03-24T00:00:00Z"
|
|
70
|
+
}
|
|
71
|
+
}
|
|
72
|
+
```
|
|
73
|
+
|
|
74
|
+
## Executor recommendations
|
|
75
|
+
|
|
76
|
+
| Role | Type | Model tier | Genome? |
|
|
77
|
+
|---|---|---|---|
|
|
78
|
+
| researcher | agent | balanced | No |
|
|
79
|
+
| scriptwriter | agent | powerful | Yes |
|
|
80
|
+
| copywriter | agent | powerful | Yes |
|
|
81
|
+
| editor | agent | balanced | Yes |
|
|
82
|
+
| brand-guardian | agent | balanced | Yes |
|
|
83
|
+
| publisher | worker | none | No |
|
|
84
|
+
|
|
85
|
+
## Anti-patterns
|
|
86
|
+
|
|
87
|
+
- **Applying genome to all executors:** Research and orchestration don't need persona voice.
|
|
88
|
+
- **Profiling without consent:** Always ask the user before running the profiler pipeline.
|
|
89
|
+
- **Stale genome:** If the person's style has evolved, the genome may need refreshing.
|
|
90
|
+
- **Over-reliance on genome:** The genome calibrates voice, it doesn't replace creative judgment.
|
|
91
|
+
- **Copying vs. calibrating:** The goal is to capture methodology and voice patterns, not to clone or impersonate.
|
|
92
|
+
|
|
93
|
+
## Quality gates for persona fidelity
|
|
94
|
+
|
|
95
|
+
- Voice consistency: Does the output sound like the person across all pieces?
|
|
96
|
+
- Methodology alignment: Does the approach follow the person's known frameworks?
|
|
97
|
+
- Authenticity check: Would the person recognize this as something they might produce?
|
|
98
|
+
- Originality: Is it inspired by the person, not a copy of their specific works?
|
|
@@ -0,0 +1,106 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: pipeline-pattern
|
|
3
|
+
description: How to configure pipelines between squads for multi-stage workflows
|
|
4
|
+
version: 1.0.0
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
# Pipeline Pattern
|
|
8
|
+
|
|
9
|
+
A pipeline connects two or more squads so that the output of one becomes the
|
|
10
|
+
input of the next. This pattern enables complex multi-stage workflows where
|
|
11
|
+
each squad has a distinct responsibility.
|
|
12
|
+
|
|
13
|
+
## When to use
|
|
14
|
+
|
|
15
|
+
- Content pipeline: research squad → writing squad → publishing squad
|
|
16
|
+
- Software pipeline: design squad → implementation squad → QA squad
|
|
17
|
+
- Data pipeline: collection squad → analysis squad → reporting squad
|
|
18
|
+
- Any workflow where stages have fundamentally different skill requirements
|
|
19
|
+
|
|
20
|
+
## Structure
|
|
21
|
+
|
|
22
|
+
### Ports (input/output contract)
|
|
23
|
+
|
|
24
|
+
Each squad in a pipeline declares its ports:
|
|
25
|
+
|
|
26
|
+
```json
|
|
27
|
+
{
|
|
28
|
+
"ports": {
|
|
29
|
+
"inputs": [
|
|
30
|
+
{ "key": "research-brief", "from": "research-squad", "format": "markdown" }
|
|
31
|
+
],
|
|
32
|
+
"outputs": [
|
|
33
|
+
{ "key": "draft-content", "to": "publishing-squad", "format": "content.json" }
|
|
34
|
+
]
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
```
|
|
38
|
+
|
|
39
|
+
### Pipeline definition
|
|
40
|
+
|
|
41
|
+
```json
|
|
42
|
+
{
|
|
43
|
+
"pipeline": {
|
|
44
|
+
"stages": [
|
|
45
|
+
{ "squad": "research-squad", "output": "research-brief" },
|
|
46
|
+
{ "squad": "writing-squad", "input": "research-brief", "output": "draft-content" },
|
|
47
|
+
{ "squad": "publishing-squad", "input": "draft-content" }
|
|
48
|
+
],
|
|
49
|
+
"trigger": "manual",
|
|
50
|
+
"errorStrategy": "stop-on-failure"
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
```
|
|
54
|
+
|
|
55
|
+
## Key decisions
|
|
56
|
+
|
|
57
|
+
### Trigger modes
|
|
58
|
+
|
|
59
|
+
| Mode | Behavior |
|
|
60
|
+
|---|---|
|
|
61
|
+
| `manual` | User explicitly starts each stage |
|
|
62
|
+
| `on-complete` | Next stage starts automatically when previous completes |
|
|
63
|
+
| `scheduled` | Stages run on a schedule (e.g., research Monday, writing Wednesday) |
|
|
64
|
+
|
|
65
|
+
### Error handling
|
|
66
|
+
|
|
67
|
+
| Strategy | Behavior |
|
|
68
|
+
|---|---|
|
|
69
|
+
| `stop-on-failure` | Pipeline halts, user intervenes |
|
|
70
|
+
| `retry` | Failed stage retries N times before halting |
|
|
71
|
+
| `skip` | Failed stage is skipped, next stage gets partial input |
|
|
72
|
+
|
|
73
|
+
### Data handoff format
|
|
74
|
+
|
|
75
|
+
Squads should agree on a data contract. Recommended formats:
|
|
76
|
+
|
|
77
|
+
- `content.json` — for structured content packages
|
|
78
|
+
- Markdown files — for research reports, briefs, analysis
|
|
79
|
+
- JSON files — for structured data, configurations
|
|
80
|
+
- File references — for media assets
|
|
81
|
+
|
|
82
|
+
## Executor design for pipelines
|
|
83
|
+
|
|
84
|
+
Pipeline squads tend to be more focused than standalone squads:
|
|
85
|
+
|
|
86
|
+
| Squad in pipeline | Typical executors |
|
|
87
|
+
|---|---|
|
|
88
|
+
| Research stage | researcher, analyst, fact-checker |
|
|
89
|
+
| Creation stage | writer, designer, reviewer |
|
|
90
|
+
| Publishing stage | formatter, publisher, distributor |
|
|
91
|
+
|
|
92
|
+
Each squad should have clear input expectations and output guarantees.
|
|
93
|
+
|
|
94
|
+
## Anti-patterns
|
|
95
|
+
|
|
96
|
+
- **Monolith squad:** If a squad has 8+ executors covering research, creation, and distribution, consider splitting into a pipeline.
|
|
97
|
+
- **Implicit contracts:** Squads in a pipeline must agree on data format. Don't assume.
|
|
98
|
+
- **Tight coupling:** Each squad should be independently testable and runnable.
|
|
99
|
+
- **Missing error handling:** Always define what happens when a stage fails.
|
|
100
|
+
|
|
101
|
+
## Cross-squad awareness
|
|
102
|
+
|
|
103
|
+
Squads with ports contribute to the Quality Structural scoring dimension:
|
|
104
|
+
- +3 pts for having ports defined (inputs or outputs)
|
|
105
|
+
|
|
106
|
+
The squad:doctor also checks for port consistency across connected squads.
|
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: review-loop-pattern
|
|
3
|
+
description: How to configure review loops in squad workflows for quality assurance
|
|
4
|
+
version: 1.0.0
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
# Review Loop Pattern
|
|
8
|
+
|
|
9
|
+
A review loop adds a quality gate within a workflow phase. An executor produces
|
|
10
|
+
output, a reviewer evaluates it, and the workflow either advances or retries.
|
|
11
|
+
|
|
12
|
+
## When to use
|
|
13
|
+
|
|
14
|
+
- Content squads where quality directly impacts reputation
|
|
15
|
+
- Software squads with code review requirements
|
|
16
|
+
- Any squad where output goes to external audiences
|
|
17
|
+
- Squads with regulatory or compliance constraints
|
|
18
|
+
|
|
19
|
+
## Structure
|
|
20
|
+
|
|
21
|
+
```json
|
|
22
|
+
{
|
|
23
|
+
"phases": [
|
|
24
|
+
{
|
|
25
|
+
"id": "draft",
|
|
26
|
+
"executor": "scriptwriter",
|
|
27
|
+
"review": {
|
|
28
|
+
"reviewer": "editor",
|
|
29
|
+
"criteria": ["clarity", "brand-voice", "factual-accuracy"],
|
|
30
|
+
"onReject": "revise-draft",
|
|
31
|
+
"maxRetries": 2,
|
|
32
|
+
"retryStrategy": "feedback-only",
|
|
33
|
+
"escalateOnMaxRetries": "human",
|
|
34
|
+
"vetoConditions": ["plagiarism-detected", "factual-error"]
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
]
|
|
38
|
+
}
|
|
39
|
+
```
|
|
40
|
+
|
|
41
|
+
## Key decisions
|
|
42
|
+
|
|
43
|
+
### Who reviews?
|
|
44
|
+
|
|
45
|
+
| Reviewer type | When to use |
|
|
46
|
+
|---|---|
|
|
47
|
+
| Peer executor | Same domain, different perspective (e.g., editor reviews writer) |
|
|
48
|
+
| QA executor | Dedicated quality role in the squad |
|
|
49
|
+
| Orchestrator | Lightweight structural checks |
|
|
50
|
+
| Human gate | High-stakes output, legal, compliance |
|
|
51
|
+
|
|
52
|
+
### Retry strategy
|
|
53
|
+
|
|
54
|
+
| Strategy | Behavior |
|
|
55
|
+
|---|---|
|
|
56
|
+
| `feedback-only` | Reviewer sends feedback, creator revises (default) |
|
|
57
|
+
| `full-rewrite` | Creator starts from scratch with reviewer notes |
|
|
58
|
+
| `escalate` | Move to a more senior executor or human |
|
|
59
|
+
|
|
60
|
+
### Veto conditions
|
|
61
|
+
|
|
62
|
+
Veto conditions are hard stops — if triggered, the output is rejected regardless
|
|
63
|
+
of other criteria scores. Use for:
|
|
64
|
+
|
|
65
|
+
- Plagiarism detection
|
|
66
|
+
- Factual errors in critical domains (medical, legal, financial)
|
|
67
|
+
- Brand safety violations
|
|
68
|
+
- Regulatory non-compliance
|
|
69
|
+
|
|
70
|
+
## Anti-patterns
|
|
71
|
+
|
|
72
|
+
- **Review everything:** Not all phases need review. Apply to high-impact outputs only.
|
|
73
|
+
- **Self-review:** A reviewer should not be the same executor that created the output.
|
|
74
|
+
- **Infinite retries:** Always set `maxRetries`. 2-3 is typical. Escalate after that.
|
|
75
|
+
- **Vague criteria:** "Make it better" is not a criterion. Use measurable checks.
|
|
76
|
+
|
|
77
|
+
## Integration with squad scoring
|
|
78
|
+
|
|
79
|
+
Review loops contribute to the Quality Structural dimension:
|
|
80
|
+
- +5 pts for having review loops in at least one workflow phase
|
|
81
|
+
- +5 pts for having veto conditions defined
|
|
@@ -0,0 +1,122 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: checklist-templates
|
|
3
|
+
description: Quality checklist templates organized by domain and output type
|
|
4
|
+
version: 1.0.0
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
# Checklist Templates
|
|
8
|
+
|
|
9
|
+
Reusable quality checklists for squad outputs. These can be referenced in
|
|
10
|
+
manifest checklists or used as veto condition sources.
|
|
11
|
+
|
|
12
|
+
## General content checklist
|
|
13
|
+
|
|
14
|
+
```markdown
|
|
15
|
+
## Content Quality Checklist
|
|
16
|
+
- [ ] Clear and compelling headline/title
|
|
17
|
+
- [ ] Hook in the first paragraph/sentence
|
|
18
|
+
- [ ] Logical flow from introduction to conclusion
|
|
19
|
+
- [ ] No grammatical or spelling errors
|
|
20
|
+
- [ ] Sources cited for factual claims
|
|
21
|
+
- [ ] Call-to-action present and appropriate
|
|
22
|
+
- [ ] Formatted for the target platform
|
|
23
|
+
- [ ] Brand voice consistent throughout
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
## Social media checklist
|
|
27
|
+
|
|
28
|
+
```markdown
|
|
29
|
+
## Social Media Quality Checklist
|
|
30
|
+
- [ ] Platform character/duration limits respected
|
|
31
|
+
- [ ] Hook in first line (text) or first 3 seconds (video)
|
|
32
|
+
- [ ] Hashtags relevant and platform-appropriate
|
|
33
|
+
- [ ] CTA matches platform behavior (follow, like, comment, share)
|
|
34
|
+
- [ ] Visual/thumbnail meets platform specs (dimensions, file size)
|
|
35
|
+
- [ ] No banned words or flagged content
|
|
36
|
+
- [ ] Posting time aligns with audience activity
|
|
37
|
+
- [ ] Cross-platform consistency verified (if multi-platform)
|
|
38
|
+
```
|
|
39
|
+
|
|
40
|
+
## Video script checklist
|
|
41
|
+
|
|
42
|
+
```markdown
|
|
43
|
+
## Video Script Quality Checklist
|
|
44
|
+
- [ ] Hook captures attention in first 3 seconds
|
|
45
|
+
- [ ] Context bridge explains why viewer should stay (3-15s)
|
|
46
|
+
- [ ] Value delivery structured in clear chapters/segments
|
|
47
|
+
- [ ] Retention hooks at chapter transitions
|
|
48
|
+
- [ ] CTA integrated naturally (not forced)
|
|
49
|
+
- [ ] Script length matches target duration
|
|
50
|
+
- [ ] Thumbnail concept included or referenced
|
|
51
|
+
- [ ] Title options provided (3-5 variations)
|
|
52
|
+
- [ ] Description and tags optimized for search
|
|
53
|
+
```
|
|
54
|
+
|
|
55
|
+
## Blog/article checklist
|
|
56
|
+
|
|
57
|
+
```markdown
|
|
58
|
+
## Blog/Article Quality Checklist
|
|
59
|
+
- [ ] Title is descriptive and SEO-friendly
|
|
60
|
+
- [ ] Meta description written (150-160 characters)
|
|
61
|
+
- [ ] Introduction states the value proposition
|
|
62
|
+
- [ ] Subheadings break content into scannable sections
|
|
63
|
+
- [ ] Images/media support the text
|
|
64
|
+
- [ ] Internal and external links included
|
|
65
|
+
- [ ] Conclusion summarizes key takeaways
|
|
66
|
+
- [ ] CTA directs reader to next step
|
|
67
|
+
- [ ] Reading time estimate included
|
|
68
|
+
```
|
|
69
|
+
|
|
70
|
+
## Software deliverable checklist
|
|
71
|
+
|
|
72
|
+
```markdown
|
|
73
|
+
## Software Deliverable Checklist
|
|
74
|
+
- [ ] Requirements fully addressed
|
|
75
|
+
- [ ] Code follows project conventions
|
|
76
|
+
- [ ] Tests written and passing
|
|
77
|
+
- [ ] No security vulnerabilities introduced
|
|
78
|
+
- [ ] Error handling covers edge cases
|
|
79
|
+
- [ ] Documentation updated
|
|
80
|
+
- [ ] Performance impact assessed
|
|
81
|
+
- [ ] Backward compatibility maintained (or breaking changes documented)
|
|
82
|
+
```
|
|
83
|
+
|
|
84
|
+
## Research/analysis checklist
|
|
85
|
+
|
|
86
|
+
```markdown
|
|
87
|
+
## Research Quality Checklist
|
|
88
|
+
- [ ] Research question clearly defined
|
|
89
|
+
- [ ] Sources are credible and diverse
|
|
90
|
+
- [ ] Data is current (within acceptable timeframe)
|
|
91
|
+
- [ ] Claims are supported by evidence
|
|
92
|
+
- [ ] Counterarguments acknowledged
|
|
93
|
+
- [ ] Methodology is transparent
|
|
94
|
+
- [ ] Conclusions follow from evidence
|
|
95
|
+
- [ ] Limitations explicitly stated
|
|
96
|
+
```
|
|
97
|
+
|
|
98
|
+
## Using checklists in manifests
|
|
99
|
+
|
|
100
|
+
Reference a checklist in the squad manifest:
|
|
101
|
+
|
|
102
|
+
```json
|
|
103
|
+
{
|
|
104
|
+
"checklists": [
|
|
105
|
+
{
|
|
106
|
+
"slug": "content-quality",
|
|
107
|
+
"title": "Content Quality",
|
|
108
|
+
"source": "skills/squad/references/checklist-templates.md#general-content-checklist",
|
|
109
|
+
"applies_to": ["scriptwriter", "copywriter"]
|
|
110
|
+
}
|
|
111
|
+
]
|
|
112
|
+
}
|
|
113
|
+
```
|
|
114
|
+
|
|
115
|
+
## Creating domain-specific checklists
|
|
116
|
+
|
|
117
|
+
For domains not covered here, derive checklists from:
|
|
118
|
+
|
|
119
|
+
1. **Investigation findings** — D3 (Quality Benchmarks) from @orache
|
|
120
|
+
2. **Industry standards** — professional association guidelines
|
|
121
|
+
3. **Anti-patterns** — D2 findings become negative checks ("must NOT contain...")
|
|
122
|
+
4. **Platform requirements** — technical constraints from target platforms
|
|
@@ -0,0 +1,123 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: executor-archetypes
|
|
3
|
+
description: Common executor roles and their recommended configurations across squad types
|
|
4
|
+
version: 1.0.0
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
# Executor Archetypes
|
|
8
|
+
|
|
9
|
+
Reference catalog of common executor roles. Use as inspiration when designing
|
|
10
|
+
squad executors — adapt to the specific domain, don't copy blindly.
|
|
11
|
+
|
|
12
|
+
## Content squads
|
|
13
|
+
|
|
14
|
+
### Scriptwriter / Copywriter
|
|
15
|
+
- **Type:** agent
|
|
16
|
+
- **Model tier:** powerful
|
|
17
|
+
- **Focus:** narrative structure, audience engagement, brand voice
|
|
18
|
+
- **When to use:** Any squad producing written content
|
|
19
|
+
- **Genome:** Apply persona genome if persona-based squad
|
|
20
|
+
|
|
21
|
+
### Editor / Reviewer
|
|
22
|
+
- **Type:** agent
|
|
23
|
+
- **Model tier:** balanced
|
|
24
|
+
- **Focus:** clarity, grammar, factual accuracy, brand consistency
|
|
25
|
+
- **When to use:** Squads with quality review requirements
|
|
26
|
+
- **Genome:** Apply persona genome for voice consistency checks
|
|
27
|
+
|
|
28
|
+
### Researcher / Analyst
|
|
29
|
+
- **Type:** agent
|
|
30
|
+
- **Model tier:** balanced
|
|
31
|
+
- **Focus:** data gathering, trend analysis, competitive intelligence
|
|
32
|
+
- **When to use:** Squads that need evidence-based content
|
|
33
|
+
- **Genome:** Do not apply persona genome
|
|
34
|
+
|
|
35
|
+
### SEO Specialist
|
|
36
|
+
- **Type:** agent
|
|
37
|
+
- **Model tier:** balanced
|
|
38
|
+
- **Focus:** keyword research, meta descriptions, search optimization
|
|
39
|
+
- **When to use:** Content squads targeting search traffic
|
|
40
|
+
|
|
41
|
+
### Trend Analyst
|
|
42
|
+
- **Type:** agent
|
|
43
|
+
- **Model tier:** balanced
|
|
44
|
+
- **Focus:** platform trends, competitor analysis, topic suggestions
|
|
45
|
+
- **When to use:** Social media and content squads
|
|
46
|
+
|
|
47
|
+
### Visual Strategist / Thumbnail Designer
|
|
48
|
+
- **Type:** agent
|
|
49
|
+
- **Model tier:** balanced
|
|
50
|
+
- **Focus:** visual concepts, thumbnail psychology, brand visual identity
|
|
51
|
+
- **When to use:** Video and social media squads
|
|
52
|
+
|
|
53
|
+
## Software squads
|
|
54
|
+
|
|
55
|
+
### Architect
|
|
56
|
+
- **Type:** agent
|
|
57
|
+
- **Model tier:** powerful
|
|
58
|
+
- **Focus:** system design, API contracts, technology decisions
|
|
59
|
+
- **When to use:** Software squads building new systems
|
|
60
|
+
|
|
61
|
+
### Developer
|
|
62
|
+
- **Type:** agent
|
|
63
|
+
- **Model tier:** powerful
|
|
64
|
+
- **Focus:** implementation, code quality, testing
|
|
65
|
+
- **When to use:** All software squads
|
|
66
|
+
|
|
67
|
+
### QA Engineer
|
|
68
|
+
- **Type:** agent
|
|
69
|
+
- **Model tier:** balanced
|
|
70
|
+
- **Focus:** test coverage, edge cases, regression testing
|
|
71
|
+
- **When to use:** Software squads with quality requirements
|
|
72
|
+
|
|
73
|
+
### DevOps / Infrastructure
|
|
74
|
+
- **Type:** agent or worker
|
|
75
|
+
- **Model tier:** balanced or none
|
|
76
|
+
- **Focus:** deployment, CI/CD, monitoring
|
|
77
|
+
- **When to use:** Software squads with deployment needs
|
|
78
|
+
|
|
79
|
+
## Universal roles
|
|
80
|
+
|
|
81
|
+
### Orchestrator
|
|
82
|
+
- **Type:** agent
|
|
83
|
+
- **Model tier:** powerful
|
|
84
|
+
- **Focus:** coordination, workflow management, conflict resolution
|
|
85
|
+
- **When to use:** Every squad with 3+ executors
|
|
86
|
+
- **Genome:** Do not apply persona genome
|
|
87
|
+
- **Special:** Has access to all executor outputs, manages workflow state
|
|
88
|
+
|
|
89
|
+
### Worker (deterministic)
|
|
90
|
+
- **Type:** worker
|
|
91
|
+
- **Model tier:** none
|
|
92
|
+
- **usesLLM:** false
|
|
93
|
+
- **Focus:** file operations, data transformation, validation, API calls
|
|
94
|
+
- **When to use:** Any step that can be done with a script (no judgment needed)
|
|
95
|
+
- **Examples:** format validator, image resizer, link checker, data formatter
|
|
96
|
+
|
|
97
|
+
### Fact-Checker
|
|
98
|
+
- **Type:** agent
|
|
99
|
+
- **Model tier:** balanced
|
|
100
|
+
- **Focus:** source verification, claim validation, accuracy
|
|
101
|
+
- **When to use:** Content squads in sensitive domains (health, finance, legal, news)
|
|
102
|
+
|
|
103
|
+
## Executor classification decision tree
|
|
104
|
+
|
|
105
|
+
```
|
|
106
|
+
Is the task deterministic (same input → same output)?
|
|
107
|
+
├── Yes → worker (type: worker, modelTier: none, usesLLM: false)
|
|
108
|
+
└── No → agent
|
|
109
|
+
├── Does it require complex reasoning or creativity?
|
|
110
|
+
│ ├── Yes → modelTier: powerful
|
|
111
|
+
│ └── No → modelTier: balanced
|
|
112
|
+
└── Is it a quick formatting/checking task?
|
|
113
|
+
└── Yes → modelTier: fast
|
|
114
|
+
```
|
|
115
|
+
|
|
116
|
+
## Sizing guidelines
|
|
117
|
+
|
|
118
|
+
| Squad size | Executors | Orchestrator? |
|
|
119
|
+
|---|---|---|
|
|
120
|
+
| Micro (1-2 outputs) | 2-3 | Optional |
|
|
121
|
+
| Standard (3-5 outputs) | 3-5 | Recommended |
|
|
122
|
+
| Large (6+ outputs) | 5-8 | Required |
|
|
123
|
+
| Pipeline stage | 2-4 | Optional |
|