aios-core 2.2.2 → 3.0.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.
Files changed (107) hide show
  1. package/.aios-core/.session/current-session.json +14 -14
  2. package/.aios-core/cli/commands/migrate/validate.js +1 -1
  3. package/.aios-core/core/docs/session-update-pattern.md +17 -10
  4. package/.aios-core/core/elicitation/elicitation-engine.js +11 -6
  5. package/.aios-core/core/elicitation/session-manager.js +2 -1
  6. package/.aios-core/core/registry/registry-schema.json +166 -166
  7. package/.aios-core/core/registry/service-registry.json +6585 -6585
  8. package/.aios-core/core-config.yaml +66 -1
  9. package/.aios-core/data/agent-config-requirements.yaml +5 -5
  10. package/.aios-core/development/agents/devops.md +12 -0
  11. package/.aios-core/development/scripts/squad/README.md +112 -0
  12. package/.aios-core/development/scripts/squad/index.js +41 -0
  13. package/.aios-core/development/scripts/squad/squad-loader.js +359 -0
  14. package/.aios-core/development/scripts/squad/squad-validator.js +685 -0
  15. package/.aios-core/development/tasks/add-mcp.md +11 -5
  16. package/.aios-core/development/tasks/github-devops-github-pr-automation.md +240 -3
  17. package/.aios-core/development/tasks/search-mcp.md +309 -0
  18. package/.aios-core/development/tasks/setup-mcp-docker.md +11 -8
  19. package/.aios-core/development/tasks/squad-creator-validate.md +151 -0
  20. package/.aios-core/docs/standards/AGENT-PERSONALIZATION-STANDARD-V1.md +3 -3
  21. package/.aios-core/index.d.ts +7 -7
  22. package/.aios-core/index.js +1 -1
  23. package/.aios-core/infrastructure/scripts/batch-creator.js +1 -1
  24. package/.aios-core/infrastructure/scripts/component-generator.js +1 -1
  25. package/.aios-core/infrastructure/templates/coderabbit.yaml.template +279 -279
  26. package/.aios-core/infrastructure/templates/core-config/core-config-greenfield.tmpl.yaml +41 -0
  27. package/.aios-core/infrastructure/templates/github-workflows/ci.yml.template +169 -169
  28. package/.aios-core/infrastructure/templates/github-workflows/pr-automation.yml.template +330 -330
  29. package/.aios-core/infrastructure/templates/github-workflows/release.yml.template +196 -196
  30. package/.aios-core/infrastructure/templates/gitignore/gitignore-aios-base.tmpl +63 -63
  31. package/.aios-core/infrastructure/templates/gitignore/gitignore-brownfield-merge.tmpl +18 -18
  32. package/.aios-core/infrastructure/templates/gitignore/gitignore-node.tmpl +85 -85
  33. package/.aios-core/infrastructure/templates/gitignore/gitignore-python.tmpl +145 -145
  34. package/.aios-core/infrastructure/tests/utilities-audit-results.json +500 -500
  35. package/.aios-core/infrastructure/tools/README.md +1 -1
  36. package/.aios-core/install-manifest.yaml +4 -1
  37. package/.aios-core/manifests/schema/manifest-schema.json +190 -190
  38. package/.aios-core/manifests/workers.csv +203 -203
  39. package/.aios-core/package.json +102 -102
  40. package/.aios-core/product/templates/activation-instructions-template.md +7 -7
  41. package/.aios-core/product/templates/adr.hbs +125 -125
  42. package/.aios-core/product/templates/component-react-tmpl.tsx +98 -98
  43. package/.aios-core/product/templates/dbdr.hbs +241 -241
  44. package/.aios-core/product/templates/engine/schemas/adr.schema.json +102 -102
  45. package/.aios-core/product/templates/engine/schemas/dbdr.schema.json +205 -205
  46. package/.aios-core/product/templates/engine/schemas/epic.schema.json +175 -175
  47. package/.aios-core/product/templates/engine/schemas/pmdr.schema.json +175 -175
  48. package/.aios-core/product/templates/engine/schemas/prd-v2.schema.json +300 -300
  49. package/.aios-core/product/templates/engine/schemas/prd.schema.json +152 -152
  50. package/.aios-core/product/templates/engine/schemas/story.schema.json +222 -222
  51. package/.aios-core/product/templates/engine/schemas/task.schema.json +154 -154
  52. package/.aios-core/product/templates/epic.hbs +212 -212
  53. package/.aios-core/product/templates/eslintrc-security.json +32 -32
  54. package/.aios-core/product/templates/github-actions-cd.yml +212 -212
  55. package/.aios-core/product/templates/github-actions-ci.yml +172 -172
  56. package/.aios-core/product/templates/pmdr.hbs +186 -186
  57. package/.aios-core/product/templates/prd-v2.0.hbs +216 -216
  58. package/.aios-core/product/templates/prd.hbs +201 -201
  59. package/.aios-core/product/templates/shock-report-tmpl.html +502 -502
  60. package/.aios-core/product/templates/story.hbs +263 -263
  61. package/.aios-core/product/templates/task.hbs +170 -170
  62. package/.aios-core/product/templates/tmpl-comment-on-examples.sql +158 -158
  63. package/.aios-core/product/templates/tmpl-migration-script.sql +91 -91
  64. package/.aios-core/product/templates/tmpl-rls-granular-policies.sql +104 -104
  65. package/.aios-core/product/templates/tmpl-rls-kiss-policy.sql +10 -10
  66. package/.aios-core/product/templates/tmpl-rls-roles.sql +135 -135
  67. package/.aios-core/product/templates/tmpl-rls-simple.sql +77 -77
  68. package/.aios-core/product/templates/tmpl-rls-tenant.sql +152 -152
  69. package/.aios-core/product/templates/tmpl-rollback-script.sql +77 -77
  70. package/.aios-core/product/templates/tmpl-seed-data.sql +140 -140
  71. package/.aios-core/product/templates/tmpl-smoke-test.sql +16 -16
  72. package/.aios-core/product/templates/tmpl-staging-copy-merge.sql +139 -139
  73. package/.aios-core/product/templates/tmpl-stored-proc.sql +140 -140
  74. package/.aios-core/product/templates/tmpl-trigger.sql +152 -152
  75. package/.aios-core/product/templates/tmpl-view-materialized.sql +133 -133
  76. package/.aios-core/product/templates/tmpl-view.sql +177 -177
  77. package/.aios-core/product/templates/token-exports-css-tmpl.css +240 -240
  78. package/.aios-core/quality/schemas/quality-metrics.schema.json +233 -233
  79. package/.aios-core/schemas/squad-schema.json +185 -0
  80. package/.aios-core/scripts/README.md +90 -322
  81. package/.aios-core/scripts/migrate-framework-docs.sh +300 -300
  82. package/.claude/rules/mcp-usage.md +116 -100
  83. package/LICENSE +48 -48
  84. package/README.md +3 -4
  85. package/bin/aios.js +2 -1
  86. package/package.json +1 -3
  87. package/packages/installer/package.json +39 -39
  88. package/templates/squad/LICENSE +21 -21
  89. package/templates/squad/README.md +37 -37
  90. package/templates/squad/agents/example-agent.yaml +36 -36
  91. package/templates/squad/package.json +19 -19
  92. package/templates/squad/squad.yaml +25 -25
  93. package/templates/squad/tasks/example-task.yaml +46 -46
  94. package/templates/squad/templates/example-template.md +24 -24
  95. package/templates/squad/tests/example-agent.test.js +53 -53
  96. package/templates/squad/workflows/example-workflow.yaml +54 -54
  97. package/tools/diagnose-npx-issue.ps1 +96 -96
  98. package/tools/quick-diagnose.cmd +85 -85
  99. package/tools/quick-diagnose.ps1 +117 -117
  100. package/.aios-core/core/data/agent-config-requirements.yaml +0 -368
  101. package/.aios-core/core/data/aios-kb.md +0 -924
  102. package/.aios-core/core/data/workflow-patterns.yaml +0 -267
  103. package/.aios-core/product/templates/1mcp-config.yaml +0 -225
  104. package/.aios-core/scripts/context-detector.js +0 -226
  105. package/.aios-core/scripts/elicitation-engine.js +0 -385
  106. package/.aios-core/scripts/elicitation-session-manager.js +0 -300
  107. package/.claude/CLAUDE.md +0 -221
@@ -1,212 +1,212 @@
1
- ---
2
- template_id: epic
3
- template_name: Epic
4
- version: 1.0
5
- variables:
6
- - name: id
7
- type: string
8
- required: true
9
- prompt: "Epic ID (e.g., EPIC-S3):"
10
- - name: title
11
- type: string
12
- required: true
13
- prompt: "Epic title:"
14
- - name: status
15
- type: choice
16
- required: true
17
- choices: [Planning, In Progress, Completed, On Hold, Cancelled]
18
- default: Planning
19
- - name: owner
20
- type: string
21
- required: true
22
- prompt: "Epic owner:"
23
- - name: objective
24
- type: text
25
- required: true
26
- prompt: "What is the epic's main objective?"
27
- ---
28
-
29
- # {{id}}: {{title}}
30
-
31
- **Status:** {{#ifEqual status "Planning"}}📋{{/ifEqual}}{{#ifEqual status "In Progress"}}🔄{{/ifEqual}}{{#ifEqual status "Completed"}}✅{{/ifEqual}}{{#ifEqual status "On Hold"}}⏸️{{/ifEqual}}{{#ifEqual status "Cancelled"}}❌{{/ifEqual}} {{status}}
32
- **Owner:** {{owner}}
33
- **Created:** {{formatDate now "YYYY-MM-DD"}}
34
- {{#if updated}}**Updated:** {{updated}}{{/if}}
35
-
36
- ---
37
-
38
- ## Objective
39
-
40
- {{objective}}
41
-
42
- {{#if businessValue}}
43
- ## Business Value
44
-
45
- {{businessValue}}
46
- {{/if}}
47
-
48
- ---
49
-
50
- {{#if stakeholders}}
51
- ## Stakeholders
52
-
53
- {{#each stakeholders}}
54
- - {{this}}
55
- {{/each}}
56
- {{/if}}
57
-
58
- ---
59
-
60
- ## Scope
61
-
62
- {{#if scope}}
63
- ### In Scope
64
- {{#each scope.inScope}}
65
- - {{this}}
66
- {{/each}}
67
-
68
- {{#if scope.outOfScope}}
69
- ### Out of Scope
70
- {{#each scope.outOfScope}}
71
- - {{this}}
72
- {{/each}}
73
- {{/if}}
74
- {{else}}
75
- _Scope to be defined._
76
- {{/if}}
77
-
78
- ---
79
-
80
- ## Stories
81
-
82
- {{#if stories}}
83
- | ID | Title | Points | Priority | Status |
84
- |----|-------|--------|----------|--------|
85
- {{#each stories}}
86
- | [{{this.id}}](./stories/story-{{this.id}}.md) | {{this.title}} | {{default this.points "-"}} | {{default this.priority "Medium"}} | {{default this.status "Draft"}} |
87
- {{/each}}
88
-
89
- **Total Points:** {{#if progress}}{{progress.totalPoints}}{{else}}_TBD_{{/if}}
90
- {{else}}
91
- _Stories to be defined._
92
- {{/if}}
93
-
94
- ---
95
-
96
- {{#if sprints}}
97
- ## Sprint Planning
98
-
99
- {{#each sprints}}
100
- ### Sprint {{this.number}}
101
- {{#if this.goal}}**Goal:** {{this.goal}}{{/if}}
102
-
103
- {{#if this.stories}}
104
- **Stories:**
105
- {{#each this.stories}}
106
- - {{this}}
107
- {{/each}}
108
- {{/if}}
109
-
110
- {{/each}}
111
- {{/if}}
112
-
113
- ---
114
-
115
- ## Success Criteria
116
-
117
- {{#if successCriteria}}
118
- {{#each successCriteria}}
119
- - [ ] {{this.criteria}}{{#if this.metric}} ({{this.metric}}: {{this.target}}){{/if}}
120
- {{/each}}
121
- {{else}}
122
- _Success criteria to be defined._
123
- {{/if}}
124
-
125
- ---
126
-
127
- ## Technical Requirements
128
-
129
- {{#if technicalRequirements}}
130
- {{#each technicalRequirements}}
131
- - {{this}}
132
- {{/each}}
133
- {{else}}
134
- _Technical requirements to be defined._
135
- {{/if}}
136
-
137
- ---
138
-
139
- ## Risks
140
-
141
- {{#if risks}}
142
- | Risk | Impact | Mitigation |
143
- |------|--------|------------|
144
- {{#each risks}}
145
- | {{this.risk}} | {{default this.impact "Medium"}} | {{default this.mitigation "TBD"}} |
146
- {{/each}}
147
- {{else}}
148
- _No risks identified._
149
- {{/if}}
150
-
151
- ---
152
-
153
- ## Dependencies
154
-
155
- {{#if dependencies}}
156
- **Depends on:**
157
- {{#each dependencies.dependsOn}}
158
- - {{this}}
159
- {{/each}}
160
-
161
- {{#if dependencies.blocks}}
162
- **Blocks:**
163
- {{#each dependencies.blocks}}
164
- - {{this}}
165
- {{/each}}
166
- {{/if}}
167
- {{else}}
168
- _No dependencies._
169
- {{/if}}
170
-
171
- ---
172
-
173
- ## Documentation
174
-
175
- {{#if documentation}}
176
- | Type | Location | Status |
177
- |------|----------|--------|
178
- {{#each documentation}}
179
- | {{this.type}} | {{this.location}} | {{default this.status "Pending"}} |
180
- {{/each}}
181
- {{else}}
182
- _Documentation requirements to be defined._
183
- {{/if}}
184
-
185
- ---
186
-
187
- ## Progress
188
-
189
- {{#if progress}}
190
- - **Total Points:** {{progress.totalPoints}}
191
- - **Completed Points:** {{progress.completedPoints}}
192
- - **Progress:** {{progress.percentComplete}}%
193
-
194
- ```
195
- [{{#times 10}}{{#if (lt @index (divide ../progress.percentComplete 10))}}█{{else}}░{{/if}}{{/times}}] {{progress.percentComplete}}%
196
- ```
197
- {{else}}
198
- _Progress tracking to be updated._
199
- {{/if}}
200
-
201
- ---
202
-
203
- ## Change Log
204
-
205
- | Date | Version | Description | Author |
206
- |------|---------|-------------|--------|
207
- | {{formatDate now "YYYY-MM-DD"}} | 1.0 | Epic created | AIOS Template Engine |
208
-
209
- ---
210
-
211
- **Generated by:** AIOS Template Engine v2.0
212
- **Template Version:** epic-1.0
1
+ ---
2
+ template_id: epic
3
+ template_name: Epic
4
+ version: 1.0
5
+ variables:
6
+ - name: id
7
+ type: string
8
+ required: true
9
+ prompt: "Epic ID (e.g., EPIC-S3):"
10
+ - name: title
11
+ type: string
12
+ required: true
13
+ prompt: "Epic title:"
14
+ - name: status
15
+ type: choice
16
+ required: true
17
+ choices: [Planning, In Progress, Completed, On Hold, Cancelled]
18
+ default: Planning
19
+ - name: owner
20
+ type: string
21
+ required: true
22
+ prompt: "Epic owner:"
23
+ - name: objective
24
+ type: text
25
+ required: true
26
+ prompt: "What is the epic's main objective?"
27
+ ---
28
+
29
+ # {{id}}: {{title}}
30
+
31
+ **Status:** {{#ifEqual status "Planning"}}📋{{/ifEqual}}{{#ifEqual status "In Progress"}}🔄{{/ifEqual}}{{#ifEqual status "Completed"}}✅{{/ifEqual}}{{#ifEqual status "On Hold"}}⏸️{{/ifEqual}}{{#ifEqual status "Cancelled"}}❌{{/ifEqual}} {{status}}
32
+ **Owner:** {{owner}}
33
+ **Created:** {{formatDate now "YYYY-MM-DD"}}
34
+ {{#if updated}}**Updated:** {{updated}}{{/if}}
35
+
36
+ ---
37
+
38
+ ## Objective
39
+
40
+ {{objective}}
41
+
42
+ {{#if businessValue}}
43
+ ## Business Value
44
+
45
+ {{businessValue}}
46
+ {{/if}}
47
+
48
+ ---
49
+
50
+ {{#if stakeholders}}
51
+ ## Stakeholders
52
+
53
+ {{#each stakeholders}}
54
+ - {{this}}
55
+ {{/each}}
56
+ {{/if}}
57
+
58
+ ---
59
+
60
+ ## Scope
61
+
62
+ {{#if scope}}
63
+ ### In Scope
64
+ {{#each scope.inScope}}
65
+ - {{this}}
66
+ {{/each}}
67
+
68
+ {{#if scope.outOfScope}}
69
+ ### Out of Scope
70
+ {{#each scope.outOfScope}}
71
+ - {{this}}
72
+ {{/each}}
73
+ {{/if}}
74
+ {{else}}
75
+ _Scope to be defined._
76
+ {{/if}}
77
+
78
+ ---
79
+
80
+ ## Stories
81
+
82
+ {{#if stories}}
83
+ | ID | Title | Points | Priority | Status |
84
+ |----|-------|--------|----------|--------|
85
+ {{#each stories}}
86
+ | [{{this.id}}](./stories/story-{{this.id}}.md) | {{this.title}} | {{default this.points "-"}} | {{default this.priority "Medium"}} | {{default this.status "Draft"}} |
87
+ {{/each}}
88
+
89
+ **Total Points:** {{#if progress}}{{progress.totalPoints}}{{else}}_TBD_{{/if}}
90
+ {{else}}
91
+ _Stories to be defined._
92
+ {{/if}}
93
+
94
+ ---
95
+
96
+ {{#if sprints}}
97
+ ## Sprint Planning
98
+
99
+ {{#each sprints}}
100
+ ### Sprint {{this.number}}
101
+ {{#if this.goal}}**Goal:** {{this.goal}}{{/if}}
102
+
103
+ {{#if this.stories}}
104
+ **Stories:**
105
+ {{#each this.stories}}
106
+ - {{this}}
107
+ {{/each}}
108
+ {{/if}}
109
+
110
+ {{/each}}
111
+ {{/if}}
112
+
113
+ ---
114
+
115
+ ## Success Criteria
116
+
117
+ {{#if successCriteria}}
118
+ {{#each successCriteria}}
119
+ - [ ] {{this.criteria}}{{#if this.metric}} ({{this.metric}}: {{this.target}}){{/if}}
120
+ {{/each}}
121
+ {{else}}
122
+ _Success criteria to be defined._
123
+ {{/if}}
124
+
125
+ ---
126
+
127
+ ## Technical Requirements
128
+
129
+ {{#if technicalRequirements}}
130
+ {{#each technicalRequirements}}
131
+ - {{this}}
132
+ {{/each}}
133
+ {{else}}
134
+ _Technical requirements to be defined._
135
+ {{/if}}
136
+
137
+ ---
138
+
139
+ ## Risks
140
+
141
+ {{#if risks}}
142
+ | Risk | Impact | Mitigation |
143
+ |------|--------|------------|
144
+ {{#each risks}}
145
+ | {{this.risk}} | {{default this.impact "Medium"}} | {{default this.mitigation "TBD"}} |
146
+ {{/each}}
147
+ {{else}}
148
+ _No risks identified._
149
+ {{/if}}
150
+
151
+ ---
152
+
153
+ ## Dependencies
154
+
155
+ {{#if dependencies}}
156
+ **Depends on:**
157
+ {{#each dependencies.dependsOn}}
158
+ - {{this}}
159
+ {{/each}}
160
+
161
+ {{#if dependencies.blocks}}
162
+ **Blocks:**
163
+ {{#each dependencies.blocks}}
164
+ - {{this}}
165
+ {{/each}}
166
+ {{/if}}
167
+ {{else}}
168
+ _No dependencies._
169
+ {{/if}}
170
+
171
+ ---
172
+
173
+ ## Documentation
174
+
175
+ {{#if documentation}}
176
+ | Type | Location | Status |
177
+ |------|----------|--------|
178
+ {{#each documentation}}
179
+ | {{this.type}} | {{this.location}} | {{default this.status "Pending"}} |
180
+ {{/each}}
181
+ {{else}}
182
+ _Documentation requirements to be defined._
183
+ {{/if}}
184
+
185
+ ---
186
+
187
+ ## Progress
188
+
189
+ {{#if progress}}
190
+ - **Total Points:** {{progress.totalPoints}}
191
+ - **Completed Points:** {{progress.completedPoints}}
192
+ - **Progress:** {{progress.percentComplete}}%
193
+
194
+ ```
195
+ [{{#times 10}}{{#if (lt @index (divide ../progress.percentComplete 10))}}█{{else}}░{{/if}}{{/times}}] {{progress.percentComplete}}%
196
+ ```
197
+ {{else}}
198
+ _Progress tracking to be updated._
199
+ {{/if}}
200
+
201
+ ---
202
+
203
+ ## Change Log
204
+
205
+ | Date | Version | Description | Author |
206
+ |------|---------|-------------|--------|
207
+ | {{formatDate now "YYYY-MM-DD"}} | 1.0 | Epic created | AIOS Template Engine |
208
+
209
+ ---
210
+
211
+ **Generated by:** AIOS Template Engine v2.0
212
+ **Template Version:** epic-1.0
@@ -1,32 +1,32 @@
1
- {
2
- "env": {
3
- "node": true,
4
- "es2021": true
5
- },
6
- "extends": [
7
- "eslint:recommended"
8
- ],
9
- "plugins": [
10
- "security",
11
- "no-secrets"
12
- ],
13
- "parserOptions": {
14
- "ecmaVersion": 2021,
15
- "sourceType": "module"
16
- },
17
- "rules": {
18
- "security/detect-object-injection": "error",
19
- "security/detect-non-literal-regexp": "warn",
20
- "security/detect-unsafe-regex": "error",
21
- "security/detect-buffer-noassert": "error",
22
- "security/detect-child-process": "error",
23
- "security/detect-disable-mustache-escape": "error",
24
- "security/detect-eval-with-expression": "error",
25
- "security/detect-no-csrf-before-method-override": "error",
26
- "security/detect-non-literal-fs-filename": "warn",
27
- "security/detect-non-literal-require": "error",
28
- "security/detect-possible-timing-attacks": "warn",
29
- "security/detect-pseudoRandomBytes": "error",
30
- "no-secrets/no-secrets": "error"
31
- }
32
- }
1
+ {
2
+ "env": {
3
+ "node": true,
4
+ "es2021": true
5
+ },
6
+ "extends": [
7
+ "eslint:recommended"
8
+ ],
9
+ "plugins": [
10
+ "security",
11
+ "no-secrets"
12
+ ],
13
+ "parserOptions": {
14
+ "ecmaVersion": 2021,
15
+ "sourceType": "module"
16
+ },
17
+ "rules": {
18
+ "security/detect-object-injection": "error",
19
+ "security/detect-non-literal-regexp": "warn",
20
+ "security/detect-unsafe-regex": "error",
21
+ "security/detect-buffer-noassert": "error",
22
+ "security/detect-child-process": "error",
23
+ "security/detect-disable-mustache-escape": "error",
24
+ "security/detect-eval-with-expression": "error",
25
+ "security/detect-no-csrf-before-method-override": "error",
26
+ "security/detect-non-literal-fs-filename": "warn",
27
+ "security/detect-non-literal-require": "error",
28
+ "security/detect-possible-timing-attacks": "warn",
29
+ "security/detect-pseudoRandomBytes": "error",
30
+ "no-secrets/no-secrets": "error"
31
+ }
32
+ }