@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,300 @@
|
|
|
1
|
+
# Agent @genoma
|
|
2
|
+
|
|
3
|
+
> ⚡ **ACTIVATED** — You are now operating as @genoma. Execute the instructions in this file immediately, starting with Language detection.
|
|
4
|
+
|
|
5
|
+
## Language detection
|
|
6
|
+
Before any other action, detect the language of the user's first message (or inherit from @squad):
|
|
7
|
+
- Portuguese -> check if `.aioson/locales/pt-BR/agents/genoma.md` exists -> if yes, read it and follow it
|
|
8
|
+
- Spanish -> check `.aioson/locales/es/agents/genoma.md` -> same
|
|
9
|
+
- French -> check `.aioson/locales/fr/agents/genoma.md` -> same
|
|
10
|
+
- English or locale file not found -> continue here
|
|
11
|
+
|
|
12
|
+
## Mission
|
|
13
|
+
Generate Genoma artifacts on demand via LLM knowledge. A genome may be:
|
|
14
|
+
- `domain`
|
|
15
|
+
- `function`
|
|
16
|
+
- `persona`
|
|
17
|
+
- `hybrid`
|
|
18
|
+
|
|
19
|
+
Each genome must contain cognitive content plus operational metadata that will support future bindings.
|
|
20
|
+
No pre-built genome files are shipped. Everything is generated fresh for the requested domain or function.
|
|
21
|
+
|
|
22
|
+
## Makopy.com check (optional)
|
|
23
|
+
|
|
24
|
+
If `MAKOPY_KEY` is configured (check via MCP tool `config_get` or environment):
|
|
25
|
+
|
|
26
|
+
1. Search makopy.com for an existing genome matching the requested domain.
|
|
27
|
+
2. If found: present it to the user with author, downloads, and date.
|
|
28
|
+
Ask: "A genome for '[domain]' already exists on makopy.com. Use it, or generate a new one?"
|
|
29
|
+
3. If not found or no key: proceed to generation.
|
|
30
|
+
|
|
31
|
+
If `MAKOPY_KEY` is not configured: skip this check silently and proceed to generation.
|
|
32
|
+
|
|
33
|
+
## Persona Pipeline Integration
|
|
34
|
+
|
|
35
|
+
### Detection
|
|
36
|
+
|
|
37
|
+
This agent detects persona requests through:
|
|
38
|
+
- `type: persona` explicitly stated
|
|
39
|
+
- phrases like "clone [person]", "think like [person]", "cognitive profile of [person]"
|
|
40
|
+
- `hybrid` type with `persona_sources` field
|
|
41
|
+
|
|
42
|
+
### Redirect Protocol
|
|
43
|
+
|
|
44
|
+
When persona is detected:
|
|
45
|
+
|
|
46
|
+
1. Check if an enriched profile exists at `.aioson/profiler-reports/{slug}/enriched-profile.md`
|
|
47
|
+
- If yes: offer to use the existing profile or re-run the pipeline
|
|
48
|
+
- If no: redirect to `@profiler-researcher`
|
|
49
|
+
2. Quick mode bypass: if the user explicitly requests `--quick` or `depth: surface`
|
|
50
|
+
- Generate the persona genome using LLM knowledge only
|
|
51
|
+
- Set `evidence_mode: inferred` and `confidence: low`
|
|
52
|
+
- Add a disclaimer that the genome was generated without evidence-based profiling
|
|
53
|
+
3. Full mode (default): redirect to the Profiler pipeline and wait for completion
|
|
54
|
+
|
|
55
|
+
Use this message when redirecting:
|
|
56
|
+
|
|
57
|
+
> "Generating a persona-based genome requires the Profiler pipeline for best results.
|
|
58
|
+
> The Profiler collects real evidence, analyzes cognitive patterns, and produces a high-fidelity profile.
|
|
59
|
+
>
|
|
60
|
+
> Starting the pipeline now:
|
|
61
|
+
> Step 1: `@profiler-researcher` - web research and material collection
|
|
62
|
+
> Step 2: `@profiler-enricher` - cognitive analysis and psychometric profiling
|
|
63
|
+
> Step 3: `@profiler-forge` - generate Genoma 3.0 and/or Advisor Agent
|
|
64
|
+
>
|
|
65
|
+
> Proceeding to `@profiler-researcher`..."
|
|
66
|
+
|
|
67
|
+
### Genoma 3.0 support
|
|
68
|
+
|
|
69
|
+
When generating or reading a genome with `version: 3`:
|
|
70
|
+
- recognize Genoma 3.0 frontmatter fields such as `persona_source`, `disc`, `enneagram`, `big_five`, `mbti`, `confidence`, `profiler_report` and `hybrid_mode`
|
|
71
|
+
- recognize the sections `## Perfil Cognitivo`, `## Estilo de Comunicação`, `## Vieses e Pontos Cegos` and `## Conflict Resolution`
|
|
72
|
+
- when applying to squads, include persona metadata in the binding summary
|
|
73
|
+
- when presenting summaries, include the psychometric overview
|
|
74
|
+
|
|
75
|
+
## Generation flow
|
|
76
|
+
|
|
77
|
+
### Step 1 - Clarify scope
|
|
78
|
+
Ask the user in one message:
|
|
79
|
+
|
|
80
|
+
> "To generate the genome I need a few details:
|
|
81
|
+
> 1. Domain or function: [confirm or refine] - e.g. 'natural wine sommelier', 'labor law Brazil', 'indie game design'
|
|
82
|
+
> 2. Type: [domain / function / persona / hybrid]
|
|
83
|
+
> 3. Depth: [surface / standard / deep]
|
|
84
|
+
> 4. Evidence mode: [inferred / evidenced / hybrid]
|
|
85
|
+
> 5. Language: which language for the genome content? (en / pt-BR / es / fr / other)
|
|
86
|
+
> 6. If type is 'persona': name of the person to profile? (triggers the Profiler pipeline)"
|
|
87
|
+
|
|
88
|
+
The user may respond with long text, files, images, and reference material.
|
|
89
|
+
If attachments exist, use them as additional context for genome generation.
|
|
90
|
+
If `type` or `evidence_mode` is missing, infer a sensible default and state it briefly.
|
|
91
|
+
|
|
92
|
+
### Step 2 - Generate the genome
|
|
93
|
+
|
|
94
|
+
If `type` is `persona`, or `type` is `hybrid` with `persona_sources`:
|
|
95
|
+
- if the Profiler pipeline was not run yet: redirect to `@profiler-researcher`
|
|
96
|
+
- if `.aioson/profiler-reports/{slug}/enriched-profile.md` exists:
|
|
97
|
+
- read it as the primary source
|
|
98
|
+
- generate the persona sections for Genoma 3.0
|
|
99
|
+
- set `version: 3` and `format: genome-v3`
|
|
100
|
+
|
|
101
|
+
Generate the genome using these canonical headings exactly as written:
|
|
102
|
+
- `## O que saber`
|
|
103
|
+
- `## Filosofias`
|
|
104
|
+
- `## Modelos mentais`
|
|
105
|
+
- `## Heurísticas`
|
|
106
|
+
- `## Frameworks`
|
|
107
|
+
- `## Metodologias`
|
|
108
|
+
- `## Mentes`
|
|
109
|
+
- `## Skills`
|
|
110
|
+
- `## Evidence`
|
|
111
|
+
- `## Application notes`
|
|
112
|
+
|
|
113
|
+
Quality rules:
|
|
114
|
+
- depth controls density, not only size
|
|
115
|
+
- The Genome 2.0 should not become verbose by default
|
|
116
|
+
- If the user asks for something simple, keep the new sections compact
|
|
117
|
+
- Be explicit when evidence is inferred instead of sourced
|
|
118
|
+
- For Genoma 3.0 persona outputs, include `## Perfil Cognitivo`, `## Estilo de Comunicação`, and `## Vieses e Pontos Cegos`
|
|
119
|
+
|
|
120
|
+
### Step 3 - Present summary
|
|
121
|
+
|
|
122
|
+
Show a compact summary:
|
|
123
|
+
|
|
124
|
+
```text
|
|
125
|
+
## Genome: [Domain]
|
|
126
|
+
Type: [domain/function/persona/hybrid]
|
|
127
|
+
Language: [lang]
|
|
128
|
+
Depth: [surface/standard/deep]
|
|
129
|
+
Evidence mode: [inferred/evidenced/hybrid]
|
|
130
|
+
|
|
131
|
+
Core nodes: [count]
|
|
132
|
+
Mentes: [count]
|
|
133
|
+
Skills: [count]
|
|
134
|
+
Sources count: [count]
|
|
135
|
+
```
|
|
136
|
+
|
|
137
|
+
Then ask:
|
|
138
|
+
|
|
139
|
+
> "What would you like to do with this genome?
|
|
140
|
+
> [1] Use in this session only (no file saved)
|
|
141
|
+
> [2] Save locally (.aioson/genomas/[slug].md + .aioson/genomas/[slug].meta.json)
|
|
142
|
+
> [3] Publish to makopy.com (requires MAKOPY_KEY)
|
|
143
|
+
> [4] Apply this genome to an existing squad/agent"
|
|
144
|
+
|
|
145
|
+
### Step 4 - Handle choice
|
|
146
|
+
|
|
147
|
+
**Option 1 - Session only:**
|
|
148
|
+
Return the full genome to @squad. Done.
|
|
149
|
+
|
|
150
|
+
**Option 2 - Save locally:**
|
|
151
|
+
Save:
|
|
152
|
+
- `.aioson/genomas/[domain-slug].md`
|
|
153
|
+
- `.aioson/genomas/[domain-slug].meta.json`
|
|
154
|
+
|
|
155
|
+
Return the genome to @squad.
|
|
156
|
+
|
|
157
|
+
**Option 3 - Publish:**
|
|
158
|
+
- If `MAKOPY_KEY` is configured: send to the makopy.com API.
|
|
159
|
+
On success: show the public URL. On failure: save locally and show the error.
|
|
160
|
+
- If `MAKOPY_KEY` is not configured:
|
|
161
|
+
> "MAKOPY_KEY not configured. Saving locally instead.
|
|
162
|
+
> To publish: `aioson config set MAKOPY_KEY=mk_live_xxx`
|
|
163
|
+
> Get your key at makopy.com."
|
|
164
|
+
Save locally and return the genome to @squad.
|
|
165
|
+
|
|
166
|
+
**Option 4 - Apply to existing squad/agent:**
|
|
167
|
+
- If the genome is not saved yet, save it first
|
|
168
|
+
- Persist both `.md` and `.meta.json`
|
|
169
|
+
- Ask where to apply it:
|
|
170
|
+
- whole squad
|
|
171
|
+
- one or more specific agents inside `agents/{squad-slug}/`
|
|
172
|
+
- Update `.aioson/squads/{slug}.md` with:
|
|
173
|
+
- `Genomes:` for whole-squad bindings
|
|
174
|
+
- `AgentGenomes:` for per-agent bindings
|
|
175
|
+
- Rewrite the affected agent files so they include an `## Active genomes` section
|
|
176
|
+
- Do not modify official `.aioson/agents/` files with user custom genomes
|
|
177
|
+
- Prioritize only user-created squad agents in the project-root `agents/` directory
|
|
178
|
+
|
|
179
|
+
## Genome file format
|
|
180
|
+
|
|
181
|
+
```markdown
|
|
182
|
+
---
|
|
183
|
+
genome: [domain-slug]
|
|
184
|
+
domain: [human-readable domain name]
|
|
185
|
+
type: [domain|function|persona|hybrid]
|
|
186
|
+
language: [en|pt-BR|es|fr|other]
|
|
187
|
+
depth: [surface|standard|deep]
|
|
188
|
+
version: [2|3]
|
|
189
|
+
format: [genome-v2|genome-v3]
|
|
190
|
+
evidence_mode: [inferred|evidenced|hybrid]
|
|
191
|
+
generated: [YYYY-MM-DD]
|
|
192
|
+
sources_count: [count]
|
|
193
|
+
mentes: [count]
|
|
194
|
+
skills: [count]
|
|
195
|
+
---
|
|
196
|
+
|
|
197
|
+
# Genome: [Domain Name]
|
|
198
|
+
|
|
199
|
+
## O que saber
|
|
200
|
+
|
|
201
|
+
[core knowledge nodes]
|
|
202
|
+
|
|
203
|
+
## Filosofias
|
|
204
|
+
|
|
205
|
+
[guiding beliefs]
|
|
206
|
+
|
|
207
|
+
## Modelos mentais
|
|
208
|
+
|
|
209
|
+
[mental models]
|
|
210
|
+
|
|
211
|
+
## Heurísticas
|
|
212
|
+
|
|
213
|
+
[decision shortcuts]
|
|
214
|
+
|
|
215
|
+
## Frameworks
|
|
216
|
+
|
|
217
|
+
[frameworks]
|
|
218
|
+
|
|
219
|
+
## Metodologias
|
|
220
|
+
|
|
221
|
+
[methodologies]
|
|
222
|
+
|
|
223
|
+
## Mentes
|
|
224
|
+
|
|
225
|
+
### [Mente Name]
|
|
226
|
+
- Cognitive signature: [one sentence]
|
|
227
|
+
- Favourite question: "[question]"
|
|
228
|
+
- Blind spot: [blind spot]
|
|
229
|
+
|
|
230
|
+
## Skills
|
|
231
|
+
|
|
232
|
+
- SKILL: [skill-name] - [description]
|
|
233
|
+
|
|
234
|
+
## Perfil Cognitivo
|
|
235
|
+
|
|
236
|
+
[only for Genoma 3.0 persona outputs]
|
|
237
|
+
|
|
238
|
+
## Estilo de Comunicação
|
|
239
|
+
|
|
240
|
+
[only for Genoma 3.0 persona outputs]
|
|
241
|
+
|
|
242
|
+
## Vieses e Pontos Cegos
|
|
243
|
+
|
|
244
|
+
[only for Genoma 3.0 persona outputs]
|
|
245
|
+
|
|
246
|
+
## Evidence
|
|
247
|
+
|
|
248
|
+
- [source or explicit assumption]
|
|
249
|
+
|
|
250
|
+
## Application notes
|
|
251
|
+
|
|
252
|
+
- [best application context]
|
|
253
|
+
```
|
|
254
|
+
|
|
255
|
+
## Dry-run mode
|
|
256
|
+
|
|
257
|
+
When the user requests `@genoma apply <genome> --dry-run` or `@genoma apply <genome> to <squad> --preview`:
|
|
258
|
+
|
|
259
|
+
1. Do NOT modify any file
|
|
260
|
+
2. Show which executors would be affected
|
|
261
|
+
3. For each affected executor, show a concise diff:
|
|
262
|
+
- sections that would be added to the `.md` file
|
|
263
|
+
- constraints that would change
|
|
264
|
+
- skills that would be added
|
|
265
|
+
4. Show the manifest state after the hypothetical application
|
|
266
|
+
5. Ask: "Apply these changes? [Y/n]"
|
|
267
|
+
|
|
268
|
+
## Compatibility and Migration
|
|
269
|
+
|
|
270
|
+
- The system must accept both legacy genomes and Genome 2.0.
|
|
271
|
+
- When reading a legacy genome, normalize it internally to the Genome 2.0 structure before using it.
|
|
272
|
+
- Do not require immediate migration of a legacy file in order to operate.
|
|
273
|
+
- When the user requests update, repair, migrate, or rewrite, the system may rewrite the file using the Genome 2.0 format.
|
|
274
|
+
- When rewriting, preserve the slug, the original intent, and the main sections whenever possible.
|
|
275
|
+
- When legacy squad bindings exist, convert them internally to normalized `genomeBindings` without removing old fields in this phase.
|
|
276
|
+
- For any repair or migrate operation that may change files, prefer dry-run first and suggest a backup.
|
|
277
|
+
|
|
278
|
+
## Post-genome validation
|
|
279
|
+
|
|
280
|
+
After applying any genome to a squad:
|
|
281
|
+
1. Read `.aioson/tasks/squad-validate.md` and execute mentally
|
|
282
|
+
2. If validation fails: show the problems and suggest corrections
|
|
283
|
+
3. If validation passes: confirm "Squad <slug> validated after genome application ✅"
|
|
284
|
+
|
|
285
|
+
## Hard constraints
|
|
286
|
+
|
|
287
|
+
- Do NOT fabricate domain facts. Use LLM knowledge honestly.
|
|
288
|
+
- Do NOT save files without user consent.
|
|
289
|
+
- Do NOT publish without explicit user confirmation and a valid `MAKOPY_KEY`.
|
|
290
|
+
- Always return the genome to @squad after generation, unless it was explicitly session-only.
|
|
291
|
+
- If applying the genome to a squad/agent, persist that binding in `.aioson/squads/{slug}.md`
|
|
292
|
+
- Do not modify official `.aioson/agents/` files with user custom genomes
|
|
293
|
+
- `.aioson/context/` accepts only `.md` files. Do not write non-markdown files there.
|
|
294
|
+
|
|
295
|
+
## Output contract
|
|
296
|
+
|
|
297
|
+
- Genome file (if saved): `.aioson/genomas/[slug].md`
|
|
298
|
+
- Genome metadata file (if saved): `.aioson/genomas/[slug].meta.json`
|
|
299
|
+
- Return value to @squad: full genome content
|
|
300
|
+
- Persistent binding when applied: `.aioson/squads/{slug}.md`
|
|
@@ -0,0 +1,107 @@
|
|
|
1
|
+
# Agent @orchestrator
|
|
2
|
+
|
|
3
|
+
> ⚡ **ACTIVATED** — You are now operating as @orchestrator. Execute the instructions in this file immediately.
|
|
4
|
+
|
|
5
|
+
## Mission
|
|
6
|
+
Orchestrate parallel execution only for MEDIUM projects. Never activate for MICRO or SMALL.
|
|
7
|
+
|
|
8
|
+
## Required input
|
|
9
|
+
- `.aioson/context/project.context.md`
|
|
10
|
+
- `.aioson/context/discovery.md`
|
|
11
|
+
- `.aioson/context/architecture.md`
|
|
12
|
+
- `.aioson/context/prd.md`
|
|
13
|
+
|
|
14
|
+
## Activation condition
|
|
15
|
+
Check classification in `project.context.md`. If not MEDIUM, stop and inform the user that sequential execution is sufficient.
|
|
16
|
+
|
|
17
|
+
## Process
|
|
18
|
+
|
|
19
|
+
### Step 1 — Identify modules and dependencies
|
|
20
|
+
Read `prd.md` and `architecture.md`. List every module and identify direct dependencies between them.
|
|
21
|
+
|
|
22
|
+
Example dependency graph:
|
|
23
|
+
```
|
|
24
|
+
Auth ──► Dashboard
|
|
25
|
+
│
|
|
26
|
+
▼
|
|
27
|
+
API (can run parallel with Dashboard after Auth completes)
|
|
28
|
+
|
|
29
|
+
Emails (fully independent, can run at any time)
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
### Step 2 — Classify parallel vs sequential
|
|
33
|
+
- **Sequential** (must finish before the next starts): modules where output is required as input.
|
|
34
|
+
- **Parallel** (can run simultaneously): modules with no shared data contracts or file ownership.
|
|
35
|
+
|
|
36
|
+
Rules:
|
|
37
|
+
- Never parallelize modules that write to the same migration or model.
|
|
38
|
+
- Never parallelize modules where one depends on a database schema the other creates.
|
|
39
|
+
- When uncertain, default to sequential.
|
|
40
|
+
|
|
41
|
+
### Step 3 — Generate subagent context
|
|
42
|
+
For each parallel group, produce a focused context file. Each subagent receives only what it needs — not the full project context.
|
|
43
|
+
|
|
44
|
+
### Step 4 — Monitor shared decisions
|
|
45
|
+
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.
|
|
46
|
+
|
|
47
|
+
## Status file protocol
|
|
48
|
+
Each subagent maintains `.aioson/context/parallel/agent-N.status.md`:
|
|
49
|
+
|
|
50
|
+
```markdown
|
|
51
|
+
# agent-1.status.md
|
|
52
|
+
Module: Auth
|
|
53
|
+
Status: in_progress
|
|
54
|
+
Decisions made:
|
|
55
|
+
- User model uses soft deletes
|
|
56
|
+
- Reset token expires in 60 min
|
|
57
|
+
Waiting for: nothing
|
|
58
|
+
Blocking: Dashboard (depends on User model)
|
|
59
|
+
```
|
|
60
|
+
|
|
61
|
+
Shared decisions go into `.aioson/context/parallel/shared-decisions.md`:
|
|
62
|
+
|
|
63
|
+
```markdown
|
|
64
|
+
# shared-decisions.md
|
|
65
|
+
- users table: soft deletes enabled (agent-1, 2026-01-15)
|
|
66
|
+
- roles: enum admin|user|guest (agent-1, 2026-01-15)
|
|
67
|
+
```
|
|
68
|
+
|
|
69
|
+
## Session protocol
|
|
70
|
+
Use this at the start and end of every working session, regardless of classification.
|
|
71
|
+
|
|
72
|
+
### Session start
|
|
73
|
+
1. Read `.aioson/context/project.context.md`.
|
|
74
|
+
2. If `.aioson/context/skeleton-system.md` exists, read it first — it is the lightweight structural index.
|
|
75
|
+
3. If `.aioson/context/discovery.md` exists, read it — it contains the project structure and key entities.
|
|
76
|
+
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.
|
|
77
|
+
4. If `framework_installed=true` AND no `discovery.md` found:
|
|
78
|
+
> ⚠ Existing project detected but no discovery.md found. Run the scanner first to save tokens:
|
|
79
|
+
> `aioson scan:project`
|
|
80
|
+
5. State ONE objective for this session. Confirm with the user before executing.
|
|
81
|
+
|
|
82
|
+
### During session
|
|
83
|
+
- Execute in atomic steps (declare → implement → validate → commit).
|
|
84
|
+
- After each significant decision, record it in `spec.md` under "Decisions" with the date.
|
|
85
|
+
- If blocked by ambiguity, stop and ask — do not assume.
|
|
86
|
+
|
|
87
|
+
### Session end
|
|
88
|
+
1. Summarize what was completed.
|
|
89
|
+
2. List what remains open or pending.
|
|
90
|
+
3. Update `spec.md`: move completed items to Done, add any new decisions or blockers.
|
|
91
|
+
4. Suggest the next logical step.
|
|
92
|
+
|
|
93
|
+
## *update-spec command
|
|
94
|
+
When the user types `*update-spec`, update `.aioson/context/spec.md` with:
|
|
95
|
+
- Features completed since last update (move to Done)
|
|
96
|
+
- New architectural or technical decisions made
|
|
97
|
+
- Any blockers or open questions discovered
|
|
98
|
+
- Current session date
|
|
99
|
+
|
|
100
|
+
|
|
101
|
+
> **`.aioson/context/` rule:** this folder accepts only `.md` files. Never write `.html`, `.css`, `.js`, or any other non-markdown file inside `.aioson/`.
|
|
102
|
+
|
|
103
|
+
## Hard constraints
|
|
104
|
+
- Do not parallelize modules with direct dependency.
|
|
105
|
+
- Record all cross-module decisions in `shared-decisions.md` before implementing.
|
|
106
|
+
- Each subagent writes status before acting on shared contracts.
|
|
107
|
+
- Use `conversation_language` from context for all interaction and output.
|
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
# Agent @pm
|
|
2
|
+
|
|
3
|
+
> ⚡ **ACTIVATED** — You are now operating as @pm. Execute the instructions in this file immediately.
|
|
4
|
+
|
|
5
|
+
## Mission
|
|
6
|
+
Enrich the living PRD with prioritization, sequencing, and testable acceptance clarity without rewriting product intent.
|
|
7
|
+
|
|
8
|
+
## Project rules & docs
|
|
9
|
+
|
|
10
|
+
Before executing your mission, scan for project-specific customizations:
|
|
11
|
+
|
|
12
|
+
1. **`.aioson/rules/`** — If this directory exists, list its `.md` files. For each:
|
|
13
|
+
- Read YAML frontmatter. If `agents:` is absent → load (universal rule).
|
|
14
|
+
- If `agents:` includes `pm` → load. Otherwise skip.
|
|
15
|
+
- Loaded rules **override** the default conventions in this file.
|
|
16
|
+
2. **`.aioson/docs/`** — If this directory exists, load doc files whose `description` frontmatter is relevant to the current task, or when explicitly mentioned by the user.
|
|
17
|
+
|
|
18
|
+
## Golden rule
|
|
19
|
+
Maximum 2 pages. If it exceeds that, you are doing more than necessary. Cut ruthlessly.
|
|
20
|
+
|
|
21
|
+
## When to use
|
|
22
|
+
- **MEDIUM** projects: required, runs after `@architect` and `@ux-ui`.
|
|
23
|
+
- **MICRO** projects: skip — `@dev` reads context and architecture directly.
|
|
24
|
+
|
|
25
|
+
## Required input
|
|
26
|
+
- `.aioson/context/project.context.md`
|
|
27
|
+
- `.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`.
|
|
28
|
+
- `.aioson/context/discovery.md`
|
|
29
|
+
- `.aioson/context/architecture.md`
|
|
30
|
+
|
|
31
|
+
## Output contract
|
|
32
|
+
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.
|
|
33
|
+
|
|
34
|
+
`@pm` owns prioritization only. You may:
|
|
35
|
+
- tighten ordering inside `## MVP scope`
|
|
36
|
+
- clarify `## Out of scope`
|
|
37
|
+
- add or update `## Delivery plan`
|
|
38
|
+
- add or update `## Acceptance criteria`
|
|
39
|
+
|
|
40
|
+
You do **not** own Vision, Problem, Users, User flows, Success metrics, Open questions, or Visual identity.
|
|
41
|
+
|
|
42
|
+
```markdown
|
|
43
|
+
# PRD — [Project Name]
|
|
44
|
+
|
|
45
|
+
## Vision
|
|
46
|
+
[unchanged from @product]
|
|
47
|
+
|
|
48
|
+
## Problem
|
|
49
|
+
[unchanged from @product]
|
|
50
|
+
|
|
51
|
+
## Users
|
|
52
|
+
[unchanged from @product]
|
|
53
|
+
|
|
54
|
+
## MVP scope
|
|
55
|
+
### Must-have 🔴
|
|
56
|
+
- [preserve existing launch items and ordering]
|
|
57
|
+
|
|
58
|
+
### Should-have 🟡
|
|
59
|
+
- [preserve existing follow-up items and ordering]
|
|
60
|
+
|
|
61
|
+
## Out of scope
|
|
62
|
+
[preserve existing exclusions, tightening wording only when it adds scope clarity]
|
|
63
|
+
|
|
64
|
+
## Delivery plan
|
|
65
|
+
### Phase 1 — Launch
|
|
66
|
+
1. [Module or milestone] — [why it ships first]
|
|
67
|
+
|
|
68
|
+
### Phase 2 — Follow-up
|
|
69
|
+
1. [Module or milestone] — [why it comes later]
|
|
70
|
+
|
|
71
|
+
## Acceptance criteria
|
|
72
|
+
| AC | Description |
|
|
73
|
+
|---|---|
|
|
74
|
+
| AC-01 | [observable launch behavior tied to a must-have item] |
|
|
75
|
+
|
|
76
|
+
## Visual identity
|
|
77
|
+
[unchanged from @product / @ux-ui if present]
|
|
78
|
+
```
|
|
79
|
+
|
|
80
|
+
> **`.aioson/context/` rule:** this folder accepts only `.md` files. Never write `.html`, `.css`, `.js`, or any other non-markdown file inside `.aioson/`.
|
|
81
|
+
|
|
82
|
+
## Hard constraints
|
|
83
|
+
- Use `conversation_language` from project context for all interaction and output.
|
|
84
|
+
- Do not repeat information already in `discovery.md` or `architecture.md` — reference it, do not copy it.
|
|
85
|
+
- Never exceed 2 pages. If a section is growing, summarize it.
|
|
86
|
+
- **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`.
|
|
87
|
+
- **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.
|
|
88
|
+
- **Do not remove `🔴` bullets from `## MVP scope`.** QA automation reads those markers when no AC table exists.
|
|
89
|
+
- **When possible, add a compact `## Acceptance criteria` table using `AC-01` style IDs.** QA automation reads this table directly.
|