@jaimevalasek/aioson 1.3.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 +456 -0
- package/CODE_OF_CONDUCT.md +12 -0
- package/CONTRIBUTING.md +13 -0
- package/LICENSE +21 -0
- package/README.md +254 -0
- package/bin/aioson.js +4 -0
- package/docs/en/cli-reference.md +398 -0
- package/docs/en/i18n.md +52 -0
- package/docs/en/json-schemas.md +41 -0
- package/docs/en/mcp.md +56 -0
- package/docs/en/parallel.md +82 -0
- package/docs/en/qa-browser.md +339 -0
- package/docs/en/release-flow.md +22 -0
- package/docs/en/release-notes-template.md +41 -0
- package/docs/en/release.md +28 -0
- package/docs/en/schemas/agent-prompt.schema.json +17 -0
- package/docs/en/schemas/agents.schema.json +32 -0
- package/docs/en/schemas/context-validate.schema.json +36 -0
- package/docs/en/schemas/doctor.schema.json +89 -0
- package/docs/en/schemas/error.schema.json +24 -0
- package/docs/en/schemas/i18n-add.schema.json +15 -0
- package/docs/en/schemas/index.json +116 -0
- package/docs/en/schemas/info.schema.json +39 -0
- package/docs/en/schemas/init.schema.json +48 -0
- package/docs/en/schemas/install.schema.json +60 -0
- package/docs/en/schemas/locale-apply.schema.json +30 -0
- package/docs/en/schemas/mcp-doctor.schema.json +95 -0
- package/docs/en/schemas/mcp-init.schema.json +122 -0
- package/docs/en/schemas/package-test.schema.json +24 -0
- package/docs/en/schemas/parallel-assign.schema.json +57 -0
- package/docs/en/schemas/parallel-doctor.schema.json +86 -0
- package/docs/en/schemas/parallel-init.schema.json +53 -0
- package/docs/en/schemas/parallel-status.schema.json +94 -0
- package/docs/en/schemas/setup-context.schema.json +39 -0
- package/docs/en/schemas/smoke.schema.json +23 -0
- package/docs/en/schemas/update.schema.json +48 -0
- package/docs/en/schemas/workflow-plan.schema.json +30 -0
- package/docs/en/web3.md +54 -0
- package/docs/pt/README.md +46 -0
- package/docs/pt/advisor-spec.md +335 -0
- package/docs/pt/agentes.md +453 -0
- package/docs/pt/cenarios.md +1230 -0
- package/docs/pt/clientes-ai.md +224 -0
- package/docs/pt/comandos-cli.md +511 -0
- package/docs/pt/genome-3.0-spec.md +296 -0
- package/docs/pt/guia-engineer.md +226 -0
- package/docs/pt/inicio-rapido.md +138 -0
- package/docs/pt/profiler-system.md +214 -0
- package/docs/pt/runtime-observability.md +72 -0
- package/docs/pt/squad-genoma.md +777 -0
- package/docs/pt/web3.md +797 -0
- package/docs/testing/genome-2.0-manual-regression.md +23 -0
- package/docs/testing/genome-2.0-matrix.md +36 -0
- package/docs/testing/genome-2.0-rollout.md +184 -0
- package/package.json +50 -0
- package/src/agents.js +56 -0
- package/src/cli.js +497 -0
- package/src/commands/agents.js +142 -0
- package/src/commands/cloud.js +1767 -0
- package/src/commands/config.js +90 -0
- package/src/commands/context-validate.js +91 -0
- package/src/commands/doctor.js +123 -0
- package/src/commands/genome-doctor.js +41 -0
- package/src/commands/genome-migrate.js +49 -0
- package/src/commands/i18n-add.js +56 -0
- package/src/commands/info.js +41 -0
- package/src/commands/init.js +75 -0
- package/src/commands/install.js +68 -0
- package/src/commands/locale-apply.js +51 -0
- package/src/commands/locale-diff.js +126 -0
- package/src/commands/mcp-doctor.js +406 -0
- package/src/commands/mcp-init.js +379 -0
- package/src/commands/package-e2e.js +273 -0
- package/src/commands/parallel-assign.js +403 -0
- package/src/commands/parallel-doctor.js +437 -0
- package/src/commands/parallel-init.js +249 -0
- package/src/commands/parallel-status.js +290 -0
- package/src/commands/qa-doctor.js +185 -0
- package/src/commands/qa-init.js +161 -0
- package/src/commands/qa-report.js +58 -0
- package/src/commands/qa-run.js +873 -0
- package/src/commands/qa-scan.js +337 -0
- package/src/commands/runtime.js +948 -0
- package/src/commands/scan-project.js +1107 -0
- package/src/commands/setup-context.js +650 -0
- package/src/commands/smoke.js +426 -0
- package/src/commands/squad-doctor.js +358 -0
- package/src/commands/squad-export.js +46 -0
- package/src/commands/squad-pipeline.js +97 -0
- package/src/commands/squad-repair-genomes.js +39 -0
- package/src/commands/squad-status.js +424 -0
- package/src/commands/squad-validate.js +230 -0
- package/src/commands/test-agents.js +194 -0
- package/src/commands/update.js +55 -0
- package/src/commands/workflow-next.js +594 -0
- package/src/commands/workflow-plan.js +108 -0
- package/src/constants.js +314 -0
- package/src/context-parse-reason.js +22 -0
- package/src/context-writer.js +150 -0
- package/src/context.js +217 -0
- package/src/detector.js +261 -0
- package/src/doctor.js +289 -0
- package/src/execution-gateway.js +461 -0
- package/src/genome-files.js +198 -0
- package/src/genome-format.js +442 -0
- package/src/genome-schema.js +215 -0
- package/src/genomes/bindings.js +281 -0
- package/src/genomes.js +467 -0
- package/src/i18n/index.js +103 -0
- package/src/i18n/messages/en.js +784 -0
- package/src/i18n/messages/es.js +718 -0
- package/src/i18n/messages/fr.js +725 -0
- package/src/i18n/messages/pt-BR.js +818 -0
- package/src/i18n/scaffold.js +64 -0
- package/src/installer.js +232 -0
- package/src/lib/genomes/compat.js +206 -0
- package/src/lib/genomes/migrate.js +90 -0
- package/src/lib/squads/genome-repair.js +49 -0
- package/src/locales.js +84 -0
- package/src/onboarding.js +305 -0
- package/src/parser.js +53 -0
- package/src/prompt-tool.js +20 -0
- package/src/qa-html-report.js +472 -0
- package/src/runtime-store.js +1527 -0
- package/src/squads/apply-genome.js +21 -0
- package/src/squads/genome-binding-service.js +154 -0
- package/src/updater.js +32 -0
- package/src/utils.js +46 -0
- package/src/version.js +50 -0
- package/template/.aioson/advisors/.gitkeep +1 -0
- package/template/.aioson/agents/analyst.md +225 -0
- package/template/.aioson/agents/architect.md +221 -0
- package/template/.aioson/agents/dev.md +201 -0
- package/template/.aioson/agents/discovery-design-doc.md +196 -0
- package/template/.aioson/agents/genoma.md +300 -0
- package/template/.aioson/agents/orchestrator.md +107 -0
- package/template/.aioson/agents/pm.md +89 -0
- package/template/.aioson/agents/product.md +361 -0
- package/template/.aioson/agents/profiler-enricher.md +266 -0
- package/template/.aioson/agents/profiler-forge.md +188 -0
- package/template/.aioson/agents/profiler-researcher.md +245 -0
- package/template/.aioson/agents/qa.md +344 -0
- package/template/.aioson/agents/setup.md +381 -0
- package/template/.aioson/agents/squad.md +837 -0
- package/template/.aioson/agents/ux-ui.md +416 -0
- package/template/.aioson/config.md +56 -0
- package/template/.aioson/context/.gitkeep +0 -0
- package/template/.aioson/context/parallel/.gitkeep +0 -0
- package/template/.aioson/context/spec.md.template +37 -0
- package/template/.aioson/genomas/.gitkeep +0 -0
- package/template/.aioson/locales/en/agents/analyst.md +214 -0
- package/template/.aioson/locales/en/agents/architect.md +210 -0
- package/template/.aioson/locales/en/agents/dev.md +187 -0
- package/template/.aioson/locales/en/agents/discovery-design-doc.md +27 -0
- package/template/.aioson/locales/en/agents/genoma.md +212 -0
- package/template/.aioson/locales/en/agents/orchestrator.md +105 -0
- package/template/.aioson/locales/en/agents/pm.md +77 -0
- package/template/.aioson/locales/en/agents/product.md +310 -0
- package/template/.aioson/locales/en/agents/profiler-enricher.md +5 -0
- package/template/.aioson/locales/en/agents/profiler-forge.md +5 -0
- package/template/.aioson/locales/en/agents/profiler-researcher.md +5 -0
- package/template/.aioson/locales/en/agents/qa.md +214 -0
- package/template/.aioson/locales/en/agents/setup.md +342 -0
- package/template/.aioson/locales/en/agents/squad.md +247 -0
- package/template/.aioson/locales/en/agents/ux-ui.md +320 -0
- package/template/.aioson/locales/es/agents/analyst.md +203 -0
- package/template/.aioson/locales/es/agents/architect.md +208 -0
- package/template/.aioson/locales/es/agents/dev.md +183 -0
- package/template/.aioson/locales/es/agents/discovery-design-doc.md +19 -0
- package/template/.aioson/locales/es/agents/genoma.md +102 -0
- package/template/.aioson/locales/es/agents/orchestrator.md +108 -0
- package/template/.aioson/locales/es/agents/pm.md +81 -0
- package/template/.aioson/locales/es/agents/product.md +310 -0
- package/template/.aioson/locales/es/agents/profiler-enricher.md +5 -0
- package/template/.aioson/locales/es/agents/profiler-forge.md +5 -0
- package/template/.aioson/locales/es/agents/profiler-researcher.md +5 -0
- package/template/.aioson/locales/es/agents/qa.md +163 -0
- package/template/.aioson/locales/es/agents/setup.md +347 -0
- package/template/.aioson/locales/es/agents/squad.md +247 -0
- package/template/.aioson/locales/es/agents/ux-ui.md +201 -0
- package/template/.aioson/locales/fr/agents/analyst.md +203 -0
- package/template/.aioson/locales/fr/agents/architect.md +208 -0
- package/template/.aioson/locales/fr/agents/dev.md +183 -0
- package/template/.aioson/locales/fr/agents/discovery-design-doc.md +19 -0
- package/template/.aioson/locales/fr/agents/genoma.md +102 -0
- package/template/.aioson/locales/fr/agents/orchestrator.md +108 -0
- package/template/.aioson/locales/fr/agents/pm.md +81 -0
- package/template/.aioson/locales/fr/agents/product.md +310 -0
- package/template/.aioson/locales/fr/agents/profiler-enricher.md +5 -0
- package/template/.aioson/locales/fr/agents/profiler-forge.md +5 -0
- package/template/.aioson/locales/fr/agents/profiler-researcher.md +5 -0
- package/template/.aioson/locales/fr/agents/qa.md +163 -0
- package/template/.aioson/locales/fr/agents/setup.md +347 -0
- package/template/.aioson/locales/fr/agents/squad.md +247 -0
- package/template/.aioson/locales/fr/agents/ux-ui.md +201 -0
- package/template/.aioson/locales/pt-BR/agents/analyst.md +217 -0
- package/template/.aioson/locales/pt-BR/agents/architect.md +213 -0
- package/template/.aioson/locales/pt-BR/agents/dev.md +198 -0
- package/template/.aioson/locales/pt-BR/agents/discovery-design-doc.md +198 -0
- package/template/.aioson/locales/pt-BR/agents/genoma.md +297 -0
- package/template/.aioson/locales/pt-BR/agents/orchestrator.md +108 -0
- package/template/.aioson/locales/pt-BR/agents/pm.md +81 -0
- package/template/.aioson/locales/pt-BR/agents/product.md +316 -0
- package/template/.aioson/locales/pt-BR/agents/profiler-enricher.md +5 -0
- package/template/.aioson/locales/pt-BR/agents/profiler-forge.md +5 -0
- package/template/.aioson/locales/pt-BR/agents/profiler-researcher.md +5 -0
- package/template/.aioson/locales/pt-BR/agents/qa.md +217 -0
- package/template/.aioson/locales/pt-BR/agents/setup.md +371 -0
- package/template/.aioson/locales/pt-BR/agents/squad.md +772 -0
- package/template/.aioson/locales/pt-BR/agents/ux-ui.md +322 -0
- package/template/.aioson/mcp/servers.md +24 -0
- package/template/.aioson/profiler-reports/.gitkeep +1 -0
- package/template/.aioson/schemas/content-blueprint.schema.json +30 -0
- package/template/.aioson/schemas/genome-meta.schema.json +150 -0
- package/template/.aioson/schemas/genome.schema.json +115 -0
- package/template/.aioson/schemas/readiness.schema.json +27 -0
- package/template/.aioson/schemas/squad-blueprint.schema.json +172 -0
- package/template/.aioson/schemas/squad-manifest.schema.json +276 -0
- package/template/.aioson/skills/dynamic/README.md +30 -0
- package/template/.aioson/skills/dynamic/cardano-docs.md +16 -0
- package/template/.aioson/skills/dynamic/ethereum-docs.md +17 -0
- package/template/.aioson/skills/dynamic/flux-ui-docs.md +13 -0
- package/template/.aioson/skills/dynamic/laravel-docs.md +41 -0
- package/template/.aioson/skills/dynamic/npm-packages.md +16 -0
- package/template/.aioson/skills/dynamic/solana-docs.md +16 -0
- package/template/.aioson/skills/references/premium-command-center-ui/master-application-prompt.md +79 -0
- package/template/.aioson/skills/references/premium-command-center-ui/operational-ux-playbook.md +253 -0
- package/template/.aioson/skills/references/premium-command-center-ui/quality-validation-checklist.md +82 -0
- package/template/.aioson/skills/references/premium-command-center-ui/visual-system-and-component-patterns.md +270 -0
- package/template/.aioson/skills/static/django-patterns.md +342 -0
- package/template/.aioson/skills/static/fastapi-patterns.md +344 -0
- package/template/.aioson/skills/static/filament-patterns.md +267 -0
- package/template/.aioson/skills/static/flux-ui-components.md +262 -0
- package/template/.aioson/skills/static/git-conventions.md +227 -0
- package/template/.aioson/skills/static/interface-design.md +372 -0
- package/template/.aioson/skills/static/jetstream-setup.md +200 -0
- package/template/.aioson/skills/static/laravel-conventions.md +491 -0
- package/template/.aioson/skills/static/nextjs-patterns.md +321 -0
- package/template/.aioson/skills/static/node-express-patterns.md +317 -0
- package/template/.aioson/skills/static/node-typescript-patterns.md +282 -0
- package/template/.aioson/skills/static/premium-command-center-ui.md +190 -0
- package/template/.aioson/skills/static/rails-conventions.md +307 -0
- package/template/.aioson/skills/static/react-motion-patterns.md +577 -0
- package/template/.aioson/skills/static/static-html-patterns.md +1935 -0
- package/template/.aioson/skills/static/tall-stack-patterns.md +286 -0
- package/template/.aioson/skills/static/ui-ux-modern.md +75 -0
- package/template/.aioson/skills/static/web3-cardano-patterns.md +337 -0
- package/template/.aioson/skills/static/web3-ethereum-patterns.md +310 -0
- package/template/.aioson/skills/static/web3-security-checklist.md +284 -0
- package/template/.aioson/skills/static/web3-solana-patterns.md +324 -0
- package/template/.aioson/squads/.artisan/.gitkeep +0 -0
- package/template/.aioson/squads/.gitkeep +0 -0
- package/template/.aioson/squads/memory.md +5 -0
- package/template/.aioson/tasks/squad-analyze.md +83 -0
- package/template/.aioson/tasks/squad-create.md +99 -0
- package/template/.aioson/tasks/squad-design.md +100 -0
- package/template/.aioson/tasks/squad-export.md +20 -0
- package/template/.aioson/tasks/squad-extend.md +68 -0
- package/template/.aioson/tasks/squad-pipeline.md +122 -0
- package/template/.aioson/tasks/squad-repair.md +85 -0
- package/template/.aioson/tasks/squad-validate.md +58 -0
- package/template/.aioson/templates/squads/content-basic/template.json +21 -0
- package/template/.aioson/templates/squads/media-channel/template.json +24 -0
- package/template/.aioson/templates/squads/research-analysis/template.json +22 -0
- package/template/.aioson/templates/squads/software-delivery/template.json +21 -0
- package/template/.claude/commands/aioson/analyst.md +5 -0
- package/template/.claude/commands/aioson/architect.md +5 -0
- package/template/.claude/commands/aioson/dev.md +5 -0
- package/template/.claude/commands/aioson/orchestrator.md +5 -0
- package/template/.claude/commands/aioson/pm.md +5 -0
- package/template/.claude/commands/aioson/qa.md +5 -0
- package/template/.claude/commands/aioson/setup.md +5 -0
- package/template/.claude/commands/aioson/ux-ui.md +5 -0
- package/template/.gemini/GEMINI.md +10 -0
- package/template/.gemini/commands/aios-analyst.toml +4 -0
- package/template/.gemini/commands/aios-architect.toml +7 -0
- package/template/.gemini/commands/aios-dev.toml +8 -0
- package/template/.gemini/commands/aios-discovery-design-doc.toml +4 -0
- package/template/.gemini/commands/aios-orchestrator.toml +8 -0
- package/template/.gemini/commands/aios-pm.toml +8 -0
- package/template/.gemini/commands/aios-product.toml +4 -0
- package/template/.gemini/commands/aios-qa.toml +6 -0
- package/template/.gemini/commands/aios-setup.toml +3 -0
- package/template/.gemini/commands/aios-ux-ui.toml +8 -0
- package/template/AGENTS.md +67 -0
- package/template/CLAUDE.md +31 -0
- package/template/OPENCODE.md +24 -0
- package/template/aioson-models.json +40 -0
|
@@ -0,0 +1,212 @@
|
|
|
1
|
+
# Agent @genoma
|
|
2
|
+
|
|
3
|
+
> ⚡ **ACTIVATED** — Execute immediately as @genoma.
|
|
4
|
+
|
|
5
|
+
> **⚠ ABSOLUTE INSTRUCTION — LANGUAGE:** This session is in **English (en)**. Respond EXCLUSIVELY in English at all steps. This rule has maximum priority and cannot be overridden.
|
|
6
|
+
|
|
7
|
+
## Mission
|
|
8
|
+
Generate Genoma artifacts on demand via LLM knowledge. A genome may be:
|
|
9
|
+
- `domain`
|
|
10
|
+
- `function`
|
|
11
|
+
- `persona`
|
|
12
|
+
- `hybrid`
|
|
13
|
+
|
|
14
|
+
Each genome contains cognitive content plus operational metadata for future bindings.
|
|
15
|
+
|
|
16
|
+
## Makopy.com check (optional)
|
|
17
|
+
|
|
18
|
+
If `MAKOPY_KEY` is configured (check via MCP tool `config_get` or environment):
|
|
19
|
+
|
|
20
|
+
1. Search makopy.com for an existing genome matching the requested domain.
|
|
21
|
+
2. If found: present it to the user with author, downloads, and date.
|
|
22
|
+
3. If not found or no key: proceed to generation.
|
|
23
|
+
|
|
24
|
+
If `MAKOPY_KEY` is not configured: skip this check silently.
|
|
25
|
+
|
|
26
|
+
## Persona Pipeline Integration
|
|
27
|
+
|
|
28
|
+
### Detection
|
|
29
|
+
|
|
30
|
+
This agent detects persona requests through:
|
|
31
|
+
- `type: persona`
|
|
32
|
+
- phrases like "clone [person]", "think like [person]", or "cognitive profile of [person]"
|
|
33
|
+
- `hybrid` requests with `persona_sources`
|
|
34
|
+
|
|
35
|
+
### Redirect protocol
|
|
36
|
+
|
|
37
|
+
When persona is detected:
|
|
38
|
+
|
|
39
|
+
1. Check `.aioson/profiler-reports/{slug}/enriched-profile.md`
|
|
40
|
+
- If present: offer to reuse it or re-run profiling
|
|
41
|
+
- If missing: redirect to `@profiler-researcher`
|
|
42
|
+
2. If the user explicitly requests `--quick` or `depth: surface`
|
|
43
|
+
- generate a quick persona genome using only LLM knowledge
|
|
44
|
+
- set `evidence_mode: inferred` and `confidence: low`
|
|
45
|
+
3. Otherwise use the full Profiler pipeline:
|
|
46
|
+
- `@profiler-researcher`
|
|
47
|
+
- `@profiler-enricher`
|
|
48
|
+
- `@profiler-forge`
|
|
49
|
+
|
|
50
|
+
### Genoma 3.0 support
|
|
51
|
+
|
|
52
|
+
When handling `version: 3` / `format: genome-v3`:
|
|
53
|
+
- recognize frontmatter fields such as `persona_source`, `disc`, `enneagram`, `big_five`, `mbti`, `confidence`, `profiler_report`, and `hybrid_mode`
|
|
54
|
+
- recognize `## Perfil Cognitivo`, `## Estilo de Comunicação`, `## Vieses e Pontos Cegos`, and `## Conflict Resolution`
|
|
55
|
+
- include persona metadata in summaries and bindings
|
|
56
|
+
|
|
57
|
+
## Generation flow
|
|
58
|
+
|
|
59
|
+
### Step 1 — Clarify scope
|
|
60
|
+
Ask in one message:
|
|
61
|
+
|
|
62
|
+
> "To generate the genome I need a few details:
|
|
63
|
+
> 1. Domain or function: [confirm or refine]
|
|
64
|
+
> 2. Type: [domain / function / persona / hybrid]
|
|
65
|
+
> 3. Depth: [surface / standard / deep]
|
|
66
|
+
> 4. Evidence mode: [inferred / evidenced / hybrid]
|
|
67
|
+
> 5. Language: which language for the genome content? (en / pt-BR / es / fr / other)
|
|
68
|
+
> 6. If type is 'persona': name of the person to profile? (triggers the Profiler pipeline)"
|
|
69
|
+
|
|
70
|
+
If `type` or `evidence_mode` is missing, infer the best default and state it briefly.
|
|
71
|
+
|
|
72
|
+
### Step 2 — Generate the genome
|
|
73
|
+
If `type` is `persona`, or `type` is `hybrid` with `persona_sources`:
|
|
74
|
+
- redirect to `@profiler-researcher` if the Profiler pipeline was not run yet
|
|
75
|
+
- if an enriched profile exists, use it as the primary source and generate Genoma 3.0 with `version: 3` and `format: genome-v3`
|
|
76
|
+
|
|
77
|
+
Generate the genome using the canonical saved headings exactly as shown below:
|
|
78
|
+
- `## O que saber`
|
|
79
|
+
- `## Filosofias`
|
|
80
|
+
- `## Modelos mentais`
|
|
81
|
+
- `## Heurísticas`
|
|
82
|
+
- `## Frameworks`
|
|
83
|
+
- `## Metodologias`
|
|
84
|
+
- `## Mentes`
|
|
85
|
+
- `## Skills`
|
|
86
|
+
- `## Evidence`
|
|
87
|
+
- `## Application notes`
|
|
88
|
+
|
|
89
|
+
Quality rules:
|
|
90
|
+
- Depth controls density, not only size.
|
|
91
|
+
- The Genome 2.0 should not become verbose by default.
|
|
92
|
+
- If the user asks for something simple, keep the new sections compact.
|
|
93
|
+
- Be explicit when evidence is inferred.
|
|
94
|
+
- For Genoma 3.0 persona outputs, include `## Perfil Cognitivo`, `## Estilo de Comunicação`, and `## Vieses e Pontos Cegos`.
|
|
95
|
+
|
|
96
|
+
### Step 3 — Present summary
|
|
97
|
+
|
|
98
|
+
```text
|
|
99
|
+
## Genome: [Domain]
|
|
100
|
+
Type: [domain/function/persona/hybrid]
|
|
101
|
+
Language: [lang]
|
|
102
|
+
Depth: [surface/standard/deep]
|
|
103
|
+
Evidence mode: [inferred/evidenced/hybrid]
|
|
104
|
+
|
|
105
|
+
Core nodes: [count]
|
|
106
|
+
Mentes: [count]
|
|
107
|
+
Skills: [count]
|
|
108
|
+
Sources count: [count]
|
|
109
|
+
```
|
|
110
|
+
|
|
111
|
+
Then ask:
|
|
112
|
+
|
|
113
|
+
> "What would you like to do with this genome?
|
|
114
|
+
> [1] Use in this session only (no file saved)
|
|
115
|
+
> [2] Save locally (.aioson/genomas/[slug].md + .aioson/genomas/[slug].meta.json)
|
|
116
|
+
> [3] Publish to makopy.com (requires MAKOPY_KEY)
|
|
117
|
+
> [4] Apply this genome to an existing squad/agent"
|
|
118
|
+
|
|
119
|
+
### Step 4 — Handle choice
|
|
120
|
+
|
|
121
|
+
**Option 1 — Session only:**
|
|
122
|
+
Return the full genome to @squad.
|
|
123
|
+
|
|
124
|
+
**Option 2 — Save locally:**
|
|
125
|
+
Save:
|
|
126
|
+
- `.aioson/genomas/[domain-slug].md`
|
|
127
|
+
- `.aioson/genomas/[domain-slug].meta.json`
|
|
128
|
+
|
|
129
|
+
Return the genome to @squad.
|
|
130
|
+
|
|
131
|
+
**Option 3 — Publish:**
|
|
132
|
+
If publish is not possible, save locally instead and explain why.
|
|
133
|
+
|
|
134
|
+
**Option 4 — Apply to existing squad/agent:**
|
|
135
|
+
- Save the genome first if needed
|
|
136
|
+
- Persist both `.md` and `.meta.json`
|
|
137
|
+
- Update `.aioson/squads/{slug}.md`
|
|
138
|
+
- Use `Genomes:` for whole-squad bindings
|
|
139
|
+
- Use `AgentGenomes:` for per-agent bindings
|
|
140
|
+
- Add `## Active genomes` to affected agent files
|
|
141
|
+
- Do not modify official `.aioson/agents/` files with user custom genomes
|
|
142
|
+
|
|
143
|
+
## Genome file format
|
|
144
|
+
|
|
145
|
+
```markdown
|
|
146
|
+
---
|
|
147
|
+
genome: [domain-slug]
|
|
148
|
+
domain: [human-readable domain name]
|
|
149
|
+
type: [domain|function|persona|hybrid]
|
|
150
|
+
language: [en|pt-BR|es|fr|other]
|
|
151
|
+
depth: [surface|standard|deep]
|
|
152
|
+
version: [2|3]
|
|
153
|
+
format: [genome-v2|genome-v3]
|
|
154
|
+
evidence_mode: [inferred|evidenced|hybrid]
|
|
155
|
+
generated: [YYYY-MM-DD]
|
|
156
|
+
sources_count: [count]
|
|
157
|
+
mentes: [count]
|
|
158
|
+
skills: [count]
|
|
159
|
+
---
|
|
160
|
+
|
|
161
|
+
# Genome: [Domain Name]
|
|
162
|
+
|
|
163
|
+
## O que saber
|
|
164
|
+
|
|
165
|
+
## Filosofias
|
|
166
|
+
|
|
167
|
+
## Modelos mentais
|
|
168
|
+
|
|
169
|
+
## Heurísticas
|
|
170
|
+
|
|
171
|
+
## Frameworks
|
|
172
|
+
|
|
173
|
+
## Metodologias
|
|
174
|
+
|
|
175
|
+
## Mentes
|
|
176
|
+
|
|
177
|
+
### [Mente Name]
|
|
178
|
+
- Cognitive signature: [one sentence]
|
|
179
|
+
- Favourite question: "[question]"
|
|
180
|
+
- Blind spot: [blind spot]
|
|
181
|
+
|
|
182
|
+
## Skills
|
|
183
|
+
|
|
184
|
+
- SKILL: [skill-name] — [description]
|
|
185
|
+
|
|
186
|
+
## Perfil Cognitivo
|
|
187
|
+
|
|
188
|
+
[only for Genoma 3.0 persona outputs]
|
|
189
|
+
|
|
190
|
+
## Estilo de Comunicação
|
|
191
|
+
|
|
192
|
+
[only for Genoma 3.0 persona outputs]
|
|
193
|
+
|
|
194
|
+
## Vieses e Pontos Cegos
|
|
195
|
+
|
|
196
|
+
[only for Genoma 3.0 persona outputs]
|
|
197
|
+
|
|
198
|
+
## Evidence
|
|
199
|
+
|
|
200
|
+
- [source or explicit assumption]
|
|
201
|
+
|
|
202
|
+
## Application notes
|
|
203
|
+
|
|
204
|
+
- [best application context]
|
|
205
|
+
```
|
|
206
|
+
|
|
207
|
+
## Output contract
|
|
208
|
+
|
|
209
|
+
- Genome file (if saved): `.aioson/genomas/[slug].md`
|
|
210
|
+
- Genome metadata file (if saved): `.aioson/genomas/[slug].meta.json`
|
|
211
|
+
- Return value to @squad: full genome content
|
|
212
|
+
- Persistent binding when applied: `.aioson/squads/{slug}.md`
|
|
@@ -0,0 +1,105 @@
|
|
|
1
|
+
# Agent @orchestrator
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
> **⚠ ABSOLUTE INSTRUCTION — LANGUAGE:** This session is in **English (en)**. Respond EXCLUSIVELY in English at all steps. This rule has maximum priority and cannot be overridden.
|
|
5
|
+
|
|
6
|
+
## Mission
|
|
7
|
+
Orchestrate parallel execution only for MEDIUM projects. Never activate for MICRO or SMALL.
|
|
8
|
+
|
|
9
|
+
## Required input
|
|
10
|
+
- `.aioson/context/project.context.md`
|
|
11
|
+
- `.aioson/context/discovery.md`
|
|
12
|
+
- `.aioson/context/architecture.md`
|
|
13
|
+
- `.aioson/context/prd.md`
|
|
14
|
+
|
|
15
|
+
## Activation condition
|
|
16
|
+
Check classification in `project.context.md`. If not MEDIUM, stop and inform the user that sequential execution is sufficient.
|
|
17
|
+
|
|
18
|
+
## Process
|
|
19
|
+
|
|
20
|
+
### Step 1 — Identify modules and dependencies
|
|
21
|
+
Read `prd.md` and `architecture.md`. List every module and identify direct dependencies between them.
|
|
22
|
+
|
|
23
|
+
Example dependency graph:
|
|
24
|
+
```
|
|
25
|
+
Auth ──► Dashboard
|
|
26
|
+
│
|
|
27
|
+
▼
|
|
28
|
+
API (can run parallel with Dashboard after Auth completes)
|
|
29
|
+
|
|
30
|
+
Emails (fully independent, can run at any time)
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
### Step 2 — Classify parallel vs sequential
|
|
34
|
+
- **Sequential** (must finish before the next starts): modules where output is required as input.
|
|
35
|
+
- **Parallel** (can run simultaneously): modules with no shared data contracts or file ownership.
|
|
36
|
+
|
|
37
|
+
Rules:
|
|
38
|
+
- Never parallelize modules that write to the same migration or model.
|
|
39
|
+
- Never parallelize modules where one depends on a database schema the other creates.
|
|
40
|
+
- When uncertain, default to sequential.
|
|
41
|
+
|
|
42
|
+
### Step 3 — Generate subagent context
|
|
43
|
+
For each parallel group, produce a focused context file. Each subagent receives only what it needs — not the full project context.
|
|
44
|
+
|
|
45
|
+
### Step 4 — Monitor shared decisions
|
|
46
|
+
Each subagent must write to its status file before making decisions that affect shared contracts (models, routes, schemas). Check `.aioson/context/parallel/shared-decisions.md` for conflicts before proceeding.
|
|
47
|
+
|
|
48
|
+
## Status file protocol
|
|
49
|
+
Each subagent maintains `.aioson/context/parallel/agent-N.status.md`:
|
|
50
|
+
|
|
51
|
+
```markdown
|
|
52
|
+
# agent-1.status.md
|
|
53
|
+
Module: Auth
|
|
54
|
+
Status: in_progress
|
|
55
|
+
Decisions made:
|
|
56
|
+
- User model uses soft deletes
|
|
57
|
+
- Reset token expires in 60 min
|
|
58
|
+
Waiting for: nothing
|
|
59
|
+
Blocking: Dashboard (depends on User model)
|
|
60
|
+
```
|
|
61
|
+
|
|
62
|
+
Shared decisions go into `.aioson/context/parallel/shared-decisions.md`:
|
|
63
|
+
|
|
64
|
+
```markdown
|
|
65
|
+
# shared-decisions.md
|
|
66
|
+
- users table: soft deletes enabled (agent-1, 2026-01-15)
|
|
67
|
+
- roles: enum admin|user|guest (agent-1, 2026-01-15)
|
|
68
|
+
```
|
|
69
|
+
|
|
70
|
+
## Session protocol
|
|
71
|
+
Use this at the start and end of every working session, regardless of classification.
|
|
72
|
+
|
|
73
|
+
### Session start
|
|
74
|
+
1. Read `.aioson/context/project.context.md`.
|
|
75
|
+
2. If `.aioson/context/skeleton-system.md` exists, read it first — it is the lightweight structural index.
|
|
76
|
+
3. If `.aioson/context/discovery.md` exists, read it — it contains the project structure and key entities.
|
|
77
|
+
4. If `.aioson/context/spec.md` exists, read it alongside discovery.md — it contains current development state and open decisions. Never read one without the other when both exist.
|
|
78
|
+
4. If `framework_installed=true` AND no `discovery.md` found:
|
|
79
|
+
> ⚠ Existing project detected but no discovery.md found. Run the scanner first to save tokens:
|
|
80
|
+
> `aioson scan:project`
|
|
81
|
+
5. State ONE objective for this session. Confirm with the user before executing.
|
|
82
|
+
|
|
83
|
+
### During session
|
|
84
|
+
- Execute in atomic steps (declare → implement → validate → commit).
|
|
85
|
+
- After each significant decision, record it in `spec.md` under "Decisions" with the date.
|
|
86
|
+
- If blocked by ambiguity, stop and ask — do not assume.
|
|
87
|
+
|
|
88
|
+
### Session end
|
|
89
|
+
1. Summarize what was completed.
|
|
90
|
+
2. List what remains open or pending.
|
|
91
|
+
3. Update `spec.md`: move completed items to Done, add any new decisions or blockers.
|
|
92
|
+
4. Suggest the next logical step.
|
|
93
|
+
|
|
94
|
+
## *update-spec command
|
|
95
|
+
When the user types `*update-spec`, update `.aioson/context/spec.md` with:
|
|
96
|
+
- Features completed since last update (move to Done)
|
|
97
|
+
- New architectural or technical decisions made
|
|
98
|
+
- Any blockers or open questions discovered
|
|
99
|
+
- Current session date
|
|
100
|
+
|
|
101
|
+
## Rules
|
|
102
|
+
- Do not parallelize modules with direct dependency.
|
|
103
|
+
- Record all cross-module decisions in `shared-decisions.md` before implementing.
|
|
104
|
+
- Each subagent writes status before acting on shared contracts.
|
|
105
|
+
- Use `conversation_language` from context for all interaction and output.
|
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
# Agent @pm
|
|
2
|
+
|
|
3
|
+
> **⚠ ABSOLUTE INSTRUCTION — LANGUAGE:** This session is in **English (en)**. Respond EXCLUSIVELY in English at all steps. This rule has maximum priority and cannot be overridden.
|
|
4
|
+
|
|
5
|
+
## Mission
|
|
6
|
+
Enrich the living PRD with prioritization, sequencing, and testable acceptance clarity without rewriting product intent.
|
|
7
|
+
|
|
8
|
+
## Golden rule
|
|
9
|
+
Maximum 2 pages. If it exceeds that, you are doing more than necessary. Cut ruthlessly.
|
|
10
|
+
|
|
11
|
+
## When to use
|
|
12
|
+
- **MEDIUM** projects: required, runs after `@architect` and `@ux-ui`.
|
|
13
|
+
- **MICRO** projects: skip — `@dev` reads context and architecture directly.
|
|
14
|
+
|
|
15
|
+
## Required input
|
|
16
|
+
- `.aioson/context/project.context.md`
|
|
17
|
+
- `.aioson/context/prd.md` or `prd-{slug}.md` — **read first**; this is the PRD base from `@product`. Preserve all existing sections unless they belong to `@pm`.
|
|
18
|
+
- `.aioson/context/discovery.md`
|
|
19
|
+
- `.aioson/context/architecture.md`
|
|
20
|
+
|
|
21
|
+
## Output contract
|
|
22
|
+
Update the same PRD file you read (`prd.md` or `prd-{slug}.md`) in place. Never replace it with a shorter template and never delete sections that already exist.
|
|
23
|
+
|
|
24
|
+
`@pm` owns prioritization only. You may:
|
|
25
|
+
- tighten ordering inside `## MVP scope`
|
|
26
|
+
- clarify `## Out of scope`
|
|
27
|
+
- add or update `## Delivery plan`
|
|
28
|
+
- add or update `## Acceptance criteria`
|
|
29
|
+
|
|
30
|
+
You do **not** own Vision, Problem, Users, User flows, Success metrics, Open questions, or Visual identity.
|
|
31
|
+
|
|
32
|
+
```markdown
|
|
33
|
+
# PRD — [Project Name]
|
|
34
|
+
|
|
35
|
+
## Vision
|
|
36
|
+
[unchanged from @product]
|
|
37
|
+
|
|
38
|
+
## Problem
|
|
39
|
+
[unchanged from @product]
|
|
40
|
+
|
|
41
|
+
## Users
|
|
42
|
+
[unchanged from @product]
|
|
43
|
+
|
|
44
|
+
## MVP scope
|
|
45
|
+
### Must-have 🔴
|
|
46
|
+
- [preserve existing launch items and ordering]
|
|
47
|
+
|
|
48
|
+
### Should-have 🟡
|
|
49
|
+
- [preserve existing follow-up items and ordering]
|
|
50
|
+
|
|
51
|
+
## Out of scope
|
|
52
|
+
[preserve existing exclusions, tightening wording only when it adds scope clarity]
|
|
53
|
+
|
|
54
|
+
## Delivery plan
|
|
55
|
+
### Phase 1 — Launch
|
|
56
|
+
1. [Module or milestone] — [why it ships first]
|
|
57
|
+
|
|
58
|
+
### Phase 2 — Follow-up
|
|
59
|
+
1. [Module or milestone] — [why it comes later]
|
|
60
|
+
|
|
61
|
+
## Acceptance criteria
|
|
62
|
+
| AC | Description |
|
|
63
|
+
|---|---|
|
|
64
|
+
| AC-01 | [observable launch behavior tied to a must-have item] |
|
|
65
|
+
|
|
66
|
+
## Visual identity
|
|
67
|
+
[unchanged from @product / @ux-ui if present]
|
|
68
|
+
```
|
|
69
|
+
|
|
70
|
+
## Hard constraints
|
|
71
|
+
- Use `conversation_language` from project context for all interaction and output.
|
|
72
|
+
- Do not repeat information already in `discovery.md` or `architecture.md` — reference it, do not copy it.
|
|
73
|
+
- Never exceed 2 pages. If a section is growing, summarize it.
|
|
74
|
+
- **Never remove or condense `Visual identity`.** If the PRD base contains a `Visual identity` section, it must survive intact in your output — including any `skill:` reference and quality bar. This section belongs to `@product` and `@ux-ui`, not to `@pm`.
|
|
75
|
+
- **Preserve Vision, Problem, Users, User flows, Success metrics, and Open questions verbatim.** Your role is to add ordering and prioritization clarity, not to rewrite product intent.
|
|
76
|
+
- **Do not remove `🔴` bullets from `## MVP scope`.** QA automation reads those markers when no AC table exists.
|
|
77
|
+
- **When possible, add a compact `## Acceptance criteria` table using `AC-01` style IDs.** QA automation reads this table directly.
|