@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.
- package/.agent/agents/ai-asset-factory.md +700 -0
- package/.agent/agents/ai-audio-factory.md +503 -0
- package/.agent/agents/game-developer.md +4 -4
- package/.agent/agents/orchestrator.md +113 -3
- package/.agent/agents/project-planner.md +67 -0
- package/.agent/agents/unity-mobile-master.md +949 -0
- package/.agent/mcp/config/registry.json +65 -51
- package/.agent/mcp/servers/notebooklm/README.md +114 -0
- package/.agent/mcp/servers/notebooklm/package.json +35 -0
- package/.agent/mcp/servers/notebooklm/src/auth/chrome.ts +225 -0
- package/.agent/mcp/servers/notebooklm/src/auth/index.ts +1 -0
- package/.agent/mcp/servers/notebooklm/src/index.ts +516 -0
- package/.agent/mcp/servers/notebooklm/src/services/index.ts +3 -0
- package/.agent/mcp/servers/notebooklm/src/services/library.ts +217 -0
- package/.agent/mcp/servers/notebooklm/src/services/notebooklm.ts +380 -0
- package/.agent/mcp/servers/notebooklm/tsconfig.json +15 -0
- package/.agent/mcp-gateway/README.md +169 -20
- package/.agent/mcp-gateway/package.json +22 -7
- package/.agent/mcp-gateway/src/auth/index.ts +55 -0
- package/.agent/mcp-gateway/src/auth/middleware.ts +242 -0
- package/.agent/mcp-gateway/src/auth/oauth.ts +462 -0
- package/.agent/mcp-gateway/src/auth/scopes.ts +227 -0
- package/.agent/mcp-gateway/src/index.ts +252 -105
- package/.agent/mcp-gateway/src/observability/index.ts +5 -0
- package/.agent/mcp-gateway/src/observability/otel.ts +405 -0
- package/.agent/mcp-gateway/src/transports/index.ts +5 -0
- package/.agent/mcp-gateway/src/transports/streamableHttp.ts +235 -0
- package/.agent/rules/CODEX.md +89 -0
- package/.agent/rules/CODE_RULES.md +73 -0
- package/.agent/rules/GEMINI.md +25 -0
- package/.agent/rules/MEMORY_STATE.md +110 -0
- package/.agent/rules/REFERENCE.md +33 -141
- package/.agent/rules/REF_SKILLS.md +116 -0
- package/.agent/rules/REF_WORKFLOWS.md +81 -0
- package/.agent/scripts/ak_cli.py +106 -5
- package/.agent/scripts/memory_manager.py +48 -9
- package/.agent/skills/anti-hallucination/SKILL.md +295 -0
- package/.agent/skills/anti-hallucination/scripts/check_hallucination.py +299 -0
- package/.agent/skills/bifurcation-analysis/SKILL.md +56 -0
- package/.agent/skills/brainstorming/SKILL.md +80 -6
- package/.agent/skills/decision-memory/SKILL.md +317 -0
- package/.agent/skills/emergence-detector/SKILL.md +230 -0
- package/.agent/skills/emergence-detector/scripts/check_emergence.py +265 -0
- package/.agent/skills/explained-qa/SKILL.md +142 -0
- package/.agent/skills/explained-qa/game-terminology.md +214 -0
- package/.agent/skills/game-development/ai-dialogue-engine/SKILL.md +442 -0
- package/.agent/skills/game-development/ai-graphics-generator/SKILL.md +463 -0
- package/.agent/skills/game-development/ai-playtest-framework/SKILL.md +570 -0
- package/.agent/skills/game-development/camera-systems/SKILL.md +607 -0
- package/.agent/skills/game-development/card-battle-engine/SKILL.md +618 -0
- package/.agent/skills/game-development/character-controller-3d/SKILL.md +908 -0
- package/.agent/skills/game-development/cloud-save-sync/SKILL.md +527 -0
- package/.agent/skills/game-development/combat-system/SKILL.md +748 -0
- package/.agent/skills/game-development/compliance-rating/SKILL.md +277 -0
- package/.agent/skills/game-development/crossplatform-build/SKILL.md +386 -0
- package/.agent/skills/game-development/cultivation-progression/SKILL.md +520 -0
- package/.agent/skills/game-development/data-driven-balance/SKILL.md +535 -0
- package/.agent/skills/game-development/game-analytics-integrator/SKILL.md +410 -0
- package/.agent/skills/game-development/game-audio-advanced/SKILL.md +646 -0
- package/.agent/skills/game-development/game-economy-designer/SKILL.md +375 -0
- package/.agent/skills/game-development/game-marketing/SKILL.md +85 -0
- package/.agent/skills/game-development/game-state-manager/SKILL.md +883 -0
- package/.agent/skills/game-development/hybrid-game-spec/SKILL.md +220 -0
- package/.agent/skills/game-development/inventory-quest/SKILL.md +747 -0
- package/.agent/skills/game-development/liveops/SKILL.md +308 -0
- package/.agent/skills/game-development/localization/SKILL.md +286 -0
- package/.agent/skills/game-development/mobile-input-patterns/SKILL.md +343 -0
- package/.agent/skills/game-development/monetization-strategy/SKILL.md +94 -0
- package/.agent/skills/game-development/multiplayer-master/SKILL.md +727 -0
- package/.agent/skills/game-development/narrative-branching/SKILL.md +593 -0
- package/.agent/skills/game-development/procedural-level-ai/SKILL.md +367 -0
- package/.agent/skills/game-development/prototyping-rapid/SKILL.md +205 -0
- package/.agent/skills/game-development/spec-ecosystem/SKILL.md +155 -0
- package/.agent/skills/game-development/spec-ecosystem/decision-log-format.md +129 -0
- package/.agent/skills/game-development/spec-ecosystem/templates/PLAN-template.md +178 -0
- package/.agent/skills/game-development/spec-ecosystem/templates/SPEC-template.md +110 -0
- package/.agent/skills/game-development/spec-ecosystem/templates/TASKS-template.md +156 -0
- package/.agent/skills/game-development/survival-systems/SKILL.md +493 -0
- package/.agent/skills/game-development/testing-qa/SKILL.md +270 -0
- package/.agent/skills/game-development/unity-mobile-optimization/SKILL.md +271 -0
- package/.agent/skills/intent-capture/SKILL.md +65 -0
- package/.agent/skills/mcp-composition/SKILL.md +362 -0
- package/.agent/skills/mcp-observability/SKILL.md +323 -0
- package/.agent/skills/mcp-security/SKILL.md +314 -0
- package/.agent/skills/trust-spectrum/SKILL.md +291 -0
- package/.agent/skills/vibe-coding-guard/SKILL.md +328 -0
- package/.agent/templates/AGENTS.game.md +63 -0
- package/.agent/templates/docs/WORKFLOW_GUIDE.en.md +100 -0
- package/.agent/templates/docs/WORKFLOW_GUIDE.vi.md +100 -0
- package/.agent/workflows/ai-agent.md +2 -0
- package/.agent/workflows/autofix.md +1 -0
- package/.agent/workflows/brainstorm.md +1 -0
- package/.agent/workflows/context.md +1 -0
- package/.agent/workflows/create.md +39 -8
- package/.agent/workflows/dashboard.md +1 -0
- package/.agent/workflows/debug.md +14 -0
- package/.agent/workflows/deploy.md +14 -0
- package/.agent/workflows/enhance.md +44 -0
- package/.agent/workflows/gamekit-init.md +177 -0
- package/.agent/workflows/gamekit-launch.md +338 -0
- package/.agent/workflows/gamekit-plan.md +204 -0
- package/.agent/workflows/gamekit-qa.md +153 -0
- package/.agent/workflows/gamekit-spec.md +243 -0
- package/.agent/workflows/gamekit-tasks.md +208 -0
- package/.agent/workflows/marketing.md +2 -0
- package/.agent/workflows/next.md +1 -0
- package/.agent/workflows/orchestrate.md +12 -0
- package/.agent/workflows/pentest.md +2 -0
- package/.agent/workflows/plan.md +42 -0
- package/.agent/workflows/preview.md +1 -0
- package/.agent/workflows/quality.md +1 -0
- package/.agent/workflows/saas.md +2 -0
- package/.agent/workflows/spec.md +42 -0
- package/.agent/workflows/status.md +1 -0
- package/.agent/workflows/test.md +14 -0
- package/.agent/workflows/ui-ux-pro-max.md +1 -0
- package/bin/cli.js +411 -111
- package/package.json +1 -2
- package/.agent/agents/game-asset-curator.md +0 -317
- package/.agent/agents/game-narrative-designer.md +0 -310
- package/.agent/agents/game-qa-agent.md +0 -441
- package/.agent/workflows/game-prototype.md +0 -154
- package/docs/AI_DATA_INFRASTRUCTURE.md +0 -288
- package/docs/CHANGELOG_AI_INFRA.md +0 -141
- package/docs/MIGRATION_GUIDE_V1.9.md +0 -55
|
@@ -27,6 +27,18 @@ You are a project planning expert. You analyze user requests, break them into ta
|
|
|
27
27
|
| Complex request, no spec | Say: "This is a complex feature. Run `/spec` first." |
|
|
28
28
|
| Simple request (1-2 files) | Proceed directly to Phase -1 |
|
|
29
29
|
|
|
30
|
+
### 🎮 Game Project Detection (Professional)
|
|
31
|
+
|
|
32
|
+
| Keywords | Action |
|
|
33
|
+
|----------|--------|
|
|
34
|
+
| "game", "Unity", "mobile game" | Redirect to `/game-from-idea` (Inception) or `/game-hybrid` (Dev) |
|
|
35
|
+
| New Game Idea | Start with `/game-from-idea` for GDD and Architecture |
|
|
36
|
+
| Implementation Task | Use `/game-hybrid` (Macro Spec → Feature Swarm) |
|
|
37
|
+
|
|
38
|
+
> 🎮 **Game Rule:** Agent Kit focuses on professional, complex projects. No "one-click" game generation.
|
|
39
|
+
|
|
40
|
+
> 🎮 **Game Rule:** Game projects use 3-Tier Hybrid Workflow instead of standard SDD.
|
|
41
|
+
|
|
30
42
|
---
|
|
31
43
|
|
|
32
44
|
## 🛑 PHASE 0: CONTEXT CHECK (QUICK)
|
|
@@ -74,6 +86,61 @@ You are a project planning expert. You analyze user requests, break them into ta
|
|
|
74
86
|
6. Assign specialized agents
|
|
75
87
|
7. **Create `{task-slug}.md` in project root (MANDATORY for PLANNING mode)**
|
|
76
88
|
8. **Verify plan file exists before exiting (PLANNING mode CHECKPOINT)**
|
|
89
|
+
9. **Run Bifurcation Analysis to identify decision points**
|
|
90
|
+
|
|
91
|
+
---
|
|
92
|
+
|
|
93
|
+
## 🔀 BIFURCATION ANALYSIS (Vibe Coding 2026)
|
|
94
|
+
|
|
95
|
+
> **Identify ALL decision points BEFORE implementation to avoid mid-stream pivots**
|
|
96
|
+
|
|
97
|
+
### What is Bifurcation?
|
|
98
|
+
|
|
99
|
+
A **bifurcation point** is any place where the project could go in different directions. Identifying these early prevents costly rework.
|
|
100
|
+
|
|
101
|
+
### Bifurcation Categories
|
|
102
|
+
|
|
103
|
+
| Category | Examples | Impact |
|
|
104
|
+
|----------|----------|--------|
|
|
105
|
+
| **Tech Stack** | React vs Vue, PostgreSQL vs MongoDB | 🔴 High |
|
|
106
|
+
| **Architecture** | Monolith vs Microservices, SSR vs SPA | 🔴 High |
|
|
107
|
+
| **API Design** | REST vs GraphQL, versioning strategy | 🟡 Medium |
|
|
108
|
+
| **Auth Strategy** | JWT vs Session, OAuth providers | 🟡 Medium |
|
|
109
|
+
| **UI Pattern** | Component library choice, design system | 🟡 Medium |
|
|
110
|
+
| **Scope** | MVP features vs stretch goals | 🟢 Variable |
|
|
111
|
+
|
|
112
|
+
### Bifurcation Analysis Template
|
|
113
|
+
|
|
114
|
+
```markdown
|
|
115
|
+
## 🔀 Bifurcation Analysis
|
|
116
|
+
|
|
117
|
+
### Decision 1: [Decision Point]
|
|
118
|
+
**Options:**
|
|
119
|
+
| Option | Pros | Cons |
|
|
120
|
+
|--------|------|------|
|
|
121
|
+
| A: ... | ... | ... |
|
|
122
|
+
| B: ... | ... | ... |
|
|
123
|
+
|
|
124
|
+
**Recommended:** [Option] because [rationale]
|
|
125
|
+
**User Input Needed:** Yes/No
|
|
126
|
+
|
|
127
|
+
---
|
|
128
|
+
### Decision 2: [Decision Point]
|
|
129
|
+
...
|
|
130
|
+
```
|
|
131
|
+
|
|
132
|
+
### Integration with Decision Memory
|
|
133
|
+
|
|
134
|
+
After each bifurcation is resolved:
|
|
135
|
+
```
|
|
136
|
+
1. Log decision to `.agent/memory/decisions.json`
|
|
137
|
+
2. Include rationale and rejected alternatives
|
|
138
|
+
3. Mark reversibility level (easy/medium/hard)
|
|
139
|
+
```
|
|
140
|
+
|
|
141
|
+
**Skills to Apply:**
|
|
142
|
+
- `decision-memory` - Store WHY decisions were made
|
|
143
|
+
- `brainstorming` - Socratic questioning for unclear decisions
|
|
77
144
|
|
|
78
145
|
---
|
|
79
146
|
|