원클릭으로
init-workspace
Use when creating or updating a repository's root AGENTS.md file to provide project-specific guidance for agents
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Use when creating or updating a repository's root AGENTS.md file to provide project-specific guidance for agents
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Use before any creative work - creating features, building components, adding functionality, or modifying behavior. Explores user intent, requirements and design before implementation.
Use when facing 2+ independent tasks that can be worked on without shared state or sequential dependencies
Use when you have a written implementation plan to execute with review checkpoints
Use when implementation is complete, all tests pass, and you need to decide how to integrate the work - guides completion of development work by presenting structured options for merge, PR, or cleanup
Use when receiving code review feedback, before implementing suggestions, especially if feedback seems unclear or technically questionable - requires technical rigor and verification, not performative agreement or blind implementation
Use when completing tasks, implementing major features, or before merging to verify work meets requirements
| name | init-workspace |
| description | Use when creating or updating a repository's root AGENTS.md file to provide project-specific guidance for agents |
| metadata | {"user-invocable":true,"disable-model-invocation":true} |
Create a focused, repository-specific AGENTS.md file that provides project guidance without duplicating mode-specific rules.
The root AGENTS.md file provides repository-specific standing operating procedures. It works alongside .bob/custom_modes.yaml (mode definitions) and .bob/commands/ (workflow commands), but does NOT duplicate their content.
.bob/rules-{mode}/AGENTS.md).bob/commands/)Understand what belongs where:
| File | Scope | Content |
|---|---|---|
.bob/custom_modes.yaml | Mode definition | Lightweight steering, command awareness |
.bob/rules-{mode}/AGENTS.md | Mode behavior | Enforcement rules, anti-patterns, "1% rule" |
AGENTS.md (root) | Repository | Project-specific workflows, commands, conventions |
Critical: Root AGENTS.md is about THIS PROJECT, not about how modes work.
| Don't Do This | Why It's Wrong | Do This Instead |
|---|---|---|
Copy .bob/rules-Superpowers/AGENTS.md | Wrong scope - mode rules ≠ project guidance | Reference mode, add project specifics |
| List all available commands | Duplicates .bob/commands/, gets stale | Reference command directory |
| Add generic placeholder sections | No value, just noise | Add actual project information or omit |
| Add TODO/TBD markers | Defers work, creates placeholders | Ask for info now |
| Include workflow enforcement rules | Belongs in mode-specific rules | Focus on project conventions |
| Write 100+ lines | Maintenance burden, likely duplicative | Keep focused, 30-50 lines typical |
Check what already exists:
.bob/custom_modes.yaml? (Superpowers mode defined?).bob/rules-Superpowers/AGENTS.md? (Mode rules exist?)AGENTS.md? (If yes, is it duplicative?)If root AGENTS.md exists and is duplicative:
Ask the user about THIS project:
Don't guess. If you don't know, ask.
Use this template structure:
# AGENTS.md
Repository-specific guidance for agents working in this project.
## Purpose
This file provides project-specific operating guidance. It works alongside:
- `.bob/custom_modes.yaml` - Superpowers mode (always-on command awareness)
- `.bob/commands/` - Detailed workflow commands
## Instruction Priority
1. Direct user instructions (highest)
2. Repository-specific instructions (this file)
3. Bob Superpowers commands
4. Default agent behavior
## Project-Specific Workflows
[Add actual project preferences, e.g.:]
- Prefer `/test-driven-development` for all feature work
- Use `/systematic-debugging` for production issues
- Always run tests before committing
## Build & Test Commands
[Add actual commands for THIS project:]
```bash
# Run tests
npm test
# Build
npm run build
[Add actual architecture info:]
src/index.tsconfig/[Add actual conventions:]
[Add actual gotchas, deployment notes, etc.]
### 5. Keep It Focused
**Good content:**
- Actual build commands for this project
- Actual entry points and architecture
- Actual coding conventions used here
- Actual dangerous pitfalls specific to this codebase
**Bad content:**
- Generic workflow descriptions (that's in commands)
- Mode enforcement rules (that's in mode files)
- Lists of available commands (that's in .bob/commands/)
- Placeholder sections with no real information
### 6. Validate Scope
Before finalizing, check each section:
- Is this specific to THIS repository? ✅ Keep it
- Is this about how Superpowers works? ❌ Remove it (belongs in mode files)
- Is this a generic workflow? ❌ Remove it (belongs in commands)
- Is this a placeholder? ❌ Remove it (add real info or omit section)
## Template
```markdown
# AGENTS.md
Repository-specific guidance for agents working in this project.
## Purpose
This file provides project-specific operating guidance. It works alongside:
- `.bob/custom_modes.yaml` - Superpowers mode (always-on command awareness)
- `.bob/commands/` - Detailed workflow commands
## Instruction Priority
1. Direct user instructions (highest)
2. Repository-specific instructions (this file)
3. Bob Superpowers commands
4. Default agent behavior
## Project-Specific Workflows
[Add your project's preferred workflows]
## Build & Test Commands
[Add your project's actual commands]
## Architecture Notes
[Add your project's architecture information]
## Coding Conventions
[Add your project's coding standards]
## Repository-Specific Notes
[Add project-specific gotchas, deployment notes, etc.]
| Mistake | Fix |
|---|---|
| Copying mode rules into root AGENTS.md | Reference mode, don't duplicate |
| Adding generic placeholders | Add real info or omit section |
| Listing all commands | Reference .bob/commands/ directory |
| Writing 100+ lines | Keep focused on project specifics |
| Guessing project details | Ask user for actual information |
A good root AGENTS.md: