From solopreneur
Defines shared conventions for solopreneur workflow: YAML-frontmatter ticket schema, status transitions, review severity levels, and plan formats. Preloaded into agents.
How this skill is triggered — by the user, by Claude, or both
Slash command
/solopreneur:conventionsThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
These conventions are the single source of truth for shared formats across the solopreneur workflow.
These conventions are the single source of truth for shared formats across the solopreneur workflow.
Tickets are YAML-frontmatter markdown files in .solopreneur/backlog/{project}/:
---
id: MVP-001
title: Short descriptive title
priority: MVP | P1 | P2
type: eng | design | eng+design
status: pending | in-progress | built | tested | done
depends_on: []
blocks: []
design_ref: .solopreneur/designs/{dir}/{screen}.html
branch: ticket/{ID}
worktree: /path/to/worktree
---
## Description
What this ticket implements and why.
## Acceptance Criteria
- [ ] Criterion 1
- [ ] Criterion 2
## Technical Notes
Stack choices, approach, risks.
## Files
(Populated during build)
pending → in-progress (build starts)
in-progress → built (build completes)
built → tested (QA passes in review)
tested → done (merged to main in review)
Skills contain the operational instructions for the orchestrator. If the state machine changes, update these locations:
pending → in-progress: build/SKILL.md (line 43), sprint delegates to buildin-progress → built: build/SKILL.md (line 150), sprint/SKILL.md (line 99)built → tested: review/SKILL.md (line 51)tested → done: review/SKILL.md (lines 58, 99)When producing review findings, rate every issue:
Implementation plans use this structure:
# Plan: [Feature Name]
## Context
[What we're building and why. Reference source spec/design if applicable.]
**Branch**: `ticket/{ID}` (if ticket build)
## Step N: [Short description]
**Files**: `path/to/file.ext` (create|modify)
**Do**: [Clear, specific instructions for what to write]
**Acceptance**: [Concrete criteria to verify this step is done]
npx claudepluginhub pcatattacks/solopreneur-pluginAdversarial project planning with mandatory UX and implementer loops and optional specialist (security, performance) loops. Creates tickets only after all loops sign off.
Defines canonical project structure, naming conventions, and standards enforced across all skills. Automatically activated when starting a new project or when the user mentions project setup, conventions, or directory structure.