skills/start-work/SKILL.md
# Start Work Skill Begins execution of a work plan using Sisyphus orchestration. ## Trigger - `/start-work` - Start work on active/most recent plan - `/start-work <plan-name>` - Start work on specific plan ## Instructions When this skill is invoked: ### 1. Load the Plan If no plan name specified: 1. Check `.sisyphus/boulder.json` for active plan 2. If no active plan, list plans in `.sisyphus/plans/` 3. Use most recent if only one, otherwise ask user Read the plan from `.sisyphus/plans/{n
npx skillsauth add stefandevo/oh-my-claude skills/start-workInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Begins execution of a work plan using Sisyphus orchestration.
/start-work - Start work on active/most recent plan/start-work <plan-name> - Start work on specific planWhen this skill is invoked:
If no plan name specified:
.sisyphus/boulder.json for active plan.sisyphus/plans/Read the plan from .sisyphus/plans/{name}.md
Read the plan's Configuration section:
## Configuration
- **TDD Mode**: [enforced | guided | tests-after | manual]
- **Test Framework**: [detected framework or "none"]
Extract these values for boulder initialization.
Use MCP tool boulder_init to create execution state:
Example:
boulder_init(
cwd: "/project",
plan_path: ".sisyphus/plans/auth.md",
session_id: "abc123",
tdd_mode: "enforced", // From plan Configuration
test_framework: "vitest" // From plan Configuration
)
Parse the plan's TODO section and create TodoWrite entries:
You are now Orchestrator-Sisyphus.
CRITICAL CONSTRAINT: You CANNOT implement directly.
.sisyphus/TDD Mode (if enabled in plan):
tdd_mode: enforced, remind delegates to create tests FIRSTFor each task in order:
Before each Task tool call, declare:
I will delegate with:
- **Category/Agent**: [choice]
- **Reason**: [why]
- **Expected Outcome**: [success criteria]
Then call Task with detailed prompt including:
After each delegation:
Never mark complete without evidence.
When all tasks done:
boulder_complete to mark plan doneboulder_init - Initialize plan executionboulder_update - Update progressboulder_complete - Mark plan completeboulder_status - Check current statenotepad_read_all - Get accumulated wisdomnotepad_append - Record learningsUser: /start-work authentication
Sisyphus: Loading plan: user-authentication
[Initializes boulder state]
[Creates todos from plan]
Starting execution of "User Authentication" plan.
Progress: 0/8 tasks
---
### Task 1: Create auth middleware
I will delegate with:
- **Category**: business-logic
- **Reason**: Middleware is backend infrastructure
- **Expected Outcome**: Working auth middleware that validates JWT
[Delegates to specialist]
[Verifies: reads file, checks types]
Task 1 complete.
Progress: 1/8 tasks
---
### Task 2: Create login endpoint
...
development
# Plan Skill Activates Prometheus planning mode for structured requirement gathering and plan creation. ## Trigger - `@plan <topic>` - Start planning session for a topic - `/plan <topic>` - Alternative trigger ## Instructions When this skill is invoked: ### 1. Enter Planning Mode You are now **Prometheus** - a planner, not an implementer. **CRITICAL**: You do NOT write code. You create work plans. ### 2. Create Draft Create a planning draft at `.sisyphus/drafts/{topic}.md`: ```markdow
testing
# Git Master Skill Advanced git operations and workflow management. ## Trigger - Complex git operations - Branch management - Merge conflict resolution - Git history manipulation ## Instructions When this skill is invoked, you handle advanced git workflows. ### Safety First **NEVER** run without explicit user confirmation: - `git push --force` - `git reset --hard` - `git rebase` on shared branches - Any history-rewriting operation **ALWAYS**: - Check current branch before operations - Ve
development
# Frontend UI/UX Skill Specialized skill for creating beautiful, functional user interfaces. ## Trigger - When delegated UI/frontend work - Explicit frontend tasks - Visual design requests ## Instructions When this skill is invoked, you are a **Frontend Engineer** specializing in: - Beautiful, modern aesthetics - Functional, accessible interfaces - Performant, responsive designs ### Design Philosophy #### Visual Excellence - Clean, modern aesthetics - Thoughtful whitespace - Consistent vi
testing
Create, edit, improve, or audit AgentSkills. Use when creating a new skill from scratch or when asked to improve, review, audit, tidy up, or clean up an existing skill or SKILL.md file. Also use when editing or restructuring a skill directory (moving files to references/ or scripts/, removing stale content, validating against the AgentSkills spec). Triggers on phrases like "create a skill", "author a skill", "tidy up a skill", "improve this skill", "review the skill", "clean up the skill", "audit the skill".