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.
- package/.aios-core/.session/current-session.json +14 -14
- package/.aios-core/cli/commands/migrate/validate.js +1 -1
- package/.aios-core/core/docs/session-update-pattern.md +17 -10
- package/.aios-core/core/elicitation/elicitation-engine.js +11 -6
- package/.aios-core/core/elicitation/session-manager.js +2 -1
- package/.aios-core/core/registry/registry-schema.json +166 -166
- package/.aios-core/core/registry/service-registry.json +6585 -6585
- package/.aios-core/core-config.yaml +66 -1
- package/.aios-core/data/agent-config-requirements.yaml +5 -5
- package/.aios-core/development/agents/devops.md +12 -0
- package/.aios-core/development/scripts/squad/README.md +112 -0
- package/.aios-core/development/scripts/squad/index.js +41 -0
- package/.aios-core/development/scripts/squad/squad-loader.js +359 -0
- package/.aios-core/development/scripts/squad/squad-validator.js +685 -0
- package/.aios-core/development/tasks/add-mcp.md +11 -5
- package/.aios-core/development/tasks/github-devops-github-pr-automation.md +240 -3
- package/.aios-core/development/tasks/search-mcp.md +309 -0
- package/.aios-core/development/tasks/setup-mcp-docker.md +11 -8
- package/.aios-core/development/tasks/squad-creator-validate.md +151 -0
- package/.aios-core/docs/standards/AGENT-PERSONALIZATION-STANDARD-V1.md +3 -3
- package/.aios-core/index.d.ts +7 -7
- package/.aios-core/index.js +1 -1
- package/.aios-core/infrastructure/scripts/batch-creator.js +1 -1
- package/.aios-core/infrastructure/scripts/component-generator.js +1 -1
- package/.aios-core/infrastructure/templates/coderabbit.yaml.template +279 -279
- package/.aios-core/infrastructure/templates/core-config/core-config-greenfield.tmpl.yaml +41 -0
- package/.aios-core/infrastructure/templates/github-workflows/ci.yml.template +169 -169
- package/.aios-core/infrastructure/templates/github-workflows/pr-automation.yml.template +330 -330
- package/.aios-core/infrastructure/templates/github-workflows/release.yml.template +196 -196
- package/.aios-core/infrastructure/templates/gitignore/gitignore-aios-base.tmpl +63 -63
- package/.aios-core/infrastructure/templates/gitignore/gitignore-brownfield-merge.tmpl +18 -18
- package/.aios-core/infrastructure/templates/gitignore/gitignore-node.tmpl +85 -85
- package/.aios-core/infrastructure/templates/gitignore/gitignore-python.tmpl +145 -145
- package/.aios-core/infrastructure/tests/utilities-audit-results.json +500 -500
- package/.aios-core/infrastructure/tools/README.md +1 -1
- package/.aios-core/install-manifest.yaml +4 -1
- package/.aios-core/manifests/schema/manifest-schema.json +190 -190
- package/.aios-core/manifests/workers.csv +203 -203
- package/.aios-core/package.json +102 -102
- package/.aios-core/product/templates/activation-instructions-template.md +7 -7
- package/.aios-core/product/templates/adr.hbs +125 -125
- package/.aios-core/product/templates/component-react-tmpl.tsx +98 -98
- package/.aios-core/product/templates/dbdr.hbs +241 -241
- package/.aios-core/product/templates/engine/schemas/adr.schema.json +102 -102
- package/.aios-core/product/templates/engine/schemas/dbdr.schema.json +205 -205
- package/.aios-core/product/templates/engine/schemas/epic.schema.json +175 -175
- package/.aios-core/product/templates/engine/schemas/pmdr.schema.json +175 -175
- package/.aios-core/product/templates/engine/schemas/prd-v2.schema.json +300 -300
- package/.aios-core/product/templates/engine/schemas/prd.schema.json +152 -152
- package/.aios-core/product/templates/engine/schemas/story.schema.json +222 -222
- package/.aios-core/product/templates/engine/schemas/task.schema.json +154 -154
- package/.aios-core/product/templates/epic.hbs +212 -212
- package/.aios-core/product/templates/eslintrc-security.json +32 -32
- package/.aios-core/product/templates/github-actions-cd.yml +212 -212
- package/.aios-core/product/templates/github-actions-ci.yml +172 -172
- package/.aios-core/product/templates/pmdr.hbs +186 -186
- package/.aios-core/product/templates/prd-v2.0.hbs +216 -216
- package/.aios-core/product/templates/prd.hbs +201 -201
- package/.aios-core/product/templates/shock-report-tmpl.html +502 -502
- package/.aios-core/product/templates/story.hbs +263 -263
- package/.aios-core/product/templates/task.hbs +170 -170
- package/.aios-core/product/templates/tmpl-comment-on-examples.sql +158 -158
- package/.aios-core/product/templates/tmpl-migration-script.sql +91 -91
- package/.aios-core/product/templates/tmpl-rls-granular-policies.sql +104 -104
- package/.aios-core/product/templates/tmpl-rls-kiss-policy.sql +10 -10
- package/.aios-core/product/templates/tmpl-rls-roles.sql +135 -135
- package/.aios-core/product/templates/tmpl-rls-simple.sql +77 -77
- package/.aios-core/product/templates/tmpl-rls-tenant.sql +152 -152
- package/.aios-core/product/templates/tmpl-rollback-script.sql +77 -77
- package/.aios-core/product/templates/tmpl-seed-data.sql +140 -140
- package/.aios-core/product/templates/tmpl-smoke-test.sql +16 -16
- package/.aios-core/product/templates/tmpl-staging-copy-merge.sql +139 -139
- package/.aios-core/product/templates/tmpl-stored-proc.sql +140 -140
- package/.aios-core/product/templates/tmpl-trigger.sql +152 -152
- package/.aios-core/product/templates/tmpl-view-materialized.sql +133 -133
- package/.aios-core/product/templates/tmpl-view.sql +177 -177
- package/.aios-core/product/templates/token-exports-css-tmpl.css +240 -240
- package/.aios-core/quality/schemas/quality-metrics.schema.json +233 -233
- package/.aios-core/schemas/squad-schema.json +185 -0
- package/.aios-core/scripts/README.md +90 -322
- package/.aios-core/scripts/migrate-framework-docs.sh +300 -300
- package/.claude/rules/mcp-usage.md +116 -100
- package/LICENSE +48 -48
- package/README.md +3 -4
- package/bin/aios.js +2 -1
- package/package.json +1 -3
- package/packages/installer/package.json +39 -39
- package/templates/squad/LICENSE +21 -21
- package/templates/squad/README.md +37 -37
- package/templates/squad/agents/example-agent.yaml +36 -36
- package/templates/squad/package.json +19 -19
- package/templates/squad/squad.yaml +25 -25
- package/templates/squad/tasks/example-task.yaml +46 -46
- package/templates/squad/templates/example-template.md +24 -24
- package/templates/squad/tests/example-agent.test.js +53 -53
- package/templates/squad/workflows/example-workflow.yaml +54 -54
- package/tools/diagnose-npx-issue.ps1 +96 -96
- package/tools/quick-diagnose.cmd +85 -85
- package/tools/quick-diagnose.ps1 +117 -117
- package/.aios-core/core/data/agent-config-requirements.yaml +0 -368
- package/.aios-core/core/data/aios-kb.md +0 -924
- package/.aios-core/core/data/workflow-patterns.yaml +0 -267
- package/.aios-core/product/templates/1mcp-config.yaml +0 -225
- package/.aios-core/scripts/context-detector.js +0 -226
- package/.aios-core/scripts/elicitation-engine.js +0 -385
- package/.aios-core/scripts/elicitation-session-manager.js +0 -300
- package/.claude/CLAUDE.md +0 -221
|
@@ -1,100 +1,116 @@
|
|
|
1
|
-
---
|
|
2
|
-
paths: **/*
|
|
3
|
-
---
|
|
4
|
-
|
|
5
|
-
# MCP Server Usage Rules - AIOS Architecture
|
|
6
|
-
|
|
7
|
-
## MCP
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
|
15
|
-
|
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
##
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
|
31
|
-
|
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
-
|
|
64
|
-
- Running commands
|
|
65
|
-
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
1
|
+
---
|
|
2
|
+
paths: **/*
|
|
3
|
+
---
|
|
4
|
+
|
|
5
|
+
# MCP Server Usage Rules - AIOS Architecture
|
|
6
|
+
|
|
7
|
+
## MCP Governance
|
|
8
|
+
|
|
9
|
+
**IMPORTANT:** All MCP infrastructure management is handled EXCLUSIVELY by the **DevOps Agent (@devops / Gage)**.
|
|
10
|
+
|
|
11
|
+
| Operation | Agent | Command |
|
|
12
|
+
|-----------|-------|---------|
|
|
13
|
+
| Search MCP catalog | DevOps | `*search-mcp` |
|
|
14
|
+
| Add MCP server | DevOps | `*add-mcp` |
|
|
15
|
+
| List enabled MCPs | DevOps | `*list-mcps` |
|
|
16
|
+
| Remove MCP server | DevOps | `*remove-mcp` |
|
|
17
|
+
| Setup Docker MCP | DevOps | `*setup-mcp-docker` |
|
|
18
|
+
|
|
19
|
+
Other agents (Dev, Architect, etc.) are MCP **consumers**, not administrators. If MCP management is needed, delegate to @devops.
|
|
20
|
+
|
|
21
|
+
---
|
|
22
|
+
|
|
23
|
+
## MCP Configuration Architecture
|
|
24
|
+
|
|
25
|
+
AIOS uses Docker MCP Toolkit as the primary MCP infrastructure:
|
|
26
|
+
|
|
27
|
+
### Direct in Claude Code (global ~/.claude.json)
|
|
28
|
+
| MCP | Purpose |
|
|
29
|
+
|-----|---------|
|
|
30
|
+
| **playwright** | Browser automation, screenshots, web testing |
|
|
31
|
+
| **desktop-commander** | Docker container operations via docker-gateway |
|
|
32
|
+
|
|
33
|
+
### Inside Docker Desktop (via desktop-commander)
|
|
34
|
+
| MCP | Purpose |
|
|
35
|
+
|-----|---------|
|
|
36
|
+
| **EXA** | Web search, research, company/competitor analysis |
|
|
37
|
+
| **Context7** | Library documentation lookup |
|
|
38
|
+
|
|
39
|
+
## CRITICAL: Tool Selection Priority
|
|
40
|
+
|
|
41
|
+
ALWAYS prefer native Claude Code tools over MCP servers:
|
|
42
|
+
|
|
43
|
+
| Task | USE THIS | NOT THIS |
|
|
44
|
+
|------|----------|----------|
|
|
45
|
+
| Read files | `Read` tool | docker-gateway |
|
|
46
|
+
| Write files | `Write` / `Edit` tools | docker-gateway |
|
|
47
|
+
| Run commands | `Bash` tool | docker-gateway |
|
|
48
|
+
| Search files | `Glob` tool | docker-gateway |
|
|
49
|
+
| Search content | `Grep` tool | docker-gateway |
|
|
50
|
+
| List directories | `Bash(ls)` or `Glob` | docker-gateway |
|
|
51
|
+
|
|
52
|
+
## desktop-commander (docker-gateway) Usage
|
|
53
|
+
|
|
54
|
+
### ONLY use docker-gateway when:
|
|
55
|
+
1. User explicitly says "use docker" or "use container"
|
|
56
|
+
2. User explicitly mentions "Desktop Commander"
|
|
57
|
+
3. Task specifically requires Docker container operations
|
|
58
|
+
4. Accessing MCPs running inside Docker (EXA, Context7)
|
|
59
|
+
5. User asks to run something inside a Docker container
|
|
60
|
+
|
|
61
|
+
### NEVER use docker-gateway for:
|
|
62
|
+
- Reading local files (use `Read` tool)
|
|
63
|
+
- Writing local files (use `Write` or `Edit` tools)
|
|
64
|
+
- Running shell commands on host (use `Bash` tool)
|
|
65
|
+
- Searching files (use `Glob` or `Grep` tools)
|
|
66
|
+
- Listing directories (use `Bash(ls)` or `Glob`)
|
|
67
|
+
- Running Node.js or Python scripts on host (use `Bash` tool)
|
|
68
|
+
|
|
69
|
+
## playwright MCP Usage
|
|
70
|
+
|
|
71
|
+
### ONLY use playwright when:
|
|
72
|
+
1. User explicitly asks for browser automation
|
|
73
|
+
2. User wants to take screenshots of web pages
|
|
74
|
+
3. User needs to interact with a website
|
|
75
|
+
4. Task requires web scraping or testing
|
|
76
|
+
5. Filling forms or clicking elements on web pages
|
|
77
|
+
|
|
78
|
+
### NEVER use playwright for:
|
|
79
|
+
- General file operations
|
|
80
|
+
- Running commands
|
|
81
|
+
- Anything not related to web browsers
|
|
82
|
+
|
|
83
|
+
## EXA MCP Usage (via Docker)
|
|
84
|
+
|
|
85
|
+
### Use EXA (mcp__docker-gateway__web_search_exa) for:
|
|
86
|
+
1. Web searches for current information
|
|
87
|
+
2. Research and documentation lookup
|
|
88
|
+
3. Company and competitor research
|
|
89
|
+
4. Finding code examples online
|
|
90
|
+
|
|
91
|
+
### Access pattern:
|
|
92
|
+
```
|
|
93
|
+
mcp__docker-gateway__web_search_exa
|
|
94
|
+
```
|
|
95
|
+
|
|
96
|
+
## Context7 MCP Usage (via Docker)
|
|
97
|
+
|
|
98
|
+
### Use Context7 for:
|
|
99
|
+
1. Library documentation lookup
|
|
100
|
+
2. API reference for packages/frameworks
|
|
101
|
+
3. Getting up-to-date docs for dependencies
|
|
102
|
+
|
|
103
|
+
### Access pattern:
|
|
104
|
+
```
|
|
105
|
+
mcp__docker-gateway__resolve-library-id
|
|
106
|
+
mcp__docker-gateway__get-library-docs
|
|
107
|
+
```
|
|
108
|
+
|
|
109
|
+
## Rationale
|
|
110
|
+
|
|
111
|
+
- **Native tools** execute on the LOCAL system (Windows/Mac/Linux)
|
|
112
|
+
- **docker-gateway** executes inside Docker containers (Linux)
|
|
113
|
+
- Using docker-gateway for local operations causes path mismatches and failures
|
|
114
|
+
- Native tools are faster and more reliable for local file operations
|
|
115
|
+
- EXA and Context7 run inside Docker for isolation and consistent environment
|
|
116
|
+
- playwright runs directly for better browser integration with host system
|
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 AllFluence 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: AllFluence 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 AllFluence 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: AllFluence Inc.
|
package/README.md
CHANGED
|
@@ -510,7 +510,7 @@ Sistema automatizado de detecção de gaps em **7 categorias**:
|
|
|
510
510
|
node outputs/architecture-map/schemas/validate-tool-references.js
|
|
511
511
|
```
|
|
512
512
|
- Valida ferramentas MCP/CLI/Local
|
|
513
|
-
-
|
|
513
|
+
- Integração com Docker MCP Toolkit
|
|
514
514
|
|
|
515
515
|
### 📈 Epic 2 & 3 Achievements
|
|
516
516
|
|
|
@@ -525,8 +525,8 @@ Sistema automatizado de detecção de gaps em **7 categorias**:
|
|
|
525
525
|
- ✅ **88 Orphaned Active gaps resolvidos** (Stories 3.1.1-3.1.4)
|
|
526
526
|
- ✅ 54 utilities ativas documentadas em `core-config.yaml`
|
|
527
527
|
- ✅ 19 utilities arquivadas com rationale
|
|
528
|
-
- ✅ **85% token reduction** via
|
|
529
|
-
- ✅
|
|
528
|
+
- ✅ **85% token reduction** via Docker MCP Toolkit (280k → 40k tokens)
|
|
529
|
+
- ✅ MCP governance consolidated under DevOps Agent (Story 6.14)
|
|
530
530
|
- ✅ Pre-commit hooks + Quarterly audit
|
|
531
531
|
|
|
532
532
|
### 🚀 Quick Start
|
|
@@ -565,7 +565,6 @@ cp outputs/architecture-map/mermaid/synthesis-layered-view.mmd docs/
|
|
|
565
565
|
|
|
566
566
|
### 🎯 Roadmap v1.1
|
|
567
567
|
|
|
568
|
-
- [ ] Story 3.31 - 1MCP preset relationship synthesis
|
|
569
568
|
- [ ] Interactive Miro board export
|
|
570
569
|
- [ ] Real-time Neo4j updates on code changes
|
|
571
570
|
- [ ] VSCode extension for inline visualization
|
package/bin/aios.js
CHANGED
|
@@ -234,11 +234,12 @@ async function main() {
|
|
|
234
234
|
await runWizard();
|
|
235
235
|
break;
|
|
236
236
|
|
|
237
|
-
case 'init':
|
|
237
|
+
case 'init': {
|
|
238
238
|
// Create new project
|
|
239
239
|
const projectName = args[1];
|
|
240
240
|
await initProject(projectName);
|
|
241
241
|
break;
|
|
242
|
+
}
|
|
242
243
|
|
|
243
244
|
case 'info':
|
|
244
245
|
showInfo();
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "aios-core",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "3.0.0",
|
|
4
4
|
"description": "Synkra AIOS: AI-Orchestrated System for Full Stack Development - Core Framework",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"module": "index.esm.js",
|
|
@@ -14,9 +14,7 @@
|
|
|
14
14
|
"workspaces": [
|
|
15
15
|
".aios-core",
|
|
16
16
|
"memory",
|
|
17
|
-
"security",
|
|
18
17
|
"performance",
|
|
19
|
-
"telemetry",
|
|
20
18
|
"packages/*"
|
|
21
19
|
],
|
|
22
20
|
"files": [
|
|
@@ -1,39 +1,39 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@aios/installer",
|
|
3
|
-
"version": "2.1.0",
|
|
4
|
-
"description": "AIOS Installer - Automated setup wizard for AIOS projects (greenfield & brownfield)",
|
|
5
|
-
"main": "src/index.js",
|
|
6
|
-
"bin": {
|
|
7
|
-
"aios-installer": "./src/index.js"
|
|
8
|
-
},
|
|
9
|
-
"scripts": {
|
|
10
|
-
"test": "jest",
|
|
11
|
-
"test:watch": "jest --watch",
|
|
12
|
-
"test:coverage": "jest --coverage",
|
|
13
|
-
"test:unit": "jest tests/unit",
|
|
14
|
-
"test:integration": "jest tests/integration"
|
|
15
|
-
},
|
|
16
|
-
"keywords": [
|
|
17
|
-
"aios",
|
|
18
|
-
"installer",
|
|
19
|
-
"wizard",
|
|
20
|
-
"cli",
|
|
21
|
-
"setup",
|
|
22
|
-
"greenfield",
|
|
23
|
-
"brownfield"
|
|
24
|
-
],
|
|
25
|
-
"author": "AIOS Fullstack Team",
|
|
26
|
-
"license": "MIT",
|
|
27
|
-
"engines": {
|
|
28
|
-
"node": ">=18.0.0"
|
|
29
|
-
},
|
|
30
|
-
"dependencies": {
|
|
31
|
-
"@clack/prompts": "^0.11.0",
|
|
32
|
-
"chalk": "^4.1.2",
|
|
33
|
-
"fs-extra": "^11.3.2"
|
|
34
|
-
},
|
|
35
|
-
"devDependencies": {
|
|
36
|
-
"jest": "^30.2.0"
|
|
37
|
-
}
|
|
38
|
-
}
|
|
39
|
-
|
|
1
|
+
{
|
|
2
|
+
"name": "@aios/installer",
|
|
3
|
+
"version": "2.1.0",
|
|
4
|
+
"description": "AIOS Installer - Automated setup wizard for AIOS projects (greenfield & brownfield)",
|
|
5
|
+
"main": "src/index.js",
|
|
6
|
+
"bin": {
|
|
7
|
+
"aios-installer": "./src/index.js"
|
|
8
|
+
},
|
|
9
|
+
"scripts": {
|
|
10
|
+
"test": "jest",
|
|
11
|
+
"test:watch": "jest --watch",
|
|
12
|
+
"test:coverage": "jest --coverage",
|
|
13
|
+
"test:unit": "jest tests/unit",
|
|
14
|
+
"test:integration": "jest tests/integration"
|
|
15
|
+
},
|
|
16
|
+
"keywords": [
|
|
17
|
+
"aios",
|
|
18
|
+
"installer",
|
|
19
|
+
"wizard",
|
|
20
|
+
"cli",
|
|
21
|
+
"setup",
|
|
22
|
+
"greenfield",
|
|
23
|
+
"brownfield"
|
|
24
|
+
],
|
|
25
|
+
"author": "AIOS Fullstack Team",
|
|
26
|
+
"license": "MIT",
|
|
27
|
+
"engines": {
|
|
28
|
+
"node": ">=18.0.0"
|
|
29
|
+
},
|
|
30
|
+
"dependencies": {
|
|
31
|
+
"@clack/prompts": "^0.11.0",
|
|
32
|
+
"chalk": "^4.1.2",
|
|
33
|
+
"fs-extra": "^11.3.2"
|
|
34
|
+
},
|
|
35
|
+
"devDependencies": {
|
|
36
|
+
"jest": "^30.2.0"
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
|
package/templates/squad/LICENSE
CHANGED
|
@@ -1,21 +1,21 @@
|
|
|
1
|
-
MIT License
|
|
2
|
-
|
|
3
|
-
Copyright (c) {{year}} {{author}}
|
|
4
|
-
|
|
5
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
-
in the Software without restriction, including without limitation the rights
|
|
8
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
-
furnished to do so, subject to the following conditions:
|
|
11
|
-
|
|
12
|
-
The above copyright notice and this permission notice shall be included in all
|
|
13
|
-
copies or substantial portions of the Software.
|
|
14
|
-
|
|
15
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
-
SOFTWARE.
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) {{year}} {{author}}
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
|
@@ -1,37 +1,37 @@
|
|
|
1
|
-
# {{Squad Name}}
|
|
2
|
-
|
|
3
|
-
{{Brief description of what this Squad does}}
|
|
4
|
-
|
|
5
|
-
## Installation
|
|
6
|
-
|
|
7
|
-
```bash
|
|
8
|
-
npm install {{squad-name}}
|
|
9
|
-
```
|
|
10
|
-
|
|
11
|
-
## Usage
|
|
12
|
-
|
|
13
|
-
```bash
|
|
14
|
-
# Activate the agent
|
|
15
|
-
@{{agent-name}}
|
|
16
|
-
|
|
17
|
-
# Use commands
|
|
18
|
-
*{{command-name}}
|
|
19
|
-
```
|
|
20
|
-
|
|
21
|
-
## Features
|
|
22
|
-
|
|
23
|
-
- Feature 1
|
|
24
|
-
- Feature 2
|
|
25
|
-
- Feature 3
|
|
26
|
-
|
|
27
|
-
## Documentation
|
|
28
|
-
|
|
29
|
-
See the [full documentation](docs/README.md) for detailed usage.
|
|
30
|
-
|
|
31
|
-
## Contributing
|
|
32
|
-
|
|
33
|
-
Contributions welcome! See [CONTRIBUTING.md](CONTRIBUTING.md).
|
|
34
|
-
|
|
35
|
-
## License
|
|
36
|
-
|
|
37
|
-
MIT License - see [LICENSE](LICENSE)
|
|
1
|
+
# {{Squad Name}}
|
|
2
|
+
|
|
3
|
+
{{Brief description of what this Squad does}}
|
|
4
|
+
|
|
5
|
+
## Installation
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npm install {{squad-name}}
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
## Usage
|
|
12
|
+
|
|
13
|
+
```bash
|
|
14
|
+
# Activate the agent
|
|
15
|
+
@{{agent-name}}
|
|
16
|
+
|
|
17
|
+
# Use commands
|
|
18
|
+
*{{command-name}}
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
## Features
|
|
22
|
+
|
|
23
|
+
- Feature 1
|
|
24
|
+
- Feature 2
|
|
25
|
+
- Feature 3
|
|
26
|
+
|
|
27
|
+
## Documentation
|
|
28
|
+
|
|
29
|
+
See the [full documentation](docs/README.md) for detailed usage.
|
|
30
|
+
|
|
31
|
+
## Contributing
|
|
32
|
+
|
|
33
|
+
Contributions welcome! See [CONTRIBUTING.md](CONTRIBUTING.md).
|
|
34
|
+
|
|
35
|
+
## License
|
|
36
|
+
|
|
37
|
+
MIT License - see [LICENSE](LICENSE)
|
|
@@ -1,36 +1,36 @@
|
|
|
1
|
-
# Example Agent Definition
|
|
2
|
-
# Replace placeholders with your agent's details
|
|
3
|
-
|
|
4
|
-
name: example-agent
|
|
5
|
-
version: 1.0.0
|
|
6
|
-
description: Brief description of what this agent does
|
|
7
|
-
|
|
8
|
-
persona:
|
|
9
|
-
name: Example Agent
|
|
10
|
-
role: Your Agent's Role
|
|
11
|
-
expertise:
|
|
12
|
-
- Expertise Area 1
|
|
13
|
-
- Expertise Area 2
|
|
14
|
-
- Expertise Area 3
|
|
15
|
-
|
|
16
|
-
capabilities:
|
|
17
|
-
- capability-one
|
|
18
|
-
- capability-two
|
|
19
|
-
|
|
20
|
-
commands:
|
|
21
|
-
- name: example-command
|
|
22
|
-
description: What this command does
|
|
23
|
-
workflow: example-workflow
|
|
24
|
-
|
|
25
|
-
system_prompt: |
|
|
26
|
-
You are Example Agent, specialized in [your domain].
|
|
27
|
-
|
|
28
|
-
Your responsibilities:
|
|
29
|
-
- Responsibility 1
|
|
30
|
-
- Responsibility 2
|
|
31
|
-
- Responsibility 3
|
|
32
|
-
|
|
33
|
-
Guidelines:
|
|
34
|
-
- Be helpful and precise
|
|
35
|
-
- Follow best practices
|
|
36
|
-
- Ask for clarification when needed
|
|
1
|
+
# Example Agent Definition
|
|
2
|
+
# Replace placeholders with your agent's details
|
|
3
|
+
|
|
4
|
+
name: example-agent
|
|
5
|
+
version: 1.0.0
|
|
6
|
+
description: Brief description of what this agent does
|
|
7
|
+
|
|
8
|
+
persona:
|
|
9
|
+
name: Example Agent
|
|
10
|
+
role: Your Agent's Role
|
|
11
|
+
expertise:
|
|
12
|
+
- Expertise Area 1
|
|
13
|
+
- Expertise Area 2
|
|
14
|
+
- Expertise Area 3
|
|
15
|
+
|
|
16
|
+
capabilities:
|
|
17
|
+
- capability-one
|
|
18
|
+
- capability-two
|
|
19
|
+
|
|
20
|
+
commands:
|
|
21
|
+
- name: example-command
|
|
22
|
+
description: What this command does
|
|
23
|
+
workflow: example-workflow
|
|
24
|
+
|
|
25
|
+
system_prompt: |
|
|
26
|
+
You are Example Agent, specialized in [your domain].
|
|
27
|
+
|
|
28
|
+
Your responsibilities:
|
|
29
|
+
- Responsibility 1
|
|
30
|
+
- Responsibility 2
|
|
31
|
+
- Responsibility 3
|
|
32
|
+
|
|
33
|
+
Guidelines:
|
|
34
|
+
- Be helpful and precise
|
|
35
|
+
- Follow best practices
|
|
36
|
+
- Ask for clarification when needed
|