Skip to main content

samba-plan-to-issue

Create a plan collaboratively with the user, then convert the approved plan into a GitHub issue.

Zur Installation springen

Quellinformationen

Repository
criptogus/Samba-Builder
Letzte Quellaktivität
8. September 2026 um 15:30
Erkannte Sprache von SKILL.md
Englisch
Sterne
1
Forks
0

Installationsoptionen

Standardmäßig ist der Prompt ausgewählt, der zuerst die Quelle prüft. Sie können zu einem direkten Befehl wechseln oder eine lokale Kopie herunterladen.

Quelldateien prüfen

Lesen Sie SKILL.md und alle von SkillsMP angezeigten Begleitdateien, bevor Sie sich für eine Installation entscheiden.

SKILL.md wird angezeigt

SKILL.md
Quellanweisungen · Schreibgeschützte Vorschau
name
samba:plan-to-issue
description
Create a plan collaboratively with the user, then convert the approved plan into a GitHub issue.
# Plan to Issue Create a plan collaboratively with the user, then convert the approved plan into a GitHub issue. ## Arguments - `$ARGUMENTS`: Brief description of what you want to plan (e.g., "add dark mode support", "refactor authentication system") ## Instructions 1. **Enter plan mode:** Use `EnterPlanMode` to begin the planning process. Explore the codebase to understand the current implementation and design an approach for: `$ARGUMENTS` 2. **Create a comprehensive plan:** Your plan should include: - **Summary**: Brief description of the goal - **Current state**: What exists today (based on codebase exploration) - **Proposed changes**: What needs to be implemented - **Files to modify**: List of files that will need changes - **Implementation steps**: Ordered list of specific tasks - **Testing approach**: What tests should be added - **Open questions**: Any decisions that need user input 3. **Iterate with the user:** Use `ExitPlanMode` to present your plan for approval. The user may: - Approve the plan as-is - Request modifications - Ask clarifying questions Continue iterating until the user approves the plan. 4. **Create the GitHub issue:** Once the plan is approved, create a GitHub issue using `gh issue create`: ``` gh issue create --title "<concise title>" --body "$(cat <<'EOF' ## Summary <1-2 sentence description of the goal> ## Background <Current state and why this change is needed> ## Implementation Plan ### Files to Modify - `path/to/file1.ts` - <what changes> - `path/to/file2.ts` - <what changes> ### Tasks - [ ] <Task 1> - [ ] <Task 2> - [ ] <Task 3> ... ### Testing - [ ] <Test requirement 1> - [ ] <Test requirement 2> ## Notes <Any additional context, constraints, or open questions> --- *This issue was created from a planning session with Claude Code.* EOF )" ``` 5. **Report the result:** Provide the user with: - The issue URL - A brief confirmation of what was created
Auf GitHub ansehen