aios-core 4.0.2 → 4.0.4

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.
Files changed (145) hide show
  1. package/.aios-core/.session/current-session.json +14 -0
  2. package/.aios-core/core/registry/registry-schema.json +166 -166
  3. package/.aios-core/core/registry/service-registry.json +6585 -6585
  4. package/.aios-core/data/registry-update-log.jsonl +113 -0
  5. package/.aios-core/development/scripts/approval-workflow.js +642 -642
  6. package/.aios-core/development/scripts/backup-manager.js +606 -606
  7. package/.aios-core/development/scripts/branch-manager.js +389 -389
  8. package/.aios-core/development/scripts/code-quality-improver.js +1311 -1311
  9. package/.aios-core/development/scripts/commit-message-generator.js +849 -849
  10. package/.aios-core/development/scripts/conflict-resolver.js +674 -674
  11. package/.aios-core/development/scripts/dependency-analyzer.js +637 -637
  12. package/.aios-core/development/scripts/diff-generator.js +351 -351
  13. package/.aios-core/development/scripts/elicitation-engine.js +384 -384
  14. package/.aios-core/development/scripts/elicitation-session-manager.js +299 -299
  15. package/.aios-core/development/scripts/git-wrapper.js +461 -461
  16. package/.aios-core/development/scripts/manifest-preview.js +244 -244
  17. package/.aios-core/development/scripts/metrics-tracker.js +775 -775
  18. package/.aios-core/development/scripts/modification-validator.js +554 -554
  19. package/.aios-core/development/scripts/pattern-learner.js +1224 -1224
  20. package/.aios-core/development/scripts/performance-analyzer.js +757 -757
  21. package/.aios-core/development/scripts/refactoring-suggester.js +1138 -1138
  22. package/.aios-core/development/scripts/rollback-handler.js +530 -530
  23. package/.aios-core/development/scripts/security-checker.js +358 -358
  24. package/.aios-core/development/scripts/template-engine.js +239 -239
  25. package/.aios-core/development/scripts/template-validator.js +278 -278
  26. package/.aios-core/development/scripts/test-generator.js +843 -843
  27. package/.aios-core/development/scripts/transaction-manager.js +589 -589
  28. package/.aios-core/development/scripts/usage-tracker.js +673 -673
  29. package/.aios-core/development/scripts/validate-filenames.js +226 -226
  30. package/.aios-core/development/scripts/version-tracker.js +526 -526
  31. package/.aios-core/development/scripts/yaml-validator.js +396 -396
  32. package/.aios-core/development/templates/service-template/README.md.hbs +158 -158
  33. package/.aios-core/development/templates/service-template/__tests__/index.test.ts.hbs +237 -237
  34. package/.aios-core/development/templates/service-template/client.ts.hbs +403 -403
  35. package/.aios-core/development/templates/service-template/errors.ts.hbs +182 -182
  36. package/.aios-core/development/templates/service-template/index.ts.hbs +120 -120
  37. package/.aios-core/development/templates/service-template/package.json.hbs +87 -87
  38. package/.aios-core/development/templates/service-template/types.ts.hbs +145 -145
  39. package/.aios-core/development/templates/squad-template/LICENSE +21 -21
  40. package/.aios-core/docs/SHARD-TRANSLATION-GUIDE.md +335 -0
  41. package/.aios-core/docs/component-creation-guide.md +458 -0
  42. package/.aios-core/docs/session-update-pattern.md +307 -0
  43. package/.aios-core/docs/standards/AIOS-FRAMEWORK-MASTER.md +1963 -0
  44. package/.aios-core/docs/standards/AIOS-LIVRO-DE-OURO-V2.1-SUMMARY.md +1190 -0
  45. package/.aios-core/docs/standards/AIOS-LIVRO-DE-OURO-V2.1.md +439 -0
  46. package/.aios-core/docs/standards/AIOS-LIVRO-DE-OURO.md +5398 -0
  47. package/.aios-core/docs/standards/V3-ARCHITECTURAL-DECISIONS.md +523 -0
  48. package/.aios-core/docs/template-syntax.md +267 -0
  49. package/.aios-core/docs/troubleshooting-guide.md +625 -0
  50. package/.aios-core/infrastructure/templates/aios-sync.yaml.template +193 -193
  51. package/.aios-core/infrastructure/templates/coderabbit.yaml.template +279 -279
  52. package/.aios-core/infrastructure/templates/github-workflows/ci.yml.template +169 -169
  53. package/.aios-core/infrastructure/templates/github-workflows/pr-automation.yml.template +330 -330
  54. package/.aios-core/infrastructure/templates/github-workflows/release.yml.template +196 -196
  55. package/.aios-core/infrastructure/templates/gitignore/gitignore-aios-base.tmpl +63 -63
  56. package/.aios-core/infrastructure/templates/gitignore/gitignore-brownfield-merge.tmpl +18 -18
  57. package/.aios-core/infrastructure/templates/gitignore/gitignore-node.tmpl +85 -85
  58. package/.aios-core/infrastructure/templates/gitignore/gitignore-python.tmpl +145 -145
  59. package/.aios-core/infrastructure/tests/utilities-audit-results.json +501 -0
  60. package/.aios-core/install-manifest.yaml +97 -97
  61. package/.aios-core/local-config.yaml.template +68 -68
  62. package/.aios-core/manifests/agents.csv +1 -0
  63. package/.aios-core/manifests/schema/manifest-schema.json +190 -190
  64. package/.aios-core/manifests/tasks.csv +121 -0
  65. package/.aios-core/manifests/workers.csv +204 -0
  66. package/.aios-core/monitor/hooks/lib/__init__.py +1 -1
  67. package/.aios-core/monitor/hooks/lib/enrich.py +58 -58
  68. package/.aios-core/monitor/hooks/lib/send_event.py +47 -47
  69. package/.aios-core/monitor/hooks/notification.py +29 -29
  70. package/.aios-core/monitor/hooks/post_tool_use.py +45 -45
  71. package/.aios-core/monitor/hooks/pre_compact.py +29 -29
  72. package/.aios-core/monitor/hooks/pre_tool_use.py +40 -40
  73. package/.aios-core/monitor/hooks/stop.py +29 -29
  74. package/.aios-core/monitor/hooks/subagent_stop.py +29 -29
  75. package/.aios-core/monitor/hooks/user_prompt_submit.py +38 -38
  76. package/.aios-core/product/templates/adr.hbs +125 -125
  77. package/.aios-core/product/templates/component-react-tmpl.tsx +98 -98
  78. package/.aios-core/product/templates/dbdr.hbs +241 -241
  79. package/.aios-core/product/templates/engine/schemas/adr.schema.json +102 -102
  80. package/.aios-core/product/templates/engine/schemas/dbdr.schema.json +205 -205
  81. package/.aios-core/product/templates/engine/schemas/epic.schema.json +175 -175
  82. package/.aios-core/product/templates/engine/schemas/pmdr.schema.json +175 -175
  83. package/.aios-core/product/templates/engine/schemas/prd-v2.schema.json +300 -300
  84. package/.aios-core/product/templates/engine/schemas/prd.schema.json +152 -152
  85. package/.aios-core/product/templates/engine/schemas/story.schema.json +222 -222
  86. package/.aios-core/product/templates/engine/schemas/task.schema.json +154 -154
  87. package/.aios-core/product/templates/epic.hbs +212 -212
  88. package/.aios-core/product/templates/eslintrc-security.json +32 -32
  89. package/.aios-core/product/templates/github-actions-cd.yml +212 -212
  90. package/.aios-core/product/templates/github-actions-ci.yml +172 -172
  91. package/.aios-core/product/templates/pmdr.hbs +186 -186
  92. package/.aios-core/product/templates/prd-v2.0.hbs +216 -216
  93. package/.aios-core/product/templates/prd.hbs +201 -201
  94. package/.aios-core/product/templates/shock-report-tmpl.html +502 -502
  95. package/.aios-core/product/templates/story.hbs +263 -263
  96. package/.aios-core/product/templates/task.hbs +170 -170
  97. package/.aios-core/product/templates/tmpl-comment-on-examples.sql +158 -158
  98. package/.aios-core/product/templates/tmpl-migration-script.sql +91 -91
  99. package/.aios-core/product/templates/tmpl-rls-granular-policies.sql +104 -104
  100. package/.aios-core/product/templates/tmpl-rls-kiss-policy.sql +10 -10
  101. package/.aios-core/product/templates/tmpl-rls-roles.sql +135 -135
  102. package/.aios-core/product/templates/tmpl-rls-simple.sql +77 -77
  103. package/.aios-core/product/templates/tmpl-rls-tenant.sql +152 -152
  104. package/.aios-core/product/templates/tmpl-rollback-script.sql +77 -77
  105. package/.aios-core/product/templates/tmpl-seed-data.sql +140 -140
  106. package/.aios-core/product/templates/tmpl-smoke-test.sql +16 -16
  107. package/.aios-core/product/templates/tmpl-staging-copy-merge.sql +139 -139
  108. package/.aios-core/product/templates/tmpl-stored-proc.sql +140 -140
  109. package/.aios-core/product/templates/tmpl-trigger.sql +152 -152
  110. package/.aios-core/product/templates/tmpl-view-materialized.sql +133 -133
  111. package/.aios-core/product/templates/tmpl-view.sql +177 -177
  112. package/.aios-core/product/templates/token-exports-css-tmpl.css +240 -240
  113. package/.aios-core/quality/schemas/quality-metrics.schema.json +233 -233
  114. package/.aios-core/scripts/migrate-framework-docs.sh +300 -300
  115. package/.aios-core/scripts/pm.sh +0 -0
  116. package/.claude/hooks/enforce-architecture-first.py +196 -0
  117. package/.claude/hooks/install-hooks.sh +41 -0
  118. package/.claude/hooks/mind-clone-governance.py +192 -0
  119. package/.claude/hooks/pre-commit-mmos-guard.sh +99 -0
  120. package/.claude/hooks/pre-commit-version-check.sh +156 -0
  121. package/.claude/hooks/read-protection.py +151 -0
  122. package/.claude/hooks/slug-validation.py +176 -0
  123. package/.claude/hooks/sql-governance.py +182 -0
  124. package/.claude/hooks/write-path-validation.py +194 -0
  125. package/.claude/rules/agent-authority.md +105 -0
  126. package/.claude/rules/coderabbit-integration.md +93 -0
  127. package/.claude/rules/ids-principles.md +112 -0
  128. package/.claude/rules/story-lifecycle.md +139 -0
  129. package/.claude/rules/workflow-execution.md +150 -0
  130. package/LICENSE +48 -48
  131. package/README.md +30 -7
  132. package/bin/aios-minimal.js +0 -0
  133. package/bin/aios.js +15 -15
  134. package/package.json +2 -4
  135. package/packages/aios-install/bin/aios-install.js +0 -0
  136. package/packages/aios-install/bin/edmcp.js +0 -0
  137. package/packages/aios-pro-cli/bin/aios-pro.js +0 -0
  138. package/scripts/check-markdown-links.py +352 -352
  139. package/scripts/dashboard-parallel-dev.sh +0 -0
  140. package/scripts/dashboard-parallel-phase3.sh +0 -0
  141. package/scripts/dashboard-parallel-phase4.sh +0 -0
  142. package/scripts/glue/README.md +355 -0
  143. package/scripts/glue/compose-agent-prompt.cjs +362 -0
  144. package/scripts/install-monitor-hooks.sh +0 -0
  145. package/.aios-core/lib/build.json +0 -1
@@ -0,0 +1,150 @@
1
+ # Workflow Execution — Detailed Rules
2
+
3
+ ## Task-First Principle
4
+
5
+ **Workflows são compostos por tasks conectadas, não por agentes conectados.** Cada task define seus inputs, outputs, pre/post-conditions e execution modes. Os agentes listados abaixo são os **executores padrão** de cada task — mas a sequência, as regras e as dependências vêm das definições de tasks em `.aios-core/development/tasks/`.
6
+
7
+ Uma task validada é lei: deve ser executada conforme configurada, com todas as suas dependências respeitadas, independente de quem a executa (agent, worker, clone ou humano).
8
+
9
+ ---
10
+
11
+ ## 4 Primary Workflows
12
+
13
+ ### 1. Story Development Cycle (SDC) — PRIMARY
14
+
15
+ **Full 4-phase workflow for all development work.**
16
+
17
+ #### Phase 1: Create (@sm)
18
+ - **Task:** `create-next-story.md`
19
+ - **Inputs:** PRD sharded, epic context
20
+ - **Output:** `{epicNum}.{storyNum}.story.md`
21
+ - **Status:** Draft
22
+
23
+ #### Phase 2: Validate (@po)
24
+ - **Task:** `validate-next-story.md`
25
+ - **10-point checklist** (see `story-lifecycle.md`)
26
+ - **Decision:** GO (>=7) or NO-GO (required fixes listed)
27
+
28
+ #### Phase 3: Implement (@dev)
29
+ - **Task:** `dev-develop-story.md`
30
+ - **Modes:** Interactive / YOLO / Pre-Flight
31
+ - **CodeRabbit:** Self-healing max 2 iterations
32
+ - **Status:** Ready → InProgress
33
+
34
+ #### Phase 4: QA Gate (@qa)
35
+ - **Task:** `qa-gate.md`
36
+ - **7 quality checks** (see `story-lifecycle.md`)
37
+ - **Decision:** PASS / CONCERNS / FAIL / WAIVED
38
+ - **Status:** InProgress → InReview → Done
39
+
40
+ ---
41
+
42
+ ### 2. QA Loop — ITERATIVE REVIEW
43
+
44
+ **Automated review-fix cycle after initial QA gate.**
45
+
46
+ ```
47
+ @qa review → verdict → @dev fixes → re-review (max 5)
48
+ ```
49
+
50
+ **Commands:**
51
+ - `*qa-loop {storyId}` — Start loop
52
+ - `*qa-loop-review` — Resume from review
53
+ - `*qa-loop-fix` — Resume from fix
54
+ - `*stop-qa-loop` — Pause, save state
55
+ - `*resume-qa-loop` — Resume from state
56
+ - `*escalate-qa-loop` — Force escalation
57
+
58
+ **Config:**
59
+ - Max iterations: 5 (`autoClaude.qaLoop.maxIterations`)
60
+ - Status file: `qa/loop-status.json`
61
+
62
+ **Verdicts:**
63
+ - APPROVE → Complete, mark Done
64
+ - REJECT → @dev fixes, re-review
65
+ - BLOCKED → Escalate immediately
66
+
67
+ **Escalation triggers:**
68
+ - `max_iterations_reached`
69
+ - `verdict_blocked`
70
+ - `fix_failure`
71
+ - `manual_escalate`
72
+
73
+ ---
74
+
75
+ ### 3. Spec Pipeline — PRE-IMPLEMENTATION
76
+
77
+ **Transform informal requirements into executable spec.**
78
+
79
+ | Phase | Agent | Output | Skip If |
80
+ |-------|-------|--------|---------|
81
+ | 1. Gather | @pm | `requirements.json` | Never |
82
+ | 2. Assess | @architect | `complexity.json` | source=simple |
83
+ | 3. Research | @analyst | `research.json` | SIMPLE class |
84
+ | 4. Write Spec | @pm | `spec.md` | Never |
85
+ | 5. Critique | @qa | `critique.json` | Never |
86
+ | 6. Plan | @architect | `implementation.yaml` | If APPROVED |
87
+
88
+ **Complexity Classes:**
89
+
90
+ | Score | Class | Phases |
91
+ |-------|-------|--------|
92
+ | <= 8 | SIMPLE | gather → spec → critique (3) |
93
+ | 9-15 | STANDARD | All 6 phases |
94
+ | >= 16 | COMPLEX | 6 phases + revision cycle |
95
+
96
+ **5 Complexity Dimensions (scored 1-5):**
97
+ - **Scope:** Files affected
98
+ - **Integration:** External APIs
99
+ - **Infrastructure:** Changes needed
100
+ - **Knowledge:** Team familiarity
101
+ - **Risk:** Criticality level
102
+
103
+ **Critique Verdicts:**
104
+
105
+ | Verdict | Average Score | Next Step |
106
+ |---------|--------------|-----------|
107
+ | APPROVED | >= 4.0 | Plan (Phase 6) |
108
+ | NEEDS_REVISION | 3.0-3.9 | Revise (Phase 5b) |
109
+ | BLOCKED | < 3.0 | Escalate to @architect |
110
+
111
+ **Constitutional Gate (Article IV — No Invention):**
112
+ Every statement in spec.md MUST trace to FR-*, NFR-*, CON-*, or research finding. NO invented features.
113
+
114
+ ---
115
+
116
+ ### 4. Brownfield Discovery — LEGACY ASSESSMENT
117
+
118
+ **10-phase technical debt assessment for existing codebases.**
119
+
120
+ **Data Collection (Phases 1-3):**
121
+ - Phase 1: @architect → `system-architecture.md`
122
+ - Phase 2: @data-engineer → `SCHEMA.md` + `DB-AUDIT.md` (if DB exists)
123
+ - Phase 3: @ux-design-expert → `frontend-spec.md`
124
+
125
+ **Draft & Validation (Phases 4-7):**
126
+ - Phase 4: @architect → `technical-debt-DRAFT.md`
127
+ - Phase 5: @data-engineer → `db-specialist-review.md`
128
+ - Phase 6: @ux-design-expert → `ux-specialist-review.md`
129
+ - Phase 7: @qa → `qa-review.md` (QA Gate: APPROVED | NEEDS WORK)
130
+
131
+ **Finalization (Phases 8-10):**
132
+ - Phase 8: @architect → `technical-debt-assessment.md` (final)
133
+ - Phase 9: @analyst → `TECHNICAL-DEBT-REPORT.md` (executive)
134
+ - Phase 10: @pm → Epic + stories ready for development
135
+
136
+ **QA Gate (Phase 7):**
137
+ - **APPROVED:** All debits validated, no critical gaps, dependencies mapped
138
+ - **NEEDS WORK:** Gaps not addressed, return to Phase 4
139
+
140
+ ---
141
+
142
+ ## Workflow Selection Guide
143
+
144
+ | Situation | Workflow |
145
+ |-----------|---------|
146
+ | New story from epic | Story Development Cycle |
147
+ | QA found issues, need iteration | QA Loop |
148
+ | Complex feature needs spec | Spec Pipeline → then SDC |
149
+ | Joining existing project | Brownfield Discovery |
150
+ | Simple bug fix | SDC only (YOLO mode) |
package/LICENSE CHANGED
@@ -1,48 +1,48 @@
1
- Commons Clause License Condition v1.0
2
-
3
- The Software is provided to you by the Licensor under the License,
4
- as defined below, subject to the following condition.
5
-
6
- Without limiting other conditions in the License, the grant of rights
7
- under the License will not include, and the License does not grant to
8
- you, the right to Sell the Software.
9
-
10
- For purposes of the foregoing, "Sell" means practicing any or all of
11
- the rights granted to you under the License to provide to third parties,
12
- for a fee or other consideration (including without limitation fees for
13
- hosting or consulting/support services related to the Software), a
14
- product or service whose value derives, entirely or substantially, from
15
- the functionality of the Software.
16
-
17
- Any license notice or attribution required by the License must also
18
- include this Commons Clause License Condition notice.
19
-
20
- ---
21
-
22
- MIT License
23
-
24
- Copyright (c) 2025 SynkraAI Inc. - AIOS Framework
25
-
26
- Permission is hereby granted, free of charge, to any person obtaining a copy
27
- of this software and associated documentation files (the "Software"), to deal
28
- in the Software without restriction, including without limitation the rights
29
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
30
- copies of the Software, and to permit persons to whom the Software is
31
- furnished to do so, subject to the following conditions:
32
-
33
- The above copyright notice and this permission notice shall be included in all
34
- copies or substantial portions of the Software.
35
-
36
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
37
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
38
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
39
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
40
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
41
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
42
- SOFTWARE.
43
-
44
- ---
45
-
46
- Software: Synkra AIOS (AI-Orchestrated System for Full Stack Development)
47
- License: MIT
48
- Licensor: SynkraAI Inc.
1
+ Commons Clause License Condition v1.0
2
+
3
+ The Software is provided to you by the Licensor under the License,
4
+ as defined below, subject to the following condition.
5
+
6
+ Without limiting other conditions in the License, the grant of rights
7
+ under the License will not include, and the License does not grant to
8
+ you, the right to Sell the Software.
9
+
10
+ For purposes of the foregoing, "Sell" means practicing any or all of
11
+ the rights granted to you under the License to provide to third parties,
12
+ for a fee or other consideration (including without limitation fees for
13
+ hosting or consulting/support services related to the Software), a
14
+ product or service whose value derives, entirely or substantially, from
15
+ the functionality of the Software.
16
+
17
+ Any license notice or attribution required by the License must also
18
+ include this Commons Clause License Condition notice.
19
+
20
+ ---
21
+
22
+ MIT License
23
+
24
+ Copyright (c) 2025 SynkraAI Inc. - AIOS Framework
25
+
26
+ Permission is hereby granted, free of charge, to any person obtaining a copy
27
+ of this software and associated documentation files (the "Software"), to deal
28
+ in the Software without restriction, including without limitation the rights
29
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
30
+ copies of the Software, and to permit persons to whom the Software is
31
+ furnished to do so, subject to the following conditions:
32
+
33
+ The above copyright notice and this permission notice shall be included in all
34
+ copies or substantial portions of the Software.
35
+
36
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
37
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
38
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
39
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
40
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
41
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
42
+ SOFTWARE.
43
+
44
+ ---
45
+
46
+ Software: Synkra AIOS (AI-Orchestrated System for Full Stack Development)
47
+ License: MIT
48
+ Licensor: SynkraAI Inc.
package/README.md CHANGED
@@ -90,7 +90,7 @@ Esta abordagem de duas fases elimina tanto a **inconsistência de planejamento**
90
90
  **Mantenha-se atualizado sem esforço!** Para atualizar sua instalação AIOS existente:
91
91
 
92
92
  ```bash
93
- npx github:SynkraAI/aios-core install
93
+ npx aios-core@latest install
94
94
  ```
95
95
 
96
96
  Isto vai:
@@ -155,7 +155,7 @@ O Synkra AIOS agora inclui uma experiência de instalação interativa de últim
155
155
  Se você já tem o AIOS instalado:
156
156
 
157
157
  ```bash
158
- npx github:SynkraAI/aios-core install
158
+ npx aios-core@latest install
159
159
  # O instalador detectará sua instalação existente e a atualizará
160
160
  ```
161
161
 
@@ -368,13 +368,13 @@ npm run install:aios
368
368
  Para membros da equipe ingressando no projeto:
369
369
 
370
370
  ```bash
371
- # Instalar AIOS com configuração GitHub
372
- npx github:SynkraAI/aios-core setup
371
+ # Instalar AIOS no projeto
372
+ npx aios-core@latest install
373
373
 
374
374
  # Isto vai:
375
- # 1. Verificar/instalar GitHub CLI
376
- # 2. Autenticar com GitHub
377
- # 3. Executar o instalador AIOS
375
+ # 1. Detectar instalação existente (se houver)
376
+ # 2. Instalar/atualizar framework AIOS
377
+ # 3. Configurar agentes e workflows
378
378
  ```
379
379
 
380
380
  ## 🌟 Além do Desenvolvimento de Software - Squads
@@ -536,6 +536,29 @@ Squads são equipes modulares de agentes IA. Veja a [Visão Geral de Squads](doc
536
536
 
537
537
  - **[hybrid-ops](https://github.com/SynkraAI/aios-hybrid-ops-pedro-valerio)** - Operações híbridas humano-agente (repositório separado)
538
538
 
539
+ ## AIOS Pro
540
+
541
+ O **AIOS Pro** (`@aios-fullstack/pro`) é o módulo premium do Synkra AIOS, oferecendo funcionalidades avançadas para equipes e projetos de maior escala.
542
+
543
+ > **Disponibilidade restrita:** O AIOS Pro está disponível exclusivamente para membros do **AIOS Cohort Advanced**. [Saiba mais sobre o programa](https://synkra.ai).
544
+
545
+ ### Instalação
546
+
547
+ ```bash
548
+ npm install @aios-fullstack/pro
549
+ ```
550
+
551
+ ### Features Premium
552
+
553
+ - **Squads Avançados** - Squads especializados com capacidades expandidas
554
+ - **Memory Layer** - Memória persistente de padrões e insights entre sessões
555
+ - **Métricas & Analytics** - Dashboard de produtividade e métricas de desenvolvimento
556
+ - **Integrações Enterprise** - Conectores para Jira, Linear, Notion e mais
557
+ - **Configuração em Camadas** - Sistema de configuração L1-L4 com herança
558
+ - **Licenciamento** - Gerenciamento de licença via `aios pro activate --key <KEY>`
559
+
560
+ Para mais informações, execute `npx aios-core pro --help` após a instalação.
561
+
539
562
  ## Suporte & Comunidade
540
563
 
541
564
  - 📖 [Guia da Comunidade](docs/community.md) - Como participar e contribuir
File without changes
package/bin/aios.js CHANGED
@@ -59,16 +59,16 @@ AIOS-FullStack v${packageJson.version}
59
59
  AI-Orchestrated System for Full Stack Development
60
60
 
61
61
  USAGE:
62
- npx @synkra/aios-core@latest # Run installation wizard
63
- npx @synkra/aios-core@latest install # Install in current project
64
- npx @synkra/aios-core@latest init <name> # Create new project
65
- npx @synkra/aios-core@latest update # Update to latest version
66
- npx @synkra/aios-core@latest validate # Validate installation integrity
67
- npx @synkra/aios-core@latest info # Show system info
68
- npx @synkra/aios-core@latest doctor # Run diagnostics
69
- npx @synkra/aios-core@latest --version # Show version
70
- npx @synkra/aios-core@latest --version -d # Show detailed version info
71
- npx @synkra/aios-core@latest --help # Show this help
62
+ npx aios-core@latest # Run installation wizard
63
+ npx aios-core@latest install # Install in current project
64
+ npx aios-core@latest init <name> # Create new project
65
+ npx aios-core@latest update # Update to latest version
66
+ npx aios-core@latest validate # Validate installation integrity
67
+ npx aios-core@latest info # Show system info
68
+ npx aios-core@latest doctor # Run diagnostics
69
+ npx aios-core@latest --version # Show version
70
+ npx aios-core@latest --version -d # Show detailed version info
71
+ npx aios-core@latest --help # Show this help
72
72
 
73
73
  UPDATE:
74
74
  aios update # Update to latest version
@@ -99,13 +99,13 @@ SERVICE DISCOVERY:
99
99
 
100
100
  EXAMPLES:
101
101
  # Install in current directory
102
- npx @synkra/aios-core@latest
102
+ npx aios-core@latest
103
103
 
104
104
  # Install with minimal mode (only expansion-creator)
105
- npx @synkra/aios-core-minimal@latest
105
+ npx aios-core-minimal@latest
106
106
 
107
107
  # Create new project
108
- npx @synkra/aios-core@latest init my-project
108
+ npx aios-core@latest init my-project
109
109
 
110
110
  # Search for workers
111
111
  aios workers search "json csv"
@@ -126,7 +126,7 @@ async function showVersion() {
126
126
 
127
127
  // Detailed version output (Story 7.2: Version Tracking)
128
128
  console.log(`AIOS-FullStack v${packageJson.version}`);
129
- console.log('Package: @synkra/aios-core');
129
+ console.log('Package: aios-core');
130
130
 
131
131
  // Check for local installation
132
132
  const localVersionPath = path.join(process.cwd(), '.aios-core', 'version.json');
@@ -485,7 +485,7 @@ Examples:
485
485
  });
486
486
  hasErrors = true;
487
487
  console.log('✗ AIOS Core not installed');
488
- console.log(' Run: npx @synkra/aios-core@latest');
488
+ console.log(' Run: npx aios-core@latest');
489
489
  }
490
490
 
491
491
  // Check 5: AIOS Pro license status (Task 5.1)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "aios-core",
3
- "version": "4.0.2",
3
+ "version": "4.0.4",
4
4
  "description": "Synkra AIOS: AI-Orchestrated System for Full Stack Development - Core Framework",
5
5
  "bin": {
6
6
  "aios": "bin/aios.js",
@@ -18,9 +18,7 @@
18
18
  ".aios-core/",
19
19
  ".claude/CLAUDE.md",
20
20
  ".claude/rules/",
21
- ".claude/hooks/synapse-engine.js",
22
- ".claude/hooks/precompact-session-digest.js",
23
- ".claude/hooks/README.md",
21
+ ".claude/hooks/",
24
22
  "README.md",
25
23
  "LICENSE"
26
24
  ],
File without changes
File without changes
File without changes