@jaimevalasek/aioson 1.3.0 → 1.4.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/README.md +19 -2
- package/docs/pt/README.md +62 -2
- package/docs/pt/advisor-spec.md +5 -5
- package/docs/pt/agentes-customizados.md +670 -0
- package/docs/pt/agentes.md +111 -13
- package/docs/pt/automacao-squads.md +407 -0
- package/docs/pt/cenarios.md +3 -3
- package/docs/pt/clientes-ai.md +62 -0
- package/docs/pt/comandos-cli.md +167 -17
- package/docs/pt/deyvin.md +115 -0
- package/docs/pt/genome-3.0-spec.md +11 -11
- package/docs/pt/inicio-rapido.md +45 -0
- package/docs/pt/memoria-contexto.md +255 -0
- package/docs/pt/output-strategy-delivery.md +655 -0
- package/docs/pt/profiler-system.md +17 -17
- package/docs/pt/runtime-observability.md +5 -1
- package/docs/pt/skills.md +175 -0
- package/docs/pt/{squad-genoma.md → squad-genome.md} +81 -75
- package/docs/testing/genome-2.0-rollout.md +1 -1
- package/package.json +3 -3
- package/src/agents.js +21 -5
- package/src/backup-provider.js +303 -0
- package/src/cli.js +178 -2
- package/src/commands/agents.js +22 -4
- package/src/commands/backup.js +533 -0
- package/src/commands/cloud.js +17 -17
- package/src/commands/context-pack.js +45 -0
- package/src/commands/implementation-plan.js +340 -0
- package/src/commands/learning.js +134 -0
- package/src/commands/live.js +1583 -0
- package/src/commands/runtime.js +833 -2
- package/src/commands/scan-project.js +288 -24
- package/src/commands/setup-context.js +23 -0
- package/src/commands/skill.js +558 -0
- package/src/commands/squad-agent-create.js +788 -0
- package/src/commands/squad-doctor.js +51 -1
- package/src/commands/squad-investigate.js +261 -0
- package/src/commands/squad-learning.js +209 -0
- package/src/commands/squad-pipeline.js +247 -1
- package/src/commands/squad-plan.js +329 -0
- package/src/commands/squad-status.js +1 -1
- package/src/commands/squad-validate.js +57 -1
- package/src/commands/test-agents.js +6 -1
- package/src/commands/workflow-next.js +8 -1
- package/src/commands/workflow-status.js +250 -0
- package/src/constants.js +80 -16
- package/src/context-memory.js +837 -0
- package/src/context-writer.js +2 -0
- package/src/delivery-runner.js +319 -0
- package/src/genome-files.js +1 -1
- package/src/genome-format.js +1 -1
- package/src/i18n/messages/en.js +206 -7
- package/src/i18n/messages/es.js +123 -6
- package/src/i18n/messages/fr.js +122 -5
- package/src/i18n/messages/pt-BR.js +205 -12
- package/src/installer.js +30 -2
- package/src/lib/genomes/compat.js +1 -1
- package/src/runtime-store.js +780 -42
- package/src/session-handoff.js +77 -0
- package/template/.aioson/agents/analyst.md +36 -9
- package/template/.aioson/agents/architect.md +20 -5
- package/template/.aioson/agents/dev.md +135 -15
- package/template/.aioson/agents/deyvin.md +166 -0
- package/template/.aioson/agents/discovery-design-doc.md +25 -1
- package/template/.aioson/agents/{genoma.md → genome.md} +20 -20
- package/template/.aioson/agents/orache.md +371 -0
- package/template/.aioson/agents/orchestrator.md +37 -2
- package/template/.aioson/agents/pair.md +5 -0
- package/template/.aioson/agents/pm.md +17 -5
- package/template/.aioson/agents/product.md +58 -22
- package/template/.aioson/agents/profiler-enricher.md +1 -1
- package/template/.aioson/agents/profiler-forge.md +9 -9
- package/template/.aioson/agents/profiler-researcher.md +1 -1
- package/template/.aioson/agents/qa.md +17 -5
- package/template/.aioson/agents/setup.md +81 -5
- package/template/.aioson/agents/squad.md +675 -28
- package/template/.aioson/agents/ux-ui.md +277 -34
- package/template/.aioson/config.md +175 -0
- package/template/.aioson/context/spec.md.template +17 -0
- package/template/.aioson/genomes/.gitkeep +0 -0
- package/template/.aioson/installed-skills/.gitkeep +0 -0
- package/template/.aioson/locales/en/agents/analyst.md +26 -4
- package/template/.aioson/locales/en/agents/architect.md +10 -0
- package/template/.aioson/locales/en/agents/dev.md +89 -4
- package/template/.aioson/locales/en/agents/deyvin.md +129 -0
- package/template/.aioson/locales/en/agents/{genoma.md → genome.md} +14 -14
- package/template/.aioson/locales/en/agents/orchestrator.md +36 -2
- package/template/.aioson/locales/en/agents/pair.md +5 -0
- package/template/.aioson/locales/en/agents/pm.md +7 -0
- package/template/.aioson/locales/en/agents/product.md +35 -17
- package/template/.aioson/locales/en/agents/qa.md +7 -0
- package/template/.aioson/locales/en/agents/setup.md +51 -5
- package/template/.aioson/locales/en/agents/squad.md +203 -15
- package/template/.aioson/locales/en/agents/ux-ui.md +375 -35
- package/template/.aioson/locales/es/agents/analyst.md +16 -4
- package/template/.aioson/locales/es/agents/architect.md +10 -0
- package/template/.aioson/locales/es/agents/dev.md +70 -2
- package/template/.aioson/locales/es/agents/deyvin.md +89 -0
- package/template/.aioson/locales/es/agents/{genoma.md → genome.md} +13 -13
- package/template/.aioson/locales/es/agents/orache.md +103 -0
- package/template/.aioson/locales/es/agents/orchestrator.md +36 -2
- package/template/.aioson/locales/es/agents/pair.md +5 -0
- package/template/.aioson/locales/es/agents/pm.md +7 -0
- package/template/.aioson/locales/es/agents/product.md +13 -3
- package/template/.aioson/locales/es/agents/qa.md +7 -0
- package/template/.aioson/locales/es/agents/setup.md +28 -5
- package/template/.aioson/locales/es/agents/squad.md +221 -15
- package/template/.aioson/locales/es/agents/ux-ui.md +26 -25
- package/template/.aioson/locales/fr/agents/analyst.md +16 -4
- package/template/.aioson/locales/fr/agents/architect.md +10 -0
- package/template/.aioson/locales/fr/agents/dev.md +70 -2
- package/template/.aioson/locales/fr/agents/deyvin.md +89 -0
- package/template/.aioson/locales/fr/agents/{genoma.md → genome.md} +7 -7
- package/template/.aioson/locales/fr/agents/orache.md +104 -0
- package/template/.aioson/locales/fr/agents/orchestrator.md +36 -2
- package/template/.aioson/locales/fr/agents/pair.md +5 -0
- package/template/.aioson/locales/fr/agents/pm.md +7 -0
- package/template/.aioson/locales/fr/agents/product.md +13 -3
- package/template/.aioson/locales/fr/agents/qa.md +7 -0
- package/template/.aioson/locales/fr/agents/setup.md +28 -5
- package/template/.aioson/locales/fr/agents/squad.md +216 -10
- package/template/.aioson/locales/fr/agents/ux-ui.md +26 -25
- package/template/.aioson/locales/pt-BR/agents/analyst.md +26 -4
- package/template/.aioson/locales/pt-BR/agents/architect.md +10 -0
- package/template/.aioson/locales/pt-BR/agents/dev.md +93 -4
- package/template/.aioson/locales/pt-BR/agents/deyvin.md +129 -0
- package/template/.aioson/locales/pt-BR/agents/{genoma.md → genome.md} +49 -49
- package/template/.aioson/locales/pt-BR/agents/orache.md +137 -0
- package/template/.aioson/locales/pt-BR/agents/orchestrator.md +36 -2
- package/template/.aioson/locales/pt-BR/agents/pair.md +5 -0
- package/template/.aioson/locales/pt-BR/agents/pm.md +7 -0
- package/template/.aioson/locales/pt-BR/agents/product.md +35 -17
- package/template/.aioson/locales/pt-BR/agents/qa.md +7 -0
- package/template/.aioson/locales/pt-BR/agents/setup.md +51 -5
- package/template/.aioson/locales/pt-BR/agents/squad.md +486 -47
- package/template/.aioson/locales/pt-BR/agents/ux-ui.md +361 -22
- package/template/.aioson/my-agents/.gitkeep +0 -0
- package/template/.aioson/rules/.gitkeep +0 -0
- package/template/.aioson/rules/squad/.gitkeep +0 -0
- package/template/.aioson/rules/squad/README.md +50 -0
- package/template/.aioson/schemas/genome-meta.schema.json +1 -1
- package/template/.aioson/schemas/genome.schema.json +1 -1
- package/template/.aioson/schemas/squad-blueprint.schema.json +11 -0
- package/template/.aioson/schemas/squad-manifest.schema.json +257 -1
- package/template/.aioson/skills/design/cognitive-core-ui/SKILL.md +157 -0
- package/template/.aioson/skills/design/cognitive-core-ui/references/components.md +407 -0
- package/template/.aioson/skills/design/cognitive-core-ui/references/dashboards.md +172 -0
- package/template/.aioson/skills/design/cognitive-core-ui/references/design-tokens.md +490 -0
- package/template/.aioson/skills/design/cognitive-core-ui/references/motion.md +237 -0
- package/template/.aioson/skills/design/cognitive-core-ui/references/patterns.md +289 -0
- package/template/.aioson/skills/design/cognitive-core-ui/references/websites.md +350 -0
- package/template/.aioson/skills/design/interface-design/SKILL.md +47 -0
- package/template/.aioson/skills/design/interface-design/references/components-and-states.md +105 -0
- package/template/.aioson/skills/design/interface-design/references/design-directions.md +101 -0
- package/template/.aioson/skills/design/interface-design/references/handoff-and-quality.md +71 -0
- package/template/.aioson/skills/design/interface-design/references/intent-and-domain.md +74 -0
- package/template/.aioson/skills/design/interface-design/references/tokens-and-depth.md +173 -0
- package/template/.aioson/skills/design/premium-command-center-ui/SKILL.md +62 -0
- package/template/.aioson/skills/design/premium-command-center-ui/references/operations.md +74 -0
- package/template/.aioson/skills/design/premium-command-center-ui/references/patterns.md +116 -0
- package/template/.aioson/skills/design/premium-command-center-ui/references/validation.md +47 -0
- package/template/.aioson/skills/design/premium-command-center-ui/references/visual-system.md +215 -0
- package/template/.aioson/skills/design-system/SKILL.md +92 -0
- package/template/.aioson/skills/design-system/cognitive-core-ui.skill +0 -0
- package/template/.aioson/skills/design-system/components/SKILL.md +274 -0
- package/template/.aioson/skills/design-system/components/SKILL.md:Zone.Identifier +0 -0
- package/template/.aioson/skills/design-system/dashboards/SKILL.md +184 -0
- package/template/.aioson/skills/design-system/dashboards/SKILL.md:Zone.Identifier +0 -0
- package/template/.aioson/skills/design-system/foundations/SKILL.md +250 -0
- package/template/.aioson/skills/design-system/foundations/SKILL.md:Zone.Identifier +0 -0
- package/template/.aioson/skills/design-system/motion/SKILL.md +197 -0
- package/template/.aioson/skills/design-system/motion/SKILL.md:Zone.Identifier +0 -0
- package/template/.aioson/skills/design-system/patterns/SKILL.md +231 -0
- package/template/.aioson/skills/design-system/patterns/SKILL.md:Zone.Identifier +0 -0
- package/template/.aioson/skills/squad/SKILL.md +58 -0
- package/template/.aioson/skills/squad/domains/.gitkeep +0 -0
- package/template/.aioson/skills/squad/formats/.gitkeep +0 -0
- package/template/.aioson/skills/squad/patterns/.gitkeep +0 -0
- package/template/.aioson/skills/squad/references/.gitkeep +0 -0
- package/template/.aioson/tasks/implementation-plan.md +288 -0
- package/template/.aioson/tasks/squad-create.md +1 -1
- package/template/.aioson/tasks/squad-execution-plan.md +279 -0
- package/template/.aioson/tasks/squad-export.md +1 -1
- package/template/.aioson/tasks/squad-investigate.md +44 -0
- package/template/.aioson/tasks/squad-learning-review.md +44 -0
- package/template/.aioson/tasks/squad-output-config.md +177 -0
- package/template/.aioson/tasks/squad-validate.md +1 -1
- package/template/.claude/commands/aioson/agent/deyvin.md +5 -0
- package/template/.claude/commands/aioson/agent/discovery-design-doc.md +5 -0
- package/template/.claude/commands/aioson/agent/genome.md +5 -0
- package/template/.claude/commands/aioson/agent/product.md +5 -0
- package/template/.claude/commands/aioson/agent/profiler-enricher.md +5 -0
- package/template/.claude/commands/aioson/agent/profiler-forge.md +5 -0
- package/template/.claude/commands/aioson/agent/profiler-researcher.md +5 -0
- package/template/.claude/commands/aioson/agent/squad.md +5 -0
- package/template/.gemini/GEMINI.md +2 -0
- package/template/.gemini/commands/aios-deyvin.toml +6 -0
- package/template/.gemini/commands/aios-pair.toml +6 -0
- package/template/AGENTS.md +34 -6
- package/template/CLAUDE.md +31 -4
- package/template/OPENCODE.md +6 -2
- package/template/squad-searches/.gitkeep +0 -0
- package/template/.aioson/skills/static/interface-design.md +0 -372
- package/template/.aioson/skills/static/premium-command-center-ui.md +0 -190
- /package/template/.aioson/{genomas → docs}/.gitkeep +0 -0
- /package/template/.claude/commands/aioson/{analyst.md → agent/analyst.md} +0 -0
- /package/template/.claude/commands/aioson/{architect.md → agent/architect.md} +0 -0
- /package/template/.claude/commands/aioson/{dev.md → agent/dev.md} +0 -0
- /package/template/.claude/commands/aioson/{orchestrator.md → agent/orchestrator.md} +0 -0
- /package/template/.claude/commands/aioson/{pm.md → agent/pm.md} +0 -0
- /package/template/.claude/commands/aioson/{qa.md → agent/qa.md} +0 -0
- /package/template/.claude/commands/aioson/{setup.md → agent/setup.md} +0 -0
- /package/template/.claude/commands/aioson/{ux-ui.md → agent/ux-ui.md} +0 -0
package/src/i18n/messages/es.js
CHANGED
|
@@ -19,6 +19,8 @@ module.exports = {
|
|
|
19
19
|
help_agent_prompt:
|
|
20
20
|
'aioson agent:prompt <agent> [path] [--tool=codex|claude|gemini|opencode] [--lang=en|pt-BR|es|fr] [--locale=es]',
|
|
21
21
|
help_context_validate: 'aioson context:validate [path] [--json] [--locale=es]',
|
|
22
|
+
help_context_pack:
|
|
23
|
+
'aioson context:pack [path] [--agent=<agente>] [--goal=<texto>] [--module=<modulo-o-carpeta>] [--max-files=8] [--json] [--locale=es]',
|
|
22
24
|
help_setup_context:
|
|
23
25
|
'aioson setup:context [path] [--defaults] [--project-type=web_app|api|site|script|dapp] [--framework=<name>] [--backend=<name>] [--frontend=<name>] [--database=<name>] [--auth=<name>] [--uiux=<name>] [--language=es] [--web3-enabled=true|false] [--locale=es]',
|
|
24
26
|
help_locale_apply: 'aioson locale:apply [path] [--lang=en|pt-BR|es|fr] [--dry-run] [--locale=es]',
|
|
@@ -53,7 +55,7 @@ module.exports = {
|
|
|
53
55
|
help_qa_report:
|
|
54
56
|
'aioson qa:report [path] [--html] [--json] [--locale=es]',
|
|
55
57
|
help_scan_project:
|
|
56
|
-
'aioson scan:project [path] --folder=<ruta[,ruta2]> [--summary-mode=titles|summaries|raw] [--with-llm] [--provider=<name>] [--llm-model=<name>] [--dry-run] [--json] [--locale=es]',
|
|
58
|
+
'aioson scan:project [path] --folder=<ruta[,ruta2]> [--summary-mode=titles|summaries|raw] [--context-mode=merge|rewrite] [--with-llm] [--provider=<name>] [--llm-model=<name>] [--dry-run] [--json] [--locale=es]',
|
|
57
59
|
help_config:
|
|
58
60
|
'aioson config <set KEY=value|show|get KEY> [--json] [--locale=es]',
|
|
59
61
|
help_genome_doctor:
|
|
@@ -70,6 +72,12 @@ module.exports = {
|
|
|
70
72
|
'aioson squad:export [path] --squad=<slug> [--locale=es]',
|
|
71
73
|
help_squad_pipeline:
|
|
72
74
|
'aioson squad:pipeline [path] [--sub=list|show|status] [--pipeline=<slug>] [--locale=es]',
|
|
75
|
+
help_squad_investigate:
|
|
76
|
+
'aioson squad:investigate [path] [--sub=list|show|score|link|register] [--investigation=<slug>] [--squad=<slug>] [--locale=es]',
|
|
77
|
+
help_squad_learning:
|
|
78
|
+
'aioson squad:learning [path] [--sub=list|stats|archive|promote|export] [--squad=<slug>] [--status=<status>] [--locale=es]',
|
|
79
|
+
help_learning:
|
|
80
|
+
'aioson learning [path] [--sub=list|stats|promote] [--status=<status>] [--id=<learning-id>] [--locale=es]',
|
|
73
81
|
dashboard_moved:
|
|
74
82
|
'El flujo `{command}` fue eliminado del CLI. El dashboard de AIOSON ahora se instala por separado. Abre la app del dashboard en tu computadora, crea o agrega un proyecto y selecciona la carpeta que ya contiene `.aioson/`.',
|
|
75
83
|
dashboard_moved_line: '{message}\n',
|
|
@@ -106,7 +114,7 @@ module.exports = {
|
|
|
106
114
|
existing_project_detected:
|
|
107
115
|
'⚠ Proyecto existente detectado ({count} archivos). Ejecuta el scanner antes de comenzar:',
|
|
108
116
|
existing_project_scan_hint:
|
|
109
|
-
' aioson scan:project --folder=src (genera
|
|
117
|
+
' aioson scan:project . --folder=src --with-llm --provider=<provider> (genera discovery.md + skeleton-system.md; sin --with-llm genera solo mapas locales)'
|
|
110
118
|
},
|
|
111
119
|
update: {
|
|
112
120
|
not_installed: 'No se encontro instalacion de AIOSON en {targetDir}.',
|
|
@@ -208,7 +216,7 @@ module.exports = {
|
|
|
208
216
|
active_path: 'Ruta activa',
|
|
209
217
|
depends: 'Depende de',
|
|
210
218
|
output: 'Salida',
|
|
211
|
-
agent_line: '- Agente: {command} ({id})',
|
|
219
|
+
agent_line: '- Agente: {label} - {command} ({id})',
|
|
212
220
|
path_line: ' Ruta: {path}',
|
|
213
221
|
active_path_line: ' Ruta activa: {path}',
|
|
214
222
|
depends_line: ' Depende de: {value}',
|
|
@@ -234,6 +242,13 @@ module.exports = {
|
|
|
234
242
|
issue_line: '- {issue}',
|
|
235
243
|
valid: 'El archivo de contexto es valido.'
|
|
236
244
|
},
|
|
245
|
+
context_pack: {
|
|
246
|
+
generated: 'Context pack escrito en: {path}',
|
|
247
|
+
no_matches: 'Todavia no se seleccionaron archivos de contexto relevantes. Ejecuta setup/context/scan antes de empaquetar.',
|
|
248
|
+
selected_title: 'Archivos incluidos en el pack:',
|
|
249
|
+
selected_line: ' {index}. {path} — {reason}',
|
|
250
|
+
hint_use: 'Usa {path} como contexto minimo inicial en tu sesion de IA.'
|
|
251
|
+
},
|
|
237
252
|
setup_context: {
|
|
238
253
|
detected: 'Framework detectado: {framework} (installed={installed})',
|
|
239
254
|
q_project_name: 'Nombre del proyecto',
|
|
@@ -680,12 +695,25 @@ module.exports = {
|
|
|
680
695
|
sessions: ' Sesiones : {count} ({path})',
|
|
681
696
|
latest_html: ' Latest HTML : {value}',
|
|
682
697
|
logs: ' Logs : {count} ({path})',
|
|
683
|
-
genomes: '
|
|
698
|
+
genomes: ' Genomes : {count} en el squad / {agent_count} vinculos por agente'
|
|
684
699
|
},
|
|
685
700
|
scan_project: {
|
|
686
701
|
scanning: 'aioson scan:project — escaneando {dir}',
|
|
687
702
|
folder_required:
|
|
688
703
|
'Usa --folder=<ruta[,ruta2]> para generar mapas completos de carpetas especificas. Ejemplo: --folder=src o --folder=app.',
|
|
704
|
+
folder_required_examples_title: '\x1b[33mGuia rapido:\x1b[0m',
|
|
705
|
+
folder_required_example_local:
|
|
706
|
+
' Mapas locales : aioson scan:project . --folder=src',
|
|
707
|
+
folder_required_example_multi:
|
|
708
|
+
' Varias carpetas : aioson scan:project . --folder=src,app',
|
|
709
|
+
folder_required_example_llm:
|
|
710
|
+
' API automatica : aioson scan:project . --folder=src --with-llm --provider=openai',
|
|
711
|
+
folder_required_example_cli:
|
|
712
|
+
' Sin API LLM : aioson scan:project . --folder=src -> luego ejecuta @analyst en Codex/Claude/Gemini',
|
|
713
|
+
folder_required_example_prompt:
|
|
714
|
+
' Prompt listo : aioson agent:prompt analyst --tool=codex',
|
|
715
|
+
folder_required_example_next:
|
|
716
|
+
' Flujo tras escaneo completo: @analyst -> @architect -> @dev',
|
|
689
717
|
folder_not_found: 'La carpeta "{folder}" no existe en este proyecto. Directorios de nivel superior detectados: {available}',
|
|
690
718
|
config_missing: '{file} no encontrado. Para usar el modo con LLM, copia aioson-models.json y completa tus claves de API.',
|
|
691
719
|
config_invalid: 'JSON invalido en aioson-models.json: {error}',
|
|
@@ -695,6 +723,10 @@ module.exports = {
|
|
|
695
723
|
context_found: ' Contexto : project.context.md encontrado',
|
|
696
724
|
context_missing: ' Contexto : project.context.md no encontrado (ejecuta aioson setup:context primero)',
|
|
697
725
|
spec_found: ' Spec : spec.md encontrado — memoria de desarrollo incluida',
|
|
726
|
+
existing_discovery_found: ' Contexto : discovery.md existente encontrado en {path}',
|
|
727
|
+
existing_skeleton_found: ' Contexto : skeleton-system.md existente encontrado en {path}',
|
|
728
|
+
context_update_mode: ' Modo : update/merge del contexto existente activado para discovery.md + skeleton-system.md',
|
|
729
|
+
context_mode: ' Contexto : context-mode={mode} (valor recomendado por defecto para brownfield: merge)',
|
|
698
730
|
local_only: ' LLM : desactivada por defecto — solo escaneo local (usa --with-llm para generar discovery.md + skeleton-system.md)',
|
|
699
731
|
walking: ' Escaneando estructura del proyecto...',
|
|
700
732
|
walk_done: ' Archivos : {files} entradas mapeadas | Archivos clave: {keys} leidos',
|
|
@@ -702,17 +734,102 @@ module.exports = {
|
|
|
702
734
|
folders_written: ' Carpetas : mapa de carpetas escrito en {path}',
|
|
703
735
|
folder_written: ' Carpeta : mapa completo de {folder} escrito en {path}',
|
|
704
736
|
forge_written: ' AIOS : mapa util de .aioson escrito en {path}',
|
|
737
|
+
memory_index_written: ' Memoria : memory-index.md escrito en {path}',
|
|
738
|
+
spec_current_written: ' Memoria : spec-current.md escrito en {path}',
|
|
739
|
+
spec_history_written: ' Memoria : spec-history.md escrito en {path}',
|
|
740
|
+
module_memory_written: ' Modulo : memoria enfocada de {folder} escrita en {path}',
|
|
705
741
|
dry_run_done: '[dry-run] Escanearia {treeCount} entradas y {keyCount} archivos clave — sin llamada LLM.',
|
|
706
742
|
local_done: ' Resultado: escaneo local completado — indice, mapa de carpetas, scans solicitados y .aioson listos.',
|
|
743
|
+
local_missing: ' Falta : discovery.md + skeleton-system.md todavia no fueron generados en este escaneo local.',
|
|
744
|
+
architecture_note: ' Nota : architecture.md no lo genera scan:project; ese archivo viene despues con @architect.',
|
|
745
|
+
local_paths_title: '\n\x1b[33m Como generar discovery ahora:\x1b[0m',
|
|
746
|
+
local_path_api: ' \x1b[32mCamino A — API automatica\x1b[0m',
|
|
707
747
|
calling_llm: ' Llamando {provider} ({model})...',
|
|
708
748
|
llm_missing_api_key:
|
|
709
749
|
'La API key del provider "{provider}" todavia no esta configurada en {file}. Completa providers.{provider}.api_key o elige otro provider con --provider=...',
|
|
710
750
|
llm_error: 'Llamada LLM fallo: {error}',
|
|
751
|
+
gitignore_policy_written:
|
|
752
|
+
' Gitignore: politica de AIOSON actualizada en {path} para ignorar archivos gestionados del framework',
|
|
753
|
+
gitignore_tracked_note:
|
|
754
|
+
' Gitignore: si esos archivos ya estaban rastreados por Git antes, todavia hara falta un git rm --cached una vez para que dejen de aparecer en el status',
|
|
755
|
+
invalid_llm_output_discovery_empty:
|
|
756
|
+
'La LLM devolvio un discovery.md vacio. No se sobrescribio ningun archivo existente. Conserva el backup actual e intenta con un modelo mas fuerte o menos carpetas por ejecucion.',
|
|
757
|
+
invalid_llm_output_skeleton_empty:
|
|
758
|
+
'La LLM devolvio un skeleton-system.md vacio despues del delimitador. No se sobrescribio ningun archivo existente. Intenta otra vez con un modelo mas fuerte o un alcance menor.',
|
|
759
|
+
gitignore_backups_written: ' Gitignore: regla de backup local garantizada en {path}',
|
|
760
|
+
backups_written: ' Backup : {count} archivo(s) guardado(s) en {path}',
|
|
711
761
|
discovery_written: 'discovery.md escrito: {path} ({chars} chars)',
|
|
712
762
|
skeleton_written: 'skeleton-system.md escrito: {path} ({chars} chars)',
|
|
713
763
|
skeleton_missing: 'Delimitador skeleton no encontrado en respuesta LLM — skeleton-system.md no escrito.',
|
|
764
|
+
local_next_steps: ' 1. Ejecuta: aioson scan:project {target} --folder={folders} --with-llm --provider=<provider>',
|
|
765
|
+
local_path_cli: ' \x1b[36mCamino B — Tu AI CLI (sin API dentro de aioson)\x1b[0m',
|
|
766
|
+
local_cli_step_analyst: ' 2. En Codex, Claude Code u otro cliente, ejecuta @analyst — puede usar scan-index.md + scan-folders.md + scan-<pasta>.md para escribir discovery.md',
|
|
767
|
+
local_cli_step_prompt_codex: ' 3. Si el cliente no entiende @analyst, genera un prompt listo: aioson agent:prompt analyst --tool=codex',
|
|
768
|
+
local_cli_step_prompt_claude: ' 4. Cambia --tool=codex por --tool=claude o --tool=gemini cuando haga falta',
|
|
769
|
+
local_cli_step_model_hint: ' 5. Si tu cliente permite elegir modelo, usa uno rapido/barato para esta etapa de discovery',
|
|
770
|
+
local_workflow_title: '\n\x1b[33m Despues del discovery:\x1b[0m',
|
|
771
|
+
local_step_architect: ' 3. Ejecuta @architect — genera architecture.md a partir del discovery consolidado',
|
|
772
|
+
local_step_dev: ' 4. Ejecuta @dev — empieza a codificar solo despues de tener discovery.md + architecture.md',
|
|
714
773
|
next_steps: '\n Proximos pasos:',
|
|
715
|
-
step_analyst: ' 1. Abre tu sesion de IA y ejecuta @analyst —
|
|
716
|
-
|
|
774
|
+
step_analyst: ' 1. Abre tu sesion de IA y ejecuta @analyst — revisa discovery.md + skeleton-system.md y consolida el alcance actual',
|
|
775
|
+
step_architect: ' 2. Ejecuta @architect — genera architecture.md a partir del discovery consolidado',
|
|
776
|
+
step_dev: ' 3. Ejecuta @dev — lee skeleton-system.md primero, luego discovery.md + architecture.md + spec.md'
|
|
777
|
+
},
|
|
778
|
+
squad_investigate: {
|
|
779
|
+
no_runtime: 'Runtime store no encontrado. Ejecuta aioson runtime:init primero.',
|
|
780
|
+
no_investigations: 'No se encontraron investigaciones.',
|
|
781
|
+
not_found: 'Investigacion no encontrada: {slug}',
|
|
782
|
+
no_report: 'La investigacion "{slug}" no tiene archivo de reporte.',
|
|
783
|
+
report_missing: 'Archivo de reporte no encontrado: {path}',
|
|
784
|
+
show_usage: 'Uso: aioson squad:investigate [path] --sub=show --investigation=<slug>',
|
|
785
|
+
score_usage: 'Uso: aioson squad:investigate [path] --sub=score --investigation=<slug>',
|
|
786
|
+
link_usage: 'Uso: aioson squad:investigate [path] --sub=link --investigation=<slug> --squad=<slug>',
|
|
787
|
+
register_usage: 'Uso: aioson squad:investigate [path] --sub=register --report=<ruta> [--domain=<nombre>] [--squad=<slug>]',
|
|
788
|
+
linked: 'Investigacion "{investigation}" vinculada al squad "{squad}".',
|
|
789
|
+
registered: 'Investigacion registrada: {slug} ({path})',
|
|
790
|
+
unknown_sub: 'Subcomando desconocido: {sub}. Usa: list, show, score, link, register.'
|
|
791
|
+
},
|
|
792
|
+
implementation_plan: {
|
|
793
|
+
not_found: 'Plan de implementacion no encontrado: {file}',
|
|
794
|
+
no_runtime: 'Runtime store no encontrado. Ejecuta aioson runtime:init primero.',
|
|
795
|
+
no_plans: 'No hay planes de implementacion registrados.',
|
|
796
|
+
no_created_date: 'El plan no tiene fecha de creacion en el frontmatter — no se puede verificar obsolescencia.',
|
|
797
|
+
is_stale: 'El plan esta OBSOLETO — los artefactos fuente cambiaron despues de la creacion del plan.',
|
|
798
|
+
is_fresh: 'El plan esta actualizado.',
|
|
799
|
+
checkpoint_usage: 'Uso: aioson plan [path] --sub=checkpoint --feature=<slug> --phase=<N>',
|
|
800
|
+
phase_completed: 'Fase {phase} marcada como completada.',
|
|
801
|
+
phase_not_found: 'Fase {phase} no encontrada en el plan.',
|
|
802
|
+
registered: 'Plan de implementacion registrado: {planId} ({phases} fases)'
|
|
803
|
+
},
|
|
804
|
+
squad_plan: {
|
|
805
|
+
slug_required: 'El slug del squad es obligatorio.',
|
|
806
|
+
not_found: 'Plan de ejecucion no encontrado para el squad: {slug}',
|
|
807
|
+
no_runtime: 'Runtime store no encontrado. Ejecuta aioson runtime:init primero.',
|
|
808
|
+
no_plan: 'No hay plan de ejecucion registrado para el squad: {slug}',
|
|
809
|
+
no_created_date: 'El plan no tiene fecha de creacion en el frontmatter — no se puede verificar obsolescencia.',
|
|
810
|
+
is_stale: 'El plan de ejecucion esta OBSOLETO — los artefactos del squad cambiaron despues de la creacion del plan.',
|
|
811
|
+
is_fresh: 'El plan de ejecucion esta actualizado.',
|
|
812
|
+
checkpoint_usage: 'Uso: aioson squad:plan [path] --sub=checkpoint --squad=<slug> --round=<N>',
|
|
813
|
+
round_completed: 'Round {round} marcado como completado.',
|
|
814
|
+
round_not_found: 'Round {round} no encontrado en el plan.',
|
|
815
|
+
registered: 'Plan de ejecucion registrado: {planSlug} ({rounds} rounds)'
|
|
816
|
+
},
|
|
817
|
+
|
|
818
|
+
squad_learning: {
|
|
819
|
+
slug_required: 'El slug del squad es obligatorio.',
|
|
820
|
+
no_runtime: 'Runtime store no encontrado. Ejecuta aioson runtime:init primero.',
|
|
821
|
+
no_learnings: 'No se encontraron learnings para el squad: {slug}',
|
|
822
|
+
not_found: 'Learning no encontrado: {id}',
|
|
823
|
+
archived_count: '{count} learning(s) marcado(s) como obsoleto(s) para el squad: {slug}',
|
|
824
|
+
promote_usage: 'Uso: aioson squad:learning [path] --sub=promote --squad=<slug> --id=<learning-id> [--to=<ruta-regla>]',
|
|
825
|
+
promoted: 'Learning {id} promovido a regla en {path}'
|
|
826
|
+
},
|
|
827
|
+
|
|
828
|
+
learning: {
|
|
829
|
+
no_runtime: 'Runtime store no encontrado. Ejecuta aioson runtime:init primero.',
|
|
830
|
+
no_learnings: 'No se encontraron learnings de proyecto.',
|
|
831
|
+
not_found: 'Learning no encontrado: {id}',
|
|
832
|
+
promote_usage: 'Uso: aioson learning [path] --sub=promote --id=<learning-id> [--to=<ruta-regla>]',
|
|
833
|
+
promoted: 'Learning {id} promovido a regla en {path}'
|
|
717
834
|
}
|
|
718
835
|
};
|
package/src/i18n/messages/fr.js
CHANGED
|
@@ -19,6 +19,8 @@ module.exports = {
|
|
|
19
19
|
help_agent_prompt:
|
|
20
20
|
'aioson agent:prompt <agent> [path] [--tool=codex|claude|gemini|opencode] [--lang=en|pt-BR|es|fr] [--locale=fr]',
|
|
21
21
|
help_context_validate: 'aioson context:validate [path] [--json] [--locale=fr]',
|
|
22
|
+
help_context_pack:
|
|
23
|
+
'aioson context:pack [path] [--agent=<agent>] [--goal=<texte>] [--module=<module-ou-dossier>] [--max-files=8] [--json] [--locale=fr]',
|
|
22
24
|
help_setup_context:
|
|
23
25
|
'aioson setup:context [path] [--defaults] [--project-type=web_app|api|site|script|dapp] [--framework=<name>] [--backend=<name>] [--frontend=<name>] [--database=<name>] [--auth=<name>] [--uiux=<name>] [--language=fr] [--web3-enabled=true|false] [--locale=fr]',
|
|
24
26
|
help_locale_apply: 'aioson locale:apply [path] [--lang=en|pt-BR|es|fr] [--dry-run] [--locale=fr]',
|
|
@@ -53,7 +55,7 @@ module.exports = {
|
|
|
53
55
|
help_qa_report:
|
|
54
56
|
'aioson qa:report [path] [--html] [--json] [--locale=fr]',
|
|
55
57
|
help_scan_project:
|
|
56
|
-
'aioson scan:project [path] --folder=<chemin[,chemin2]> [--summary-mode=titles|summaries|raw] [--with-llm] [--provider=<name>] [--llm-model=<name>] [--dry-run] [--json] [--locale=fr]',
|
|
58
|
+
'aioson scan:project [path] --folder=<chemin[,chemin2]> [--summary-mode=titles|summaries|raw] [--context-mode=merge|rewrite] [--with-llm] [--provider=<name>] [--llm-model=<name>] [--dry-run] [--json] [--locale=fr]',
|
|
57
59
|
help_config:
|
|
58
60
|
'aioson config <set KEY=value|show|get KEY> [--json] [--locale=fr]',
|
|
59
61
|
help_genome_doctor:
|
|
@@ -70,6 +72,12 @@ module.exports = {
|
|
|
70
72
|
'aioson squad:export [path] --squad=<slug> [--locale=fr]',
|
|
71
73
|
help_squad_pipeline:
|
|
72
74
|
'aioson squad:pipeline [path] [--sub=list|show|status] [--pipeline=<slug>] [--locale=fr]',
|
|
75
|
+
help_squad_investigate:
|
|
76
|
+
'aioson squad:investigate [path] [--sub=list|show|score|link|register] [--investigation=<slug>] [--squad=<slug>] [--locale=fr]',
|
|
77
|
+
help_squad_learning:
|
|
78
|
+
'aioson squad:learning [path] [--sub=list|stats|archive|promote|export] [--squad=<slug>] [--status=<status>] [--locale=fr]',
|
|
79
|
+
help_learning:
|
|
80
|
+
'aioson learning [path] [--sub=list|stats|promote] [--status=<status>] [--id=<learning-id>] [--locale=fr]',
|
|
73
81
|
dashboard_moved:
|
|
74
82
|
'Le flux `{command}` a été supprimé du CLI. Le dashboard AIOSON est désormais installé séparément. Ouvrez l application dashboard sur votre ordinateur, créez ou ajoutez un projet, puis sélectionnez le dossier qui contient déjà `.aioson/`.',
|
|
75
83
|
dashboard_moved_line: '{message}\n',
|
|
@@ -105,7 +113,7 @@ module.exports = {
|
|
|
105
113
|
existing_project_detected:
|
|
106
114
|
'⚠ Projet existant detecte ({count} fichiers). Lancez le scanner avant de commencer :',
|
|
107
115
|
existing_project_scan_hint:
|
|
108
|
-
' aioson scan:project --folder=src (genere
|
|
116
|
+
' aioson scan:project . --folder=src --with-llm --provider=<provider> (genere discovery.md + skeleton-system.md ; sans --with-llm, seulement les cartes locales)'
|
|
109
117
|
},
|
|
110
118
|
update: {
|
|
111
119
|
not_installed: 'Aucune installation AIOSON trouvee dans {targetDir}.',
|
|
@@ -207,7 +215,7 @@ module.exports = {
|
|
|
207
215
|
active_path: 'Chemin actif',
|
|
208
216
|
depends: 'Depend de',
|
|
209
217
|
output: 'Sortie',
|
|
210
|
-
agent_line: '- Agent : {command} ({id})',
|
|
218
|
+
agent_line: '- Agent : {label} - {command} ({id})',
|
|
211
219
|
path_line: ' Chemin : {path}',
|
|
212
220
|
active_path_line: ' Chemin actif : {path}',
|
|
213
221
|
depends_line: ' Depend de : {value}',
|
|
@@ -233,6 +241,13 @@ module.exports = {
|
|
|
233
241
|
issue_line: '- {issue}',
|
|
234
242
|
valid: 'Le fichier de contexte est valide.'
|
|
235
243
|
},
|
|
244
|
+
context_pack: {
|
|
245
|
+
generated: 'Context pack ecrit dans : {path}',
|
|
246
|
+
no_matches: 'Aucun fichier de contexte pertinent n a encore ete selectionne. Lancez setup/context/scan avant de packer.',
|
|
247
|
+
selected_title: 'Fichiers inclus dans le pack :',
|
|
248
|
+
selected_line: ' {index}. {path} — {reason}',
|
|
249
|
+
hint_use: 'Utilisez {path} comme contexte minimal de depart dans votre session IA.'
|
|
250
|
+
},
|
|
236
251
|
setup_context: {
|
|
237
252
|
detected: 'Framework detecte : {framework} (installed={installed})',
|
|
238
253
|
q_project_name: 'Nom du projet',
|
|
@@ -693,6 +708,19 @@ module.exports = {
|
|
|
693
708
|
scanning: 'aioson scan:project — analyse de {dir}',
|
|
694
709
|
folder_required:
|
|
695
710
|
'Passez --folder=<chemin[,chemin2]> pour generer des scans complets de dossiers precis. Exemple : --folder=src ou --folder=app.',
|
|
711
|
+
folder_required_examples_title: '\x1b[33mGuide rapide :\x1b[0m',
|
|
712
|
+
folder_required_example_local:
|
|
713
|
+
' Cartes locales : aioson scan:project . --folder=src',
|
|
714
|
+
folder_required_example_multi:
|
|
715
|
+
' Plusieurs dossiers : aioson scan:project . --folder=src,app',
|
|
716
|
+
folder_required_example_llm:
|
|
717
|
+
' API automatique : aioson scan:project . --folder=src --with-llm --provider=openai',
|
|
718
|
+
folder_required_example_cli:
|
|
719
|
+
' Sans API LLM : aioson scan:project . --folder=src -> puis lancez @analyst dans Codex/Claude/Gemini',
|
|
720
|
+
folder_required_example_prompt:
|
|
721
|
+
' Prompt pret : aioson agent:prompt analyst --tool=codex',
|
|
722
|
+
folder_required_example_next:
|
|
723
|
+
' Workflow apres scan complet : @analyst -> @architect -> @dev',
|
|
696
724
|
folder_not_found: 'Le dossier "{folder}" est introuvable dans ce projet. Dossiers de premier niveau detectes : {available}',
|
|
697
725
|
config_missing: '{file} introuvable. Pour utiliser le mode LLM, copiez aioson-models.json et renseignez vos cles API.',
|
|
698
726
|
config_invalid: 'JSON invalide dans aioson-models.json : {error}',
|
|
@@ -702,6 +730,10 @@ module.exports = {
|
|
|
702
730
|
context_found: ' Contexte : project.context.md trouve',
|
|
703
731
|
context_missing: ' Contexte : project.context.md introuvable (executez aioson setup:context d\'abord)',
|
|
704
732
|
spec_found: ' Spec : spec.md trouve — memoire de developpement incluse',
|
|
733
|
+
existing_discovery_found: ' Contexte : discovery.md existant trouve dans {path}',
|
|
734
|
+
existing_skeleton_found: ' Contexte : skeleton-system.md existant trouve dans {path}',
|
|
735
|
+
context_update_mode: ' Mode : update/merge du contexte existant active pour discovery.md + skeleton-system.md',
|
|
736
|
+
context_mode: ' Contexte : context-mode={mode} (valeur recommandee par defaut pour brownfield : merge)',
|
|
705
737
|
local_only: ' LLM : desactivee par defaut — scan local uniquement (utilisez --with-llm pour generer discovery.md + skeleton-system.md)',
|
|
706
738
|
walking: ' Analyse de la structure du projet...',
|
|
707
739
|
walk_done: ' Fichiers : {files} entrees cartographiees | Fichiers cles : {keys} lus',
|
|
@@ -709,17 +741,102 @@ module.exports = {
|
|
|
709
741
|
folders_written: ' Dossiers : carte des dossiers ecrite dans {path}',
|
|
710
742
|
folder_written: ' Dossier : carte complete de {folder} ecrite dans {path}',
|
|
711
743
|
forge_written: ' AIOS : carte utile de .aioson ecrite dans {path}',
|
|
744
|
+
memory_index_written: ' Memoire : memory-index.md ecrit dans {path}',
|
|
745
|
+
spec_current_written: ' Memoire : spec-current.md ecrit dans {path}',
|
|
746
|
+
spec_history_written: ' Memoire : spec-history.md ecrit dans {path}',
|
|
747
|
+
module_memory_written: ' Module : memoire ciblee pour {folder} ecrite dans {path}',
|
|
712
748
|
dry_run_done: '[dry-run] Analyserait {treeCount} entrees et {keyCount} fichiers cles — aucun appel LLM.',
|
|
713
749
|
local_done: ' Resultat : scan local termine — index, carte des dossiers, scans demandes et .aioson prets.',
|
|
750
|
+
local_missing: ' Manque : discovery.md + skeleton-system.md n ont pas encore ete generes dans ce scan local.',
|
|
751
|
+
architecture_note: ' Note : architecture.md n est pas genere par scan:project ; ce fichier vient ensuite avec @architect.',
|
|
752
|
+
local_paths_title: '\n\x1b[33m Comment generer discovery maintenant :\x1b[0m',
|
|
753
|
+
local_path_api: ' \x1b[32mChemin A — API automatique\x1b[0m',
|
|
714
754
|
calling_llm: ' Appel de {provider} ({model})...',
|
|
715
755
|
llm_missing_api_key:
|
|
716
756
|
'La cle API du provider "{provider}" n est pas encore configuree dans {file}. Renseignez providers.{provider}.api_key ou choisissez un autre provider avec --provider=...',
|
|
717
757
|
llm_error: 'Appel LLM echoue : {error}',
|
|
758
|
+
gitignore_policy_written:
|
|
759
|
+
' Gitignore: politique AIOSON mise a jour dans {path} pour ignorer les fichiers geres par le framework',
|
|
760
|
+
gitignore_tracked_note:
|
|
761
|
+
' Gitignore: si ces fichiers etaient deja suivis par Git avant, il faudra encore un git rm --cached une fois pour qu ils disparaissent du status',
|
|
762
|
+
invalid_llm_output_discovery_empty:
|
|
763
|
+
'La LLM a renvoye un discovery.md vide. Aucun fichier existant n a ete ecrase. Conservez le backup actuel et reessayez avec un modele plus solide ou moins de dossiers par execution.',
|
|
764
|
+
invalid_llm_output_skeleton_empty:
|
|
765
|
+
'La LLM a renvoye un skeleton-system.md vide apres le delimiteur. Aucun fichier existant n a ete ecrase. Reessayez avec un modele plus solide ou un scope plus petit.',
|
|
766
|
+
gitignore_backups_written: ' Gitignore: regle de backup local assuree dans {path}',
|
|
767
|
+
backups_written: ' Backup : {count} fichier(s) sauvegarde(s) dans {path}',
|
|
718
768
|
discovery_written: 'discovery.md ecrit : {path} ({chars} chars)',
|
|
719
769
|
skeleton_written: 'skeleton-system.md ecrit : {path} ({chars} chars)',
|
|
720
770
|
skeleton_missing: 'Delimiteur skeleton absent de la reponse LLM — skeleton-system.md non ecrit.',
|
|
771
|
+
local_next_steps: ' 1. Lancez : aioson scan:project {target} --folder={folders} --with-llm --provider=<provider>',
|
|
772
|
+
local_path_cli: ' \x1b[36mChemin B — Votre AI CLI (sans API dans aioson)\x1b[0m',
|
|
773
|
+
local_cli_step_analyst: ' 2. Dans Codex, Claude Code ou un autre client, lancez @analyst — il peut utiliser scan-index.md + scan-folders.md + scan-<dossier>.md pour ecrire discovery.md',
|
|
774
|
+
local_cli_step_prompt_codex: ' 3. Si le client ne comprend pas @analyst, generez un prompt pret : aioson agent:prompt analyst --tool=codex',
|
|
775
|
+
local_cli_step_prompt_claude: ' 4. Remplacez --tool=codex par --tool=claude ou --tool=gemini si besoin',
|
|
776
|
+
local_cli_step_model_hint: ' 5. Si votre client permet de choisir un modele, preferez un modele rapide/moins cher pour cette etape',
|
|
777
|
+
local_workflow_title: '\n\x1b[33m Apres discovery :\x1b[0m',
|
|
778
|
+
local_step_architect: ' 3. Lancez @architect — genere architecture.md a partir du discovery consolide',
|
|
779
|
+
local_step_dev: ' 4. Lancez @dev — commencez a coder seulement apres discovery.md + architecture.md',
|
|
721
780
|
next_steps: '\n Etapes suivantes :',
|
|
722
|
-
step_analyst: ' 1. Ouvrez votre session IA et lancez @analyst —
|
|
723
|
-
|
|
781
|
+
step_analyst: ' 1. Ouvrez votre session IA et lancez @analyst — revoit discovery.md + skeleton-system.md et consolide le scope courant',
|
|
782
|
+
step_architect: ' 2. Lancez @architect — genere architecture.md a partir du discovery consolide',
|
|
783
|
+
step_dev: ' 3. Lancez @dev — lit skeleton-system.md d\'abord, puis discovery.md + architecture.md + spec.md'
|
|
784
|
+
},
|
|
785
|
+
squad_investigate: {
|
|
786
|
+
no_runtime: 'Runtime store introuvable. Lancez aioson runtime:init d\'abord.',
|
|
787
|
+
no_investigations: 'Aucune investigation trouvee.',
|
|
788
|
+
not_found: 'Investigation introuvable : {slug}',
|
|
789
|
+
no_report: 'L\'investigation "{slug}" n\'a pas de fichier de rapport.',
|
|
790
|
+
report_missing: 'Fichier de rapport introuvable : {path}',
|
|
791
|
+
show_usage: 'Usage : aioson squad:investigate [path] --sub=show --investigation=<slug>',
|
|
792
|
+
score_usage: 'Usage : aioson squad:investigate [path] --sub=score --investigation=<slug>',
|
|
793
|
+
link_usage: 'Usage : aioson squad:investigate [path] --sub=link --investigation=<slug> --squad=<slug>',
|
|
794
|
+
register_usage: 'Usage : aioson squad:investigate [path] --sub=register --report=<chemin> [--domain=<nom>] [--squad=<slug>]',
|
|
795
|
+
linked: 'Investigation "{investigation}" liee au squad "{squad}".',
|
|
796
|
+
registered: 'Investigation enregistree : {slug} ({path})',
|
|
797
|
+
unknown_sub: 'Sous-commande inconnue : {sub}. Utilisez : list, show, score, link, register.'
|
|
798
|
+
},
|
|
799
|
+
implementation_plan: {
|
|
800
|
+
not_found: 'Plan d\'implementation introuvable : {file}',
|
|
801
|
+
no_runtime: 'Runtime store introuvable. Lancez aioson runtime:init d\'abord.',
|
|
802
|
+
no_plans: 'Aucun plan d\'implementation enregistre.',
|
|
803
|
+
no_created_date: 'Le plan n\'a pas de date de creation dans le frontmatter — impossible de verifier l\'obsolescence.',
|
|
804
|
+
is_stale: 'Le plan est OBSOLETE — les artefacts source ont change apres la creation du plan.',
|
|
805
|
+
is_fresh: 'Le plan est a jour.',
|
|
806
|
+
checkpoint_usage: 'Usage : aioson plan [path] --sub=checkpoint --feature=<slug> --phase=<N>',
|
|
807
|
+
phase_completed: 'Phase {phase} marquee comme terminee.',
|
|
808
|
+
phase_not_found: 'Phase {phase} introuvable dans le plan.',
|
|
809
|
+
registered: 'Plan d\'implementation enregistre : {planId} ({phases} phases)'
|
|
810
|
+
},
|
|
811
|
+
squad_plan: {
|
|
812
|
+
slug_required: 'Le slug du squad est obligatoire.',
|
|
813
|
+
not_found: 'Plan d\'execution introuvable pour le squad : {slug}',
|
|
814
|
+
no_runtime: 'Runtime store introuvable. Lancez aioson runtime:init d\'abord.',
|
|
815
|
+
no_plan: 'Aucun plan d\'execution enregistre pour le squad : {slug}',
|
|
816
|
+
no_created_date: 'Le plan n\'a pas de date de creation dans le frontmatter — impossible de verifier l\'obsolescence.',
|
|
817
|
+
is_stale: 'Le plan d\'execution est OBSOLETE — les artefacts du squad ont change apres la creation du plan.',
|
|
818
|
+
is_fresh: 'Le plan d\'execution est a jour.',
|
|
819
|
+
checkpoint_usage: 'Usage : aioson squad:plan [path] --sub=checkpoint --squad=<slug> --round=<N>',
|
|
820
|
+
round_completed: 'Round {round} marque comme termine.',
|
|
821
|
+
round_not_found: 'Round {round} introuvable dans le plan.',
|
|
822
|
+
registered: 'Plan d\'execution enregistre : {planSlug} ({rounds} rounds)'
|
|
823
|
+
},
|
|
824
|
+
|
|
825
|
+
squad_learning: {
|
|
826
|
+
slug_required: 'Le slug du squad est obligatoire.',
|
|
827
|
+
no_runtime: 'Runtime store introuvable. Lancez aioson runtime:init d\'abord.',
|
|
828
|
+
no_learnings: 'Aucun learning trouve pour le squad : {slug}',
|
|
829
|
+
not_found: 'Learning introuvable : {id}',
|
|
830
|
+
archived_count: '{count} learning(s) marque(s) comme obsolete(s) pour le squad : {slug}',
|
|
831
|
+
promote_usage: 'Usage : aioson squad:learning [path] --sub=promote --squad=<slug> --id=<learning-id> [--to=<chemin-regle>]',
|
|
832
|
+
promoted: 'Learning {id} promu en regle dans {path}'
|
|
833
|
+
},
|
|
834
|
+
|
|
835
|
+
learning: {
|
|
836
|
+
no_runtime: 'Runtime store introuvable. Lancez aioson runtime:init d\'abord.',
|
|
837
|
+
no_learnings: 'Aucun learning de projet trouve.',
|
|
838
|
+
not_found: 'Learning introuvable : {id}',
|
|
839
|
+
promote_usage: 'Usage : aioson learning [path] --sub=promote --id=<learning-id> [--to=<chemin-regle>]',
|
|
840
|
+
promoted: 'Learning {id} promu en regle dans {path}'
|
|
724
841
|
}
|
|
725
842
|
};
|