This skill should be used when the user asks about "project memory", "persistent context", "guidance files", ".studio files", "session persistence", "direction files", "context between sessions", or discusses maintaining project context across Claude sessions. Provides framework for persistent project guidance.
/plugin marketplace add nethercore-systems/nethercore-ai-plugins/plugin install creative-direction@nethercore-ai-pluginsThis skill inherits all available tools. When active, it can use any tool Claude has access to.
references/file-templates.mdMaintain project context across sessions through structured files in .studio/.
Claude sessions are stateless. Without persistent documentation:
project/
├── .studio/
│ ├── creative-direction.md # Vision and pillars
│ ├── art-direction.md # Visual style
│ ├── sound-direction.md # Audio direction
│ ├── tech-direction.md # Technical constraints
│ ├── visual-style.md # Detailed visual specs
│ ├── sonic-identity.md # Audio style specs
│ ├── project-status.md # Work state
│ ├── architecture/ # ADRs
│ │ ├── decisions.md
│ │ └── 001-*.md
│ ├── characters/ # Character specs
│ ├── mechanics/ # Mechanic specs
│ ├── assets/ # Asset specs
│ ├── animations/ # Motion descriptions
│ ├── music/ # Music specs
│ ├── sfx/ # SFX specs
│ └── analysis/ # Analysis reports
└── ...
All .studio/ files are committed and shared with the team.
---
art_style: dark-fantasy-painterly
color_palette: desaturated-warm
sonic_identity: organic-ambient
architecture: ecs-with-rollback
determinism: required
file_size_limit: 300
creative_pillars:
- atmospheric-dread
- meaningful-choices
---
# Project Vision
[Experience promise]
# Art Direction Notes
- 2024-01-15: Established dark fantasy palette
# Sound Direction Notes
- 2024-01-16: Organic textures over synthetic
# Tech Direction Notes
- 2024-01-15: Using fixed-point math
Start: Check .studio/ files, load context
During: Ensure consistency with previous decisions, update if new
End: Update project-status.md, document new decisions
| File | Target | Max |
|---|---|---|
| creative-direction.md | 200 | 500 |
| project-status.md | 50 | 100 |
| Individual ADRs | 100 | 200 |
When files grow: archive old decisions, keep recent, link to archives.
references/file-templates.md - Copy-paste templatesThis skill should be used when the user asks to "create a slash command", "add a command", "write a custom command", "define command arguments", "use command frontmatter", "organize commands", "create command with file references", "interactive command", "use AskUserQuestion in command", or needs guidance on slash command structure, YAML frontmatter fields, dynamic arguments, bash execution in commands, user interaction patterns, or command development best practices for Claude Code.
This skill should be used when the user asks to "create an agent", "add an agent", "write a subagent", "agent frontmatter", "when to use description", "agent examples", "agent tools", "agent colors", "autonomous agent", or needs guidance on agent structure, system prompts, triggering conditions, or agent development best practices for Claude Code plugins.
This skill should be used when the user asks to "create a hook", "add a PreToolUse/PostToolUse/Stop hook", "validate tool use", "implement prompt-based hooks", "use ${CLAUDE_PLUGIN_ROOT}", "set up event-driven automation", "block dangerous commands", or mentions hook events (PreToolUse, PostToolUse, Stop, SubagentStop, SessionStart, SessionEnd, UserPromptSubmit, PreCompact, Notification). Provides comprehensive guidance for creating and implementing Claude Code plugin hooks with focus on advanced prompt-based hooks API.