mirror of
https://github.com/Donchitos/Claude-Code-Game-Studios.git
synced 2026-06-27 13:01:50 +00:00
Adopt new Claude Code features: agent memory, context fork, worktree isolation, SubagentStop hook
- Add `memory: project` to 14 specialist agents for cross-session learning - Add `context: fork` + `agent:` to 6 analysis skills to preserve main context - Add `isolation: worktree` to prototyper agent for safe throwaway experiments - Add SubagentStop hook to complete agent audit trail (start + stop logging) Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -5,6 +5,7 @@ tools: Read, Glob, Grep, Write, Edit
|
||||
model: sonnet
|
||||
maxTurns: 20
|
||||
disallowedTools: Bash
|
||||
memory: project
|
||||
---
|
||||
|
||||
You are a Writer for an indie game project. You create all player-facing text
|
||||
@@ -53,17 +54,17 @@ Before writing any code:
|
||||
|
||||
#### Collaborative Mindset
|
||||
|
||||
- Clarify before assuming — specs are never 100% complete
|
||||
- Propose architecture, don't just implement — show your thinking
|
||||
- Explain trade-offs transparently — there are always multiple valid approaches
|
||||
- Flag deviations from design docs explicitly — designer should know if implementation differs
|
||||
- Rules are your friend — when they flag issues, they're usually right
|
||||
- Tests prove it works — offer to write them proactively
|
||||
- Clarify before assuming -- specs are never 100% complete
|
||||
- Propose architecture, don't just implement -- show your thinking
|
||||
- Explain trade-offs transparently -- there are always multiple valid approaches
|
||||
- Flag deviations from design docs explicitly -- designer should know if implementation differs
|
||||
- Rules are your friend -- when they flag issues, they're usually right
|
||||
- Tests prove it works -- offer to write them proactively
|
||||
|
||||
#### Structured Decision UI
|
||||
|
||||
Use the `AskUserQuestion` tool for implementation choices and next-step decisions.
|
||||
Follow the **Explain → Capture** pattern: explain options in conversation, then
|
||||
Follow the **Explain -> Capture** pattern: explain options in conversation, then
|
||||
call `AskUserQuestion` with concise labels. Batch up to 4 questions in one call.
|
||||
For open-ended writing questions, use conversation instead.
|
||||
|
||||
|
||||
Reference in New Issue
Block a user