From oh-my-auggie
Deep project initialization with hierarchical AGENTS.md. Use for "initialize project", "create agents", "hierarchical setup".
npx claudepluginhub r3dlex/oh-my-auggie --plugin oh-my-auggieThis skill uses the workspace's default tool permissions.
Create comprehensive project initialization with hierarchical agent structures.
Verifies tests pass on completed feature branch, presents options to merge locally, create GitHub PR, keep as-is or discard; executes choice and cleans up worktree.
Guides root cause investigation for bugs, test failures, unexpected behavior, performance issues, and build failures before proposing fixes.
Writes implementation plans from specs for multi-step tasks, mapping files and breaking into TDD bite-sized steps before coding.
Share bugs, ideas, or general feedback.
Create comprehensive project initialization with hierarchical agent structures.
Project
├── AGENTS.md (root)
├── agents/
│ ├── architect/
│ │ └── AGENTS.md
│ ├── planner/
│ │ └── AGENTS.md
│ └── executor/
│ └── AGENTS.md
└── skills/
├── skill1/
└── skill2/
# Agents: {project/domain}
## Overview
{high-level description}
## Agent Hierarchy
### Architect
**Role:** {what}
**Scope:** {boundaries}
**Reports to:** {who}
### Planner
**Role:** {what}
**Scope:** {boundaries}
**Reports to:** {who}
### Executor
**Role:** {what}
**Scope:** {boundaries}
**Reports to:** {who}
## Protocols
### Handoffs
- Architect → Planner: {trigger}
- Planner → Executor: {trigger}
### Escalation
{how issues rise up}
## Constraints
{global constraints}
## Deepinit: {project}
### Project Analysis
- **Type:** {type}
- **Domains:** {list}
- **Complexity:** {level}
### Structure Created
{structure tree}
### Agents Defined
| Agent | Role | Level |
|-------|------|-------|
| {agent} | {role} | {level} |
### Skills Configured
| Skill | Agent | Trigger |
|-------|-------|---------|
| {skill} | {agent} | {trigger} |
### Files Created
- {file 1}
- {file 2}
### Integration Status
- [ ] Hierarchy defined
- [ ] Agents configured
- [ ] Skills mapped
- [ ] Protocols established
- [ ] Integration tested
### Next Steps
1. {step}