commit
Create git commits with user approval and no Claude attribution
name: "Base Medium Plan Template - Context-Rich and Fast" description: |
$ npx -y skills add dcouple/Pane --agent claude-codeHow it fires
How this command gets triggered: by you, by Claude, or both.
/prp_baseContext preview
What this command does when you run it.
name: "Base Medium Plan Template - Context-Rich and Fast" description: |
name: "Base Medium Plan Template - Context-Rich and Fast" description: |
Template optimized for fast, context-rich plans that give an AI agent enough implementation guidance to make forward progress without the overhead of a full reconcile-and-review planning pipeline.
1. **Context is King**: Include the documentation, examples, and caveats that actually matter 2. **Information Dense**: Use concrete repo anchors, not vague summaries 3. **Progressive Success**: Start simple, validate, then enhance 4. **Stay Practical**: Prefer the existing codebase shape over idealized design 5. **Global rules**: Follow all rules in CLAUDE.md
---
[What needs to be built - be specific about the end state and desired behavior]
[User-visible behavior and technical requirements]
# MUST READ - Include these in your context window - url: [Official API docs URL] why: [Specific sections or methods you'll need] - file: [path/to/example.ts] why: [Pattern to follow, gotchas to avoid] - doc: [Library documentation URL] section: [Specific section about common pitfalls] critical: [Key insight that prevents common errors]
// CRITICAL: [Library name] requires [specific setup]
Examples: - Database schema definitions - Validators and type guards - TypeScript interfaces and shared types - API request/response types
Task 1: MODIFY path/to/existing-file.ts: - FIND pattern: "export class ExistingClass" - INJECT new method following existing patterns - PRESERVE existing error handling Task 2: CREATE path/to/new-file.ts: - FOLLOW pattern from existing similar files - USE existing validation patterns - RETURN consistent response format Task N: ...
// Pseudocode with CRITICAL details - don't write entire code
DATABASE: - schema: "Add/modify schema definitions" - migration: "Generate and apply migration if applicable" IPC/API: - handler: "Register IPC handler or API route" - types: "Add shared types for communication layer" FRONTEND: - service: "Add frontend service/API client" - hook: "Create or update React hook" - component: "Create or update UI component"
# Run these FIRST - fix any errors before proceeding npm run lint npm run typecheck # Expected: No errors. If errors, READ the error and fix.
Repo: dcouple/Pane
Create git commits with user approval and no Claude attribution
You are tasked with creating detailed implementation plans through an interactive, iterative process. You should be skeptical, thorough, and work…
Generate comprehensive PR descriptions following repository templates
You are tasked with implementing an approved technical plan from `thoughts/shared/plans/`. These plans contain phases with specific changes and success…
Iterate on existing implementation plans with thorough research and updates
You are tasked with conducting comprehensive research across the codebase to answer user questions. You will spawn one or more parallel sub-agents to perform…