@musashishao/agent-kit 1.9.0 → 1.9.1

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 (125) hide show
  1. package/.agent/agents/ai-asset-factory.md +700 -0
  2. package/.agent/agents/ai-audio-factory.md +503 -0
  3. package/.agent/agents/game-developer.md +4 -4
  4. package/.agent/agents/orchestrator.md +113 -3
  5. package/.agent/agents/project-planner.md +67 -0
  6. package/.agent/agents/unity-mobile-master.md +949 -0
  7. package/.agent/mcp/config/registry.json +65 -51
  8. package/.agent/mcp/servers/notebooklm/README.md +114 -0
  9. package/.agent/mcp/servers/notebooklm/package.json +35 -0
  10. package/.agent/mcp/servers/notebooklm/src/auth/chrome.ts +225 -0
  11. package/.agent/mcp/servers/notebooklm/src/auth/index.ts +1 -0
  12. package/.agent/mcp/servers/notebooklm/src/index.ts +516 -0
  13. package/.agent/mcp/servers/notebooklm/src/services/index.ts +3 -0
  14. package/.agent/mcp/servers/notebooklm/src/services/library.ts +217 -0
  15. package/.agent/mcp/servers/notebooklm/src/services/notebooklm.ts +380 -0
  16. package/.agent/mcp/servers/notebooklm/tsconfig.json +15 -0
  17. package/.agent/mcp-gateway/README.md +169 -20
  18. package/.agent/mcp-gateway/package.json +22 -7
  19. package/.agent/mcp-gateway/src/auth/index.ts +55 -0
  20. package/.agent/mcp-gateway/src/auth/middleware.ts +242 -0
  21. package/.agent/mcp-gateway/src/auth/oauth.ts +462 -0
  22. package/.agent/mcp-gateway/src/auth/scopes.ts +227 -0
  23. package/.agent/mcp-gateway/src/index.ts +252 -105
  24. package/.agent/mcp-gateway/src/observability/index.ts +5 -0
  25. package/.agent/mcp-gateway/src/observability/otel.ts +405 -0
  26. package/.agent/mcp-gateway/src/transports/index.ts +5 -0
  27. package/.agent/mcp-gateway/src/transports/streamableHttp.ts +235 -0
  28. package/.agent/rules/CODEX.md +89 -0
  29. package/.agent/rules/CODE_RULES.md +73 -0
  30. package/.agent/rules/GEMINI.md +25 -0
  31. package/.agent/rules/MEMORY_STATE.md +110 -0
  32. package/.agent/rules/REFERENCE.md +33 -141
  33. package/.agent/rules/REF_SKILLS.md +116 -0
  34. package/.agent/rules/REF_WORKFLOWS.md +81 -0
  35. package/.agent/scripts/ak_cli.py +106 -5
  36. package/.agent/scripts/memory_manager.py +48 -9
  37. package/.agent/skills/anti-hallucination/SKILL.md +295 -0
  38. package/.agent/skills/anti-hallucination/scripts/check_hallucination.py +299 -0
  39. package/.agent/skills/bifurcation-analysis/SKILL.md +56 -0
  40. package/.agent/skills/brainstorming/SKILL.md +80 -6
  41. package/.agent/skills/decision-memory/SKILL.md +317 -0
  42. package/.agent/skills/emergence-detector/SKILL.md +230 -0
  43. package/.agent/skills/emergence-detector/scripts/check_emergence.py +265 -0
  44. package/.agent/skills/explained-qa/SKILL.md +142 -0
  45. package/.agent/skills/explained-qa/game-terminology.md +214 -0
  46. package/.agent/skills/game-development/ai-dialogue-engine/SKILL.md +442 -0
  47. package/.agent/skills/game-development/ai-graphics-generator/SKILL.md +463 -0
  48. package/.agent/skills/game-development/ai-playtest-framework/SKILL.md +570 -0
  49. package/.agent/skills/game-development/camera-systems/SKILL.md +607 -0
  50. package/.agent/skills/game-development/card-battle-engine/SKILL.md +618 -0
  51. package/.agent/skills/game-development/character-controller-3d/SKILL.md +908 -0
  52. package/.agent/skills/game-development/cloud-save-sync/SKILL.md +527 -0
  53. package/.agent/skills/game-development/combat-system/SKILL.md +748 -0
  54. package/.agent/skills/game-development/compliance-rating/SKILL.md +277 -0
  55. package/.agent/skills/game-development/crossplatform-build/SKILL.md +386 -0
  56. package/.agent/skills/game-development/cultivation-progression/SKILL.md +520 -0
  57. package/.agent/skills/game-development/data-driven-balance/SKILL.md +535 -0
  58. package/.agent/skills/game-development/game-analytics-integrator/SKILL.md +410 -0
  59. package/.agent/skills/game-development/game-audio-advanced/SKILL.md +646 -0
  60. package/.agent/skills/game-development/game-economy-designer/SKILL.md +375 -0
  61. package/.agent/skills/game-development/game-marketing/SKILL.md +85 -0
  62. package/.agent/skills/game-development/game-state-manager/SKILL.md +883 -0
  63. package/.agent/skills/game-development/hybrid-game-spec/SKILL.md +220 -0
  64. package/.agent/skills/game-development/inventory-quest/SKILL.md +747 -0
  65. package/.agent/skills/game-development/liveops/SKILL.md +308 -0
  66. package/.agent/skills/game-development/localization/SKILL.md +286 -0
  67. package/.agent/skills/game-development/mobile-input-patterns/SKILL.md +343 -0
  68. package/.agent/skills/game-development/monetization-strategy/SKILL.md +94 -0
  69. package/.agent/skills/game-development/multiplayer-master/SKILL.md +727 -0
  70. package/.agent/skills/game-development/narrative-branching/SKILL.md +593 -0
  71. package/.agent/skills/game-development/procedural-level-ai/SKILL.md +367 -0
  72. package/.agent/skills/game-development/prototyping-rapid/SKILL.md +205 -0
  73. package/.agent/skills/game-development/spec-ecosystem/SKILL.md +155 -0
  74. package/.agent/skills/game-development/spec-ecosystem/decision-log-format.md +129 -0
  75. package/.agent/skills/game-development/spec-ecosystem/templates/PLAN-template.md +178 -0
  76. package/.agent/skills/game-development/spec-ecosystem/templates/SPEC-template.md +110 -0
  77. package/.agent/skills/game-development/spec-ecosystem/templates/TASKS-template.md +156 -0
  78. package/.agent/skills/game-development/survival-systems/SKILL.md +493 -0
  79. package/.agent/skills/game-development/testing-qa/SKILL.md +270 -0
  80. package/.agent/skills/game-development/unity-mobile-optimization/SKILL.md +271 -0
  81. package/.agent/skills/intent-capture/SKILL.md +65 -0
  82. package/.agent/skills/mcp-composition/SKILL.md +362 -0
  83. package/.agent/skills/mcp-observability/SKILL.md +323 -0
  84. package/.agent/skills/mcp-security/SKILL.md +314 -0
  85. package/.agent/skills/trust-spectrum/SKILL.md +291 -0
  86. package/.agent/skills/vibe-coding-guard/SKILL.md +328 -0
  87. package/.agent/templates/AGENTS.game.md +63 -0
  88. package/.agent/templates/docs/WORKFLOW_GUIDE.en.md +100 -0
  89. package/.agent/templates/docs/WORKFLOW_GUIDE.vi.md +100 -0
  90. package/.agent/workflows/ai-agent.md +2 -0
  91. package/.agent/workflows/autofix.md +1 -0
  92. package/.agent/workflows/brainstorm.md +1 -0
  93. package/.agent/workflows/context.md +1 -0
  94. package/.agent/workflows/create.md +39 -8
  95. package/.agent/workflows/dashboard.md +1 -0
  96. package/.agent/workflows/debug.md +14 -0
  97. package/.agent/workflows/deploy.md +14 -0
  98. package/.agent/workflows/enhance.md +44 -0
  99. package/.agent/workflows/gamekit-init.md +177 -0
  100. package/.agent/workflows/gamekit-launch.md +338 -0
  101. package/.agent/workflows/gamekit-plan.md +204 -0
  102. package/.agent/workflows/gamekit-qa.md +153 -0
  103. package/.agent/workflows/gamekit-spec.md +243 -0
  104. package/.agent/workflows/gamekit-tasks.md +208 -0
  105. package/.agent/workflows/marketing.md +2 -0
  106. package/.agent/workflows/next.md +1 -0
  107. package/.agent/workflows/orchestrate.md +12 -0
  108. package/.agent/workflows/pentest.md +2 -0
  109. package/.agent/workflows/plan.md +42 -0
  110. package/.agent/workflows/preview.md +1 -0
  111. package/.agent/workflows/quality.md +1 -0
  112. package/.agent/workflows/saas.md +2 -0
  113. package/.agent/workflows/spec.md +42 -0
  114. package/.agent/workflows/status.md +1 -0
  115. package/.agent/workflows/test.md +14 -0
  116. package/.agent/workflows/ui-ux-pro-max.md +1 -0
  117. package/bin/cli.js +411 -111
  118. package/package.json +1 -2
  119. package/.agent/agents/game-asset-curator.md +0 -317
  120. package/.agent/agents/game-narrative-designer.md +0 -310
  121. package/.agent/agents/game-qa-agent.md +0 -441
  122. package/.agent/workflows/game-prototype.md +0 -154
  123. package/docs/AI_DATA_INFRASTRUCTURE.md +0 -288
  124. package/docs/CHANGELOG_AI_INFRA.md +0 -141
  125. package/docs/MIGRATION_GUIDE_V1.9.md +0 -55
@@ -1,288 +0,0 @@
1
- # AI Data Infrastructure - User Guide
2
-
3
- > Transform your project into an "AI-Ready" smart repository with Agent Kit's integrated data infrastructure.
4
-
5
- ---
6
-
7
- ## 🎯 Overview
8
-
9
- Agent Kit provides a 4-layer AI Data Infrastructure that makes your project deeply understandable to AI agents:
10
-
11
- ```
12
- ┌─────────────────────────────────────────────────────────────────┐
13
- │ AI DATA INFRASTRUCTURE │
14
- ├─────────────────────────────────────────────────────────────────┤
15
- │ Layer 1: AGENTS.md → Project overview & navigation │
16
- │ Layer 2: graph-mapper → Dependency relationships │
17
- │ Layer 3: rag-engineering → Semantic code search │
18
- │ Layer 4: MCP Gateway → Live connection to AI agents │
19
- └─────────────────────────────────────────────────────────────────┘
20
- ```
21
-
22
- ---
23
-
24
- ## 🚀 Quick Start
25
-
26
- ### For New Projects
27
-
28
- ```bash
29
- # Create a new project with AI infrastructure
30
- npx @musashishao/agent-kit init
31
- npx @musashishao/agent-kit ai init
32
- ```
33
-
34
- ### For Existing Projects
35
-
36
- ```bash
37
- # Add AI infrastructure to existing project
38
- cd your-project
39
- npx @musashishao/agent-kit init
40
- npx @musashishao/agent-kit ai init
41
- ```
42
-
43
- After initialization, your project will have:
44
- - `AGENTS.md` - AI navigation map
45
- - `.agent/graph.json` - Dependency graph
46
- - `.agent/mcp-gateway/` - MCP server for AI connectivity
47
- - `.cursor/mcp.json` - Auto-configured for Cursor
48
-
49
- ---
50
-
51
- ## 📋 Commands Reference
52
-
53
- ### `ai init`
54
- Initialize AI infrastructure for your project.
55
-
56
- ```bash
57
- npx @musashishao/agent-kit ai init
58
- npx @musashishao/agent-kit ai init --force # Regenerate existing files
59
- ```
60
-
61
- **What it does:**
62
- 1. Creates `.agent/` directory structure
63
- 2. Generates `AGENTS.md` with auto-detected tech stack
64
- 3. Builds dependency graph from your source code
65
- 4. Configures AI hosts (Claude, Cursor, VS Code)
66
-
67
- ### `ai sync`
68
- Update AI data after code changes.
69
-
70
- ```bash
71
- npx @musashishao/agent-kit ai sync # Sync everything
72
- npx @musashishao/agent-kit ai sync --target graph # Sync only graph
73
- npx @musashishao/agent-kit ai sync --target rag # Sync only RAG
74
- ```
75
-
76
- **When to use:**
77
- - After significant code changes
78
- - After adding/removing files
79
- - Before major AI-assisted refactoring
80
-
81
- ### `ai status`
82
- Show current AI infrastructure status.
83
-
84
- ```bash
85
- npx @musashishao/agent-kit ai status
86
- ```
87
-
88
- **Output example:**
89
- ```
90
- 📊 Agent Kit Status
91
- 📦 Core Components:
92
- ✅ AGENTS.md
93
- ✅ MCP Gateway
94
- ✅ Dependency Graph
95
- ❌ RAG Chunks: Not found
96
-
97
- ⏰ Sync Status:
98
- Last sync: 2026-01-24T16:50:00
99
- ```
100
-
101
- ### `ai config`
102
- Configure AI hosts to use Agent Kit.
103
-
104
- ```bash
105
- npx @musashishao/agent-kit ai config # Auto-configure all
106
- npx @musashishao/agent-kit ai config --list # List detected hosts
107
- npx @musashishao/agent-kit ai config --copy # Copy config to clipboard
108
- ```
109
-
110
- ---
111
-
112
- ## 🔧 How It Works
113
-
114
- ### Auto-Sync (Magic!)
115
-
116
- When AI agents query your project through the MCP Gateway, the system automatically:
117
-
118
- 1. **Checks timestamps** - Are source files newer than cached data?
119
- 2. **Syncs if needed** - Only updates changed files (incremental)
120
- 3. **Debounces** - Prevents excessive syncing (30s cooldown)
121
- 4. **Returns fresh data** - AI always gets accurate information
122
-
123
- ```
124
- AI asks "What does login.ts do?"
125
-
126
-
127
- MCP Gateway checks: Is data fresh?
128
-
129
- ┌───┴───┐
130
- │ │
131
- YES NO
132
- │ │
133
- ▼ ▼
134
- Return Auto-sync
135
- cached changed files
136
- data │
137
-
138
- Return fresh data
139
- ```
140
-
141
- ### Impact Analysis
142
-
143
- Before editing a file, ask AI: "What will be affected if I change auth.ts?"
144
-
145
- The system uses the dependency graph to show:
146
- - Which files import `auth.ts`
147
- - Which files import THOSE files
148
- - Total impact radius
149
-
150
- ---
151
-
152
- ## 📁 File Structure
153
-
154
- After initialization, your project will have:
155
-
156
- ```
157
- your-project/
158
- ├── AGENTS.md # AI navigation map (Layer 1)
159
- ├── .agent/
160
- │ ├── graph.json # Dependency graph (Layer 2)
161
- │ ├── graph.md # Human-readable dependencies
162
- │ ├── mcp-gateway/ # MCP server (Layer 4)
163
- │ │ ├── src/
164
- │ │ └── dist/
165
- │ ├── rag/ # RAG data (Layer 3)
166
- │ │ └── chunks.json
167
- │ ├── .cache/ # Sync timestamps
168
- │ └── scripts/ # CLI scripts
169
- ├── .cursor/
170
- │ └── mcp.json # Cursor MCP config
171
- └── .vscode/
172
- └── settings.json # VS Code MCP config (if applicable)
173
- ```
174
-
175
- ---
176
-
177
- ## 🔌 MCP Tools Available
178
-
179
- When connected via MCP, AI agents have access to:
180
-
181
- | Tool | Description |
182
- |------|-------------|
183
- | `get_project_context` | Read project overview from AGENTS.md |
184
- | `analyze_dependencies` | Get imports/exports for a file |
185
- | `search_code_logic` | Semantic search through codebase |
186
- | `get_impact_zone` | Find all affected files for a change |
187
- | `force_sync` | Manually refresh all AI data |
188
-
189
- ---
190
-
191
- ## 🎯 Best Practices
192
-
193
- ### 1. Keep AGENTS.md Updated
194
- While auto-generated, customize `AGENTS.md` with:
195
- - Current sprint focus
196
- - Team conventions not in linter config
197
- - Known gotchas
198
-
199
- ### 2. Sync Before Big Changes
200
- ```bash
201
- npx @musashishao/agent-kit ai sync
202
- ```
203
- Then ask AI to help with refactoring.
204
-
205
- ### 3. Use Impact Analysis
206
- Before editing shared utilities:
207
- ```
208
- Me: What happens if I change the Button component?
209
- AI: [Uses get_impact_zone] Button is imported by 12 components...
210
- ```
211
-
212
- ### 4. Trust the Auto-Sync
213
- You don't need to manually sync after every save. The MCP Gateway handles this automatically when AI makes queries.
214
-
215
- ---
216
-
217
- ## 🔍 Troubleshooting
218
-
219
- ### "MCP Gateway not found"
220
- ```bash
221
- cd .agent/mcp-gateway
222
- npm install
223
- npm run build
224
- ```
225
-
226
- ### "Dependency graph is empty"
227
- Make sure you have a `src/` or `app/` directory with code files.
228
-
229
- ### "AI host not configured"
230
- ```bash
231
- npx @musashishao/agent-kit ai config --copy
232
- # Paste into your AI host's MCP settings
233
- ```
234
-
235
- ### "Sync takes too long"
236
- For large projects (100k+ LOC), initial sync may take 30-60 seconds. Subsequent syncs are incremental and faster.
237
-
238
- ---
239
-
240
- ## 🏗️ Architecture
241
-
242
- ```
243
- ┌─────────────────────────────────────────────────────────────────┐
244
- │ YOUR PROJECT │
245
- ├─────────────────────────────────────────────────────────────────┤
246
- │ │
247
- │ Source Code AI Infrastructure │
248
- │ ┌─────────┐ ┌────────────────────────────────────┐ │
249
- │ │ src/ │◄────────►│ AGENTS.md (Navigation Map) │ │
250
- │ │ app/ │ │ graph.json (Dependency Graph) │ │
251
- │ │ lib/ │ │ rag/chunks.json (Code Chunks) │ │
252
- │ └─────────┘ └────────────────────────────────────┘ │
253
- │ ▲ │
254
- │ │ │
255
- │ ┌─────────────┴─────────────┐ │
256
- │ │ MCP GATEWAY SERVER │ │
257
- │ │ │ │
258
- │ │ • Auto-sync on query │ │
259
- │ │ • Debounced updates │ │
260
- │ │ • Incremental changes │ │
261
- │ └─────────────┬─────────────┘ │
262
- │ │ │
263
- └──────────────────────────────────────┼──────────────────────────┘
264
- │ MCP Protocol
265
-
266
- ┌─────────────────────────────────────────────────────────────────┐
267
- │ AI HOSTS │
268
- │ │
269
- │ ┌──────────────┐ ┌──────────────┐ ┌──────────────┐ │
270
- │ │ Claude │ │ Cursor │ │ Antigravity │ │
271
- │ │ Desktop │ │ / Windsurf │ │ IDE / Codex │ │
272
- │ └──────────────┘ └──────────────┘ └──────────────┘ │
273
- │ │
274
- └─────────────────────────────────────────────────────────────────┘
275
- ```
276
-
277
- ---
278
-
279
- ## 📚 Related Documentation
280
-
281
- - [AGENTS.md Template](/.agent/skills/documentation-templates/agents-template.md)
282
- - [Graph Mapper Skill](/.agent/skills/graph-mapper/SKILL.md)
283
- - [RAG Engineering Skill](/.agent/skills/rag-engineering/SKILL.md)
284
- - [MCP Builder Skill](/.agent/skills/mcp-builder/SKILL.md)
285
-
286
- ---
287
-
288
- *Generated by Agent Kit v1.0.0*
@@ -1,141 +0,0 @@
1
- # AI Data Infrastructure - Changelog
2
-
3
- All notable changes to the AI Data Infrastructure are documented here.
4
-
5
- ---
6
-
7
- ## [1.9.0] - 2026-01-28
8
-
9
- ### Added
10
- #### Phase 1-5: Massive Skill & Agent Expansion
11
- - **Created 46 New Skills** (Total count reached 104)
12
- - **AI Development**: `llm-app-patterns`, `langgraph`, `crewai`, `langfuse`, `autonomous-agent-patterns`.
13
- - **Cloud & BaaS**: `aws-serverless`, `gcp-cloud-run`, `azure-functions`, `firebase`, `supabase-integration`.
14
- - **SaaS & Runtime**: `micro-saas-launcher`, `bun-development`, `inngest`, `ai-product`, `ai-wrapper-product`.
15
- - **Marketing & Growth**: `analytics-tracking`, `ab-test-setup`, `copywriting`, `launch-strategy`, `paid-ads`.
16
- - **Security Deep Dive**: `ethical-hacking-methodology`, `burp-suite-testing`, `aws-penetration-testing`, `idor-testing`, `api-fuzzing-bug-bounty`.
17
- - **Created 4 New Specialist Agents**:
18
- - `@ai-architect` - Expert in agentic workflows and LLM system design.
19
- - `@cloud-engineer` - specialist in serverless and multi-cloud infrastructure.
20
- - `@marketing-specialist` - Growth marketer focusing on acquisition and retention.
21
- - `@penetration-tester` - Offensive security specialist for deep audits.
22
- - **Created 4 New Workflows**:
23
- - `/ai-agent` - Workflow for building autonomous AI agents.
24
- - `/marketing` - Comprehensive campaign planning and growth strategy.
25
- - `/pentest` - Systematic security assessment and penetration testing.
26
- - `/saas` - Transform projects into complete SaaS products.
27
-
28
- ### Updated
29
- - Updated `README.md` with new agent/skill/workflow counts.
30
- - Updated `ARCHITECTURE.md` to version 1.9.0 with revised directory and agent maps.
31
- - Updated `REFERENCE.md` with all 104 skills and new agent/workflow mappings.
32
- - Created `docs/MIGRATION_GUIDE_V1.9.md` for existing users.
33
- - Created `.agent/skills/DEPENDENCIES.md` for cross-skill relationship mapping.
34
-
35
- ---
36
-
37
- ## [1.0.0] - 2026-01-24
38
-
39
- ### Added
40
-
41
- #### Phase 1: MCP Gateway Server Core
42
- - Created MCP Gateway Server (`/.agent/mcp-gateway/`)
43
- - Implemented 5 MCP tools:
44
- - `get_project_context` - Read AGENTS.md sections
45
- - `analyze_dependencies` - Query dependency graph
46
- - `search_code_logic` - Semantic code search
47
- - `get_impact_zone` - Find affected files for changes
48
- - `force_sync` - Refresh all AI data
49
- - TypeScript implementation with strict mode
50
- - Compatible with Claude Desktop, Cursor, VS Code, Windsurf
51
-
52
- #### Phase 2: Auto-Sync Engine
53
- - `TimestampChecker` - Tracks file modification times
54
- - `IncrementalSyncer` - Updates only changed files
55
- - `Debouncer` - 30-second cooldown between syncs
56
- - Integrated auto-sync into MCP tools
57
- - Just-in-time data refresh on AI queries
58
-
59
- #### Phase 3: Auto-Config System
60
- - `setup_host.py` - Auto-configures AI hosts
61
- - Config templates for Claude Desktop, Cursor, VS Code
62
- - OS detection (Mac, Windows, Linux)
63
- - Backup before modifying existing configs
64
- - Clipboard copy for manual setup
65
- - `verify_install.py` - Installation health check
66
-
67
- #### Phase 4: CLI Wrapper
68
- - `ak_cli.py` - Main CLI entry point
69
- - Commands:
70
- - `ai init` - Initialize AI infrastructure
71
- - `ai sync` - Sync AI data
72
- - `ai status` - Show infrastructure status
73
- - `ai config` - Configure AI hosts
74
- - Integrated into `bin/cli.js` as `ai` subcommand group
75
-
76
- #### Phase 5: Documentation
77
- - `docs/AI_DATA_INFRASTRUCTURE.md` - Comprehensive user guide
78
- - Updated `ARCHITECTURE.md` with AI Infrastructure section
79
- - Added skill references and documentation links
80
-
81
- ### New Skills Added
82
- - `graph-mapper` - Lightweight Knowledge Graph generator
83
- - `rag-engineering` - Smart code chunking and semantic search
84
- - `documentation-templates/agents-template.md` - AGENTS.md template
85
-
86
- ### Updated Skills
87
- - `app-builder` - Added AI Infrastructure generation step
88
- - `documentation-templates` - Added AGENTS.md reference
89
-
90
- ### Updated Workflows
91
- - `/create` - Now includes AI Infrastructure setup (Step 4)
92
-
93
- ---
94
-
95
- ## File Summary
96
-
97
- | Category | Files Created |
98
- |----------|---------------|
99
- | **MCP Gateway** | 8 files (`/mcp-gateway/src/`) |
100
- | **Skills** | 9 files (`graph-mapper/`, `rag-engineering/`) |
101
- | **Scripts** | 4 files (`ak_cli.py`, `setup_host.py`, etc.) |
102
- | **Templates** | 4 files (`mcp_configs/`, `agents-template.md`) |
103
- | **Documentation** | 2 files |
104
- | **Total** | ~27 new files |
105
-
106
- ---
107
-
108
- ## Architecture
109
-
110
- ```
111
- Agent Kit v5.0+ with AI Data Infrastructure
112
- ============================================
113
-
114
- ┌─────────────────────────────────────────┐
115
- │ USER PROJECT │
116
- └───────────────────┬─────────────────────┘
117
-
118
- ┌───────────────────▼─────────────────────┐
119
- │ AI DATA INFRASTRUCTURE │
120
- │ │
121
- │ ┌─────────┐ ┌─────────┐ ┌─────────┐ │
122
- │ │AGENTS.md│ │ Graph │ │ RAG │ │
123
- │ │ (Map) │ │ (KG) │ │(Chunks) │ │
124
- │ └────┬────┘ └────┬────┘ └────┬────┘ │
125
- │ └───────────┼───────────┘ │
126
- │ │ │
127
- │ ┌────────▼────────┐ │
128
- │ │ MCP GATEWAY │ │
129
- │ │ (Auto-Sync) │ │
130
- │ └────────┬────────┘ │
131
- └───────────────────┼─────────────────────┘
132
- │ MCP Protocol
133
- ┌───────────────────▼─────────────────────┐
134
- │ AI HOSTS │
135
- │ Claude │ Cursor │ Windsurf │ Codex │
136
- └─────────────────────────────────────────┘
137
- ```
138
-
139
- ---
140
-
141
- *Documented by Agent Kit on 2026-01-24*
@@ -1,55 +0,0 @@
1
- # 🔄 Migration Guide: Agent Kit v1.9.0 (Jan 2026)
2
-
3
- This guide helps existing users upgrade their Agent Kit installation to include the 45+ new skills, 4 new agents, and 4 new workflows introduced in the January 2026 expansion.
4
-
5
- ## 📦 What's New?
6
- - **AI Core**: LangGraph, CrewAI, memory systems, and observability.
7
- - **Cloud**: Full support for AWS, GCP, Azure, Firebase, and Supabase.
8
- - **SaaS**: Micro-SaaS launcher, Inngest, and building AI wrappers.
9
- - **Growth**: High-conversion copy, A/B testing, and launch strategy.
10
- - **Security**: Professional pentest methodology and bug bounty tools.
11
-
12
- ---
13
-
14
- ## 🚀 Upgrade Steps
15
-
16
- ### 1. Update Core Metadata
17
- If you are using a localized version (Vietnamese), run the following to sync the new workflow descriptions:
18
- ```bash
19
- agent-kit set-lang vi
20
- ```
21
-
22
- ### 2. Verify Your Agents
23
- The expansion adds 4 new specialist agents. Verify they are available in your `.agent/agents/` folder:
24
- - `marketing-specialist`
25
- - `penetration-tester`
26
- - `ai-architect`
27
- - `cloud-engineer`
28
-
29
- ### 3. Sync Slash Commands
30
- If you use Codex CLI or Antigravity, update your slash commands:
31
- ```bash
32
- agent-kit setup-codex
33
- ```
34
- This will register the new `/marketing`, `/pentest`, `/saas`, and `/ai-agent` commands.
35
-
36
- ### 4. Explore New Skills
37
- Check `REFERENCE.md` in the project root or `.agent/rules/` for the complete list of 104 available skills.
38
-
39
- ---
40
-
41
- ## ⚠️ Breaking Changes
42
- - **Security Auditor**: The `@security-auditor` agent now focuses on compliance and hardening. Use `@penetration-tester` for offensive testing and exploitation tasks.
43
- - **Architecture**: The default `ARCHITECTURE.md` has been moved to `.agent/ARCHITECTURE.md` for better project organization.
44
-
45
- ---
46
-
47
- ## 🛠 Troubleshooting
48
- If you don't see the new skills:
49
- 1. Run `agent-kit doctor` to verify the installation integrity.
50
- 2. Ensure your `.agent/skills/` directory contains exactly 104 subfolders.
51
- 3. If files are missing, re-run the initialization with `agent-kit init --force`.
52
-
53
- ---
54
-
55
- *Thank you for pushing the boundaries of AI-native development!*