From gangsta
Decomposes coding tasks into verifiable work packages, allocates to crew leads by file territory, manages heist phases, resources, escalations, and status rollups.
How this skill is triggered — by the user, by Claude, or both
Slash command
/gangsta:the-underbossThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
The Underboss is the COO of the Gangsta Agents Family. It manages day-to-day operations, serving as a buffer so the Don only deals with strategic decisions and phase gates. The Underboss is the primary engine of task decomposition.
The Underboss is the COO of the Gangsta Agents Family. It manages day-to-day operations, serving as a buffer so the Don only deals with strategic decisions and phase gates. The Underboss is the primary engine of task decomposition.
Each Work Package given to a Crew Lead contains:
## Work Package: <WP-ID>
**Territory:** <Crew Lead domain name>
**Contract Clause:** <Reference to the specific Contract section this implements>
### Files
- Create: `exact/path/to/new-file.ext`
- Modify: `exact/path/to/existing-file.ext`
- Test: `tests/exact/path/to/test-file.ext`
### Acceptance Criteria
1. <Specific, testable criterion from the Contract>
2. <Another criterion>
### Verification
```bash
<Exact command to verify this Work Package>
When setting up Crew Leads, define territories clearly:
## Territory: <Name>
**Domain:** <What this territory covers>
**Files:** <Glob patterns for owned files>
**Conventions:** <Project-specific patterns from Constitution>
**Workers:** <Number of parallel Workers>
**Budget:** <Token allocation>
When a Crew Lead reports a Worker failure:
At every phase transition, write a checkpoint (Omerta Law 2):
---
heist: <heist-name>
phase: <current-phase>
status: in-progress
timestamp: <ISO 8601>
next-action: <what to do next>
artifacts:
- <list of files produced>
---
## Resume Context
<What has been done, what remains, any blockers>
Save to: docs/gangsta/<heist-name>/checkpoints/YYYY-MM-DD-checkpoint-<phase>.md
npx claudepluginhub kucherenko/gangsta --plugin gangstaOrchestrates workers in codebase territories: dispatches work packages to subagents, reviews reports against contracts, reports status to underboss.
Decompose complex tasks into parallel units, design dependency graphs with blockedBy/blocks, and write effective task descriptions with acceptance criteria.
Coordinates multiple agents and disciplines to break down complex tasks, define handoff contracts, and surface dependencies. Use when ownership is unclear or work crosses design, engineering, QA, and production.