Gh update plan
Claude Code skills for managing multi-step tasks as GitHub issues. Create, implement, update, and close execution plans that survive across sessions.
npx -y skills add gjoranv/claude-plan-skills --skill gh-update-planAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 3 stars3 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Update a GitHub plan issue with progress. Use when planning a task, or when the user tells you to "update the github plan issue".
SKILL.md
7.7 KB, as published. Nobody here has run it
Exit plan mode before executing this skill. You must actually run gh commands to update the issue; do not just describe what you would do. Use gh to read, edit, and comment on issues. This includes using gh api to update issue bodies and edit or create comments. Do not ask for permission to update comments -- it is expected.
Workflow for editing issue bodies and comments:
- Use a stable temp directory per issue:
/tmp/plan-update-OWNER-REPO-NUMBER. This allows reuse across invocations. - Fetch or reuse: If
--localis passed and the temp directory already has files from a previous invocation, skip fetching and reuse the cached files. Otherwise, always fetch fresh content from GitHub usinggh apiand overwrite any existing temp files. Use the Write tool to save files. Do NOT use shell redirects (>). - Use the Read and Edit tools to modify the temp files (not shell commands like sed/awk).
- Upload using
--inputwithjqto properly JSON-encode the content:
- Edit issue body:
jq -Rs '{body: .}' <tempdir>/body.md | gh api repos/OWNER/REPO/issues/NUMBER -X PATCH --input - - Create comment:
jq -Rs '{body: .}' <tempdir>/comment.md | gh api repos/OWNER/REPO/issues/NUMBER/comments --input - - Edit comment:
jq -Rs '{body: .}' <tempdir>/comment-COMMENTID.md | gh api repos/OWNER/REPO/issues/comments/COMMENT_ID -X PATCH --input -
Never embed content directly in shell arguments or use -f body=@file (it uploads the literal string, not the file contents).
By default, always fetch the latest from GitHub before making changes. Use --local only when you know the issue hasn't been updated since the last fetch.
--preview mode: Prepare all changes in temp files but do not upload. After steps 1-12, show the diff between the fetched files and the modified temp files (e.g. diff <fetched> <modified> for each changed file). For new comments, show the full content. Wait for the user to approve before uploading. The user may ask for edits before approving.
Never @mention other users in plan issues or comments.
Update the GitHub issue $ARGUMENTS (issue URL or owner/repo#number). If no argument is given, use the issue referenced earlier in this conversation. If no issue can be determined, ask the user.
If a durable-memory CLI is configured, query it here with the task's distinctive terms before updating. See the memory tool's own integration doc for mechanics.
-
Verify that it contains the detailed plan for the work in this conversation. If not, ask the user to verify that the correct issue was given.
-
Conformance check: Ensure the issue follows the standard plan format. If not, lightly restructure:
- Convert plain step lists to checkboxes (
- [ ]/- [x]) - Add missing section headings (Description, Steps, Links)
- If there is no diagram in either the issue body or comments, and the work would benefit from one, add a diagram in a separate comment (Mermaid, three sentence max caption, no "Caption:" prefix). Pick the right type:
sequenceDiagramfor temporal flow,flowchartwithsubgraph+classDeffor static structure
- Convert plain step lists to checkboxes (
-
If the design approach has changed or new key decisions were made, update the Design comment (or the body for old-format issues that have the how in the body). Omit raw exploration; only include conclusions. Two guardrails against bloat:
- Don't restate the design doc. If a rule or decision is already written in the canonical design doc, the Design comment should reference it ("per design doc, Format section"), not repeat it. The comment's job is implementation bindings and decisions that go beyond the doc.
- One paragraph per decision, max. State the binding and the key constraint; put worked examples, rationale, and edge cases in the design doc or a standalone finding comment, not inline.
- Keep comments scannable. Avoid walls of text; break content with lists. For work tracked in other issues, use a bulleted
owner/repo#N -- short descriptionlist rather than restating each issue's rationale in prose.
-
Check off completed steps (
- [x]) based on the work done in this conversation. Steps may be in a separate Steps comment (new format) or in the issue body (old format). Check both locations and update wherever the steps are found. -
If the issue body or comments contain a diagram, check if it is still accurate. If not, update it.
-
If steps need rewording or new steps are needed, update them wherever they are (Steps comment or body). Steps with a child issue should use:
- [ ] Child issue: owner/repo#N. The Steps comment is checkboxes only - no prose, no paragraphs, no narrative under sub-steps. Context and rationale belong in the Design comment or the session summary (step 12). If steps are still in the body and there are many updates, consider migrating them to a separate Steps comment. -
Update the Links comment with any new references (child issues, documentation, resources). Do not add PRs here - those belong in the PRs comment (step 9). Links may be in a separate comment (new format) or in the body (old format). If in the body, consider migrating to a comment.
-
If useful commands for testing or verifying the work were discovered during this session, add or update a Useful commands comment (separate from the issue body). If such a comment already exists, edit it rather than creating a new one.
-
PRs (do not skip): find or create a PRs comment (separate from the issue body) with a table:
| PR | What | Agent session |. PR column:org/repo#Nas a link. What column: brief description. Agent session column: the name of the session running this gh-update-plan invocation. -
Review existing comments for outdated or incorrect information. Own comments: rewrite to state the correct information only (no strikethrough or revision notes - plan issues are current state, not history). Others' comments: reply with the correction.
-
Agent sessions: Find or create an Agent sessions comment with a table:
| Session | Directory | Model | Last used | ID |. Add a row for this session. Always use backtick code formatting for Directory and ID values. Replace the user's home directory with~in the Directory column. Get the session name from conversation context (e.g. a system reminder indicating the session was named). Use the full model slug including version and variant. Use the full session name in this table; the shortened form (dropping everything before the first-) is only for the PRs table. Set Last used to today's date (YYYY-MM-DD). If this session ID already has a row, update it. Do not duplicate rows. -
Important: session comments (
### Session:) are compressed into a single Session Log bygh-close-plan. Do NOT put design decisions, gotchas, or important context into session comments. Those belong in the Design comment (step 3) or as standalone findings (see below).Find or create a comment with heading
### Session: <session name>(use the session name from step 11, not the date). If this session already has a comment (match by session name), update it rather than creating a new one. This is a lightweight log entry: what was attempted, open questions, surprises. Do not list commits, PRs, or implementation details.If a session produced standalone findings worth preserving independently (research, design decisions, verification results), add them as separate comments with descriptive headings (e.g.
## Research: ...,## Considered: ...). These are not prefixed withSession:and will be kept as-is bygh-close-plan.