aios-core 4.2.2 → 4.2.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.
- package/.aios-core/core/registry/service-registry.json +6466 -6586
- package/.aios-core/core-config.yaml +10 -5
- package/.aios-core/data/aios-kb.md +19 -25
- package/.aios-core/data/entity-registry.yaml +311 -204
- package/.aios-core/data/registry-update-log.jsonl +8 -0
- package/.aios-core/development/tasks/db-squad-integration.md +3 -3
- package/.aios-core/development/tasks/dev-develop-story.md +1 -1
- package/.aios-core/development/tasks/integrate-squad.md +1 -1
- package/.aios-core/development/tasks/pr-automation.md +3 -3
- package/.aios-core/development/tasks/squad-creator-migrate.md +1 -1
- package/.aios-core/development/tasks/squad-creator-sync-ide-command.md +0 -2
- package/.aios-core/development/tasks/update-aios.md +2 -2
- package/.aios-core/development/tasks/validate-next-story.md +2 -99
- package/.aios-core/development/workflows/README.md +0 -4
- package/.aios-core/docs/standards/AIOS-COLOR-PALETTE-V2.1.md +0 -1
- package/.aios-core/docs/standards/AIOS-LIVRO-DE-OURO-V2.1-COMPLETE.md +3 -3
- package/.aios-core/docs/standards/QUALITY-GATES-SPECIFICATION.md +1 -1
- package/.aios-core/docs/standards/STANDARDS-INDEX.md +4 -4
- package/.aios-core/docs/standards/STORY-TEMPLATE-V2-SPECIFICATION.md +2 -2
- package/.aios-core/framework-config.yaml +8 -4
- package/.aios-core/infrastructure/scripts/ide-sync/README.md +29 -5
- package/.aios-core/infrastructure/scripts/ide-sync/gemini-commands.js +205 -0
- package/.aios-core/infrastructure/scripts/ide-sync/index.js +48 -11
- package/.aios-core/infrastructure/scripts/ide-sync/redirect-generator.js +1 -1
- package/.aios-core/infrastructure/scripts/test-utilities.js +1 -1
- package/.aios-core/infrastructure/scripts/tool-resolver.js +2 -2
- package/.aios-core/infrastructure/scripts/validate-claude-integration.js +101 -0
- package/.aios-core/infrastructure/scripts/validate-codex-integration.js +141 -0
- package/.aios-core/infrastructure/scripts/validate-gemini-integration.js +151 -0
- package/.aios-core/infrastructure/scripts/validate-parity.js +119 -0
- package/.aios-core/infrastructure/templates/aios-sync.yaml.template +0 -11
- package/.aios-core/install-manifest.yaml +83 -71
- package/.aios-core/local-config.yaml.template +2 -1
- package/.aios-core/presets/README.md +0 -1
- package/.aios-core/product/data/integration-patterns.md +1 -1
- package/.aios-core/product/templates/ide-rules/gemini-rules.md +87 -233
- package/.aios-core/product/templates/statusline/statusline-script.js +188 -0
- package/.aios-core/product/templates/statusline/track-agent.sh +68 -0
- package/.aios-core/user-guide.md +14 -19
- package/LICENSE +0 -27
- package/README.md +42 -6
- package/bin/aios-init.js +98 -54
- package/bin/modules/env-config.js +0 -1
- package/package.json +18 -5
- package/packages/gemini-aios-extension/README.md +13 -8
- package/packages/gemini-aios-extension/commands/aios-agent.js +7 -0
- package/packages/gemini-aios-extension/commands/aios-agents.js +2 -1
- package/packages/gemini-aios-extension/commands/aios-analyst.js +6 -0
- package/packages/gemini-aios-extension/commands/aios-architect.js +6 -0
- package/packages/gemini-aios-extension/commands/aios-data-engineer.js +6 -0
- package/packages/gemini-aios-extension/commands/aios-dev.js +6 -0
- package/packages/gemini-aios-extension/commands/aios-devops.js +6 -0
- package/packages/gemini-aios-extension/commands/aios-master.js +6 -0
- package/packages/gemini-aios-extension/commands/aios-menu.js +6 -0
- package/packages/gemini-aios-extension/commands/aios-pm.js +6 -0
- package/packages/gemini-aios-extension/commands/aios-po.js +6 -0
- package/packages/gemini-aios-extension/commands/aios-qa.js +6 -0
- package/packages/gemini-aios-extension/commands/aios-sm.js +6 -0
- package/packages/gemini-aios-extension/commands/aios-squad-creator.js +6 -0
- package/packages/gemini-aios-extension/commands/aios-ux-design-expert.js +6 -0
- package/packages/gemini-aios-extension/commands/lib/agent-launcher.js +138 -0
- package/packages/gemini-aios-extension/extension.json +70 -0
- package/packages/gemini-aios-extension/gemini-extension.json +147 -0
- package/packages/gemini-aios-extension/hooks/hooks.json +67 -65
- package/packages/installer/src/config/ide-configs.js +10 -10
- package/packages/installer/src/config/templates/core-config-template.js +6 -3
- package/packages/installer/src/wizard/ide-config-generator.js +373 -2
- package/packages/installer/src/wizard/ide-selector.js +1 -1
- package/packages/installer/src/wizard/pro-setup.js +237 -150
- package/scripts/code-intel-health-check.js +125 -125
- package/scripts/ensure-manifest.js +58 -0
- package/.aios-core/infrastructure/scripts/ide-sync/transformers/windsurf.js +0 -106
- package/.aios-core/product/templates/ide-rules/cline-rules.md +0 -84
- package/.aios-core/product/templates/ide-rules/roo-rules.md +0 -86
- package/.aios-core/product/templates/ide-rules/windsurf-rules.md +0 -80
|
@@ -46,13 +46,14 @@ ide:
|
|
|
46
46
|
selected:
|
|
47
47
|
- vscode
|
|
48
48
|
- codex
|
|
49
|
+
- gemini
|
|
49
50
|
- cursor
|
|
50
51
|
- claude-code
|
|
51
52
|
configs:
|
|
52
53
|
vscode: true
|
|
53
54
|
codex: true
|
|
55
|
+
gemini: true
|
|
54
56
|
cursor: true
|
|
55
|
-
windsurf: false
|
|
56
57
|
zed: false
|
|
57
58
|
claude-desktop: false
|
|
58
59
|
claude-code: true
|
|
@@ -313,14 +314,18 @@ ideSync:
|
|
|
313
314
|
enabled: true
|
|
314
315
|
path: .codex/agents
|
|
315
316
|
format: full-markdown-yaml
|
|
317
|
+
gemini:
|
|
318
|
+
enabled: true
|
|
319
|
+
path: .gemini/rules/AIOS/agents
|
|
320
|
+
format: full-markdown-yaml
|
|
321
|
+
github-copilot:
|
|
322
|
+
enabled: true
|
|
323
|
+
path: .github/agents
|
|
324
|
+
format: full-markdown-yaml
|
|
316
325
|
cursor:
|
|
317
326
|
enabled: true
|
|
318
327
|
path: .cursor/rules/agents
|
|
319
328
|
format: condensed-rules
|
|
320
|
-
windsurf:
|
|
321
|
-
enabled: false
|
|
322
|
-
path: .windsurf/rules/agents
|
|
323
|
-
format: xml-tagged-markdown
|
|
324
329
|
antigravity:
|
|
325
330
|
enabled: true
|
|
326
331
|
path: .antigravity/rules/agents
|
|
@@ -82,7 +82,7 @@ AIOS transforms you into a "Vibe CEO" - directing a team of specialized AI agent
|
|
|
82
82
|
|
|
83
83
|
#### Option 2: IDE Integration
|
|
84
84
|
|
|
85
|
-
**Best for**: Cursor, Claude Code,
|
|
85
|
+
**Best for**: Cursor, Claude Code, Gemini CLI, Github Copilot users
|
|
86
86
|
|
|
87
87
|
```bash
|
|
88
88
|
# Interactive installation (recommended)
|
|
@@ -95,12 +95,9 @@ npx @synkra/aios-core install
|
|
|
95
95
|
- Select your IDE from supported options:
|
|
96
96
|
- **Cursor**: Native AI integration
|
|
97
97
|
- **Claude Code**: Anthropic's official IDE
|
|
98
|
-
- **Windsurf**: Built-in AI capabilities
|
|
99
|
-
- **Cline**: VS Code extension with AI features
|
|
100
|
-
- **Roo Code**: Web-based IDE with agent support
|
|
101
98
|
- **GitHub Copilot**: VS Code extension with AI peer programming assistant
|
|
102
99
|
|
|
103
|
-
**Note for VS Code Users**: AIOS-Method assumes when you mention "VS Code" that you're using it with an AI-powered extension like GitHub Copilot
|
|
100
|
+
**Note for VS Code Users**: AIOS-Method assumes when you mention "VS Code" that you're using it with an AI-powered extension like GitHub Copilot. Standard VS Code without AI capabilities cannot run AIOS agents.
|
|
104
101
|
|
|
105
102
|
**Verify Installation**:
|
|
106
103
|
|
|
@@ -297,14 +294,11 @@ You are the "Vibe CEO" - thinking like a CEO with unlimited resources and a sing
|
|
|
297
294
|
|
|
298
295
|
- **Claude Code**: `/agent-name` (e.g., `/aios-master`)
|
|
299
296
|
- **Cursor**: `@agent-name` (e.g., `@aios-master`)
|
|
300
|
-
- **Windsurf**: `@agent-name` (e.g., `@aios-master`)
|
|
301
|
-
- **Roo Code**: Select mode from mode selector (e.g., `aios-master`)
|
|
302
297
|
- **GitHub Copilot**: Open the Chat view (`⌃⌘I` on Mac, `Ctrl+Alt+I` on Windows/Linux) and select **Agent** from the chat mode selector.
|
|
303
298
|
|
|
304
299
|
**Chat Management Guidelines**:
|
|
305
300
|
|
|
306
|
-
- **Claude Code, Cursor
|
|
307
|
-
- **Roo Code**: Switch modes within the same conversation
|
|
301
|
+
- **Claude Code, Cursor**: Start new chats when switching agents
|
|
308
302
|
|
|
309
303
|
**Common Task Commands**:
|
|
310
304
|
|
|
@@ -848,32 +842,32 @@ For full details, see `CONTRIBUTING.md`. Key points:
|
|
|
848
842
|
|
|
849
843
|
- **Dev Agents Must Be Lean**: Minimize dependencies, save context for code
|
|
850
844
|
- **Natural Language First**: Everything in markdown, no code in core
|
|
851
|
-
- **Core vs
|
|
845
|
+
- **Core vs Squads**: Core for universal needs, squads for specialized domains
|
|
852
846
|
- **Design Philosophy**: "Dev agents code, planning agents plan"
|
|
853
847
|
|
|
854
|
-
##
|
|
848
|
+
## Squads
|
|
855
849
|
|
|
856
|
-
### What Are
|
|
850
|
+
### What Are Squads?
|
|
857
851
|
|
|
858
852
|
Squads extend AIOS-Method beyond traditional software development into ANY domain. They provide specialized agent teams, templates, and workflows while keeping the core framework lean and focused on development.
|
|
859
853
|
|
|
860
|
-
### Why Use
|
|
854
|
+
### Why Use Squads?
|
|
861
855
|
|
|
862
856
|
1. **Keep Core Lean**: Dev agents maintain maximum context for coding
|
|
863
857
|
2. **Domain Expertise**: Deep, specialized knowledge without bloating core
|
|
864
|
-
3. **Community Innovation**: Anyone can create and share
|
|
858
|
+
3. **Community Innovation**: Anyone can create and share squads
|
|
865
859
|
4. **Modular Design**: Install only what you need
|
|
866
860
|
|
|
867
|
-
### Available
|
|
861
|
+
### Available Squads
|
|
868
862
|
|
|
869
|
-
**Technical
|
|
863
|
+
**Technical Squads**:
|
|
870
864
|
|
|
871
865
|
- **Infrastructure/DevOps**: Cloud architects, SRE experts, security specialists
|
|
872
866
|
- **Game Development**: Game designers, level designers, narrative writers
|
|
873
867
|
- **Mobile Development**: iOS/Android specialists, mobile UX experts
|
|
874
868
|
- **Data Science**: ML engineers, data scientists, visualization experts
|
|
875
869
|
|
|
876
|
-
**Non-Technical
|
|
870
|
+
**Non-Technical Squads**:
|
|
877
871
|
|
|
878
872
|
- **Business Strategy**: Consultants, financial analysts, marketing strategists
|
|
879
873
|
- **Creative Writing**: Plot architects, character developers, world builders
|
|
@@ -881,17 +875,17 @@ Squads extend AIOS-Method beyond traditional software development into ANY domai
|
|
|
881
875
|
- **Education**: Curriculum designers, assessment specialists
|
|
882
876
|
- **Legal Support**: Contract analysts, compliance checkers
|
|
883
877
|
|
|
884
|
-
**Specialty
|
|
878
|
+
**Specialty Squads**:
|
|
885
879
|
|
|
886
880
|
- **Expansion Creator**: Tools to build your own squads
|
|
887
881
|
- **RPG Game Master**: Tabletop gaming assistance
|
|
888
882
|
- **Life Event Planning**: Wedding planners, event coordinators
|
|
889
883
|
- **Scientific Research**: Literature reviewers, methodology designers
|
|
890
884
|
|
|
891
|
-
### Using
|
|
885
|
+
### Using Squads
|
|
892
886
|
|
|
893
|
-
1. **Browse Available
|
|
894
|
-
2. **Get Inspiration**: See `docs/
|
|
887
|
+
1. **Browse Available Squads**: Check `squads/` directory
|
|
888
|
+
2. **Get Inspiration**: See `docs/squads.md` for detailed examples and ideas
|
|
895
889
|
3. **Install via CLI**:
|
|
896
890
|
|
|
897
891
|
```bash
|
|
@@ -899,11 +893,11 @@ Squads extend AIOS-Method beyond traditional software development into ANY domai
|
|
|
899
893
|
# Select "Install squad" option
|
|
900
894
|
```
|
|
901
895
|
|
|
902
|
-
4. **Use in Your Workflow**: Installed
|
|
896
|
+
4. **Use in Your Workflow**: Installed squads integrate seamlessly with existing agents
|
|
903
897
|
|
|
904
|
-
### Creating Custom
|
|
898
|
+
### Creating Custom Squads
|
|
905
899
|
|
|
906
|
-
Use the **
|
|
900
|
+
Use the **squad-creator** squad to build your own:
|
|
907
901
|
|
|
908
902
|
1. **Define Domain**: What expertise are you capturing?
|
|
909
903
|
2. **Design Agents**: Create specialized roles with clear boundaries
|
|
@@ -919,4 +913,4 @@ Use the **expansion-creator** pack to build your own:
|
|
|
919
913
|
- **Documentation**: Check `docs/` folder for project-specific context
|
|
920
914
|
- **Community**: Discord and GitHub resources available for support
|
|
921
915
|
- **Contributing**: See `CONTRIBUTING.md` for full guidelines
|
|
922
|
-
|
|
916
|
+
|