✨ Add handle-github-issue skill for standalone Claude Code install#108
Merged
Conversation
Bundles the askcc issue→PR workflow (prepare/plan/develop/issue-review/ pr-review/explore/diagnose/fix-ci/validate) as a single Claude Code skill that runs the prompts inline via `gh` — no askcc Python package required at runtime. README documents a curl one-liner (and tag-pinned variant) that installs the skill straight into ~/.claude/skills/. Also drops the empty __init__.py files under askcc/skills/* — the package_files iterator does not need them.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
askcc/skills/handle-github-issue/SKILL.mdthat drives the full askcc workflow (prepare / plan / develop / issue-review / pr-review / explore / diagnose / fix-ci / validate) inline from Claude Code — embeds the agent personas fromaskcc/definitions.py, pre-flight gates (label prefix, decision-label, develop-readiness), and post-flight label transitions. No runtime dependency on the askcc Python package; usesghand the project's standard test/lint/typecheck commands directly.README.mdgets a new## Skillssection with acurlone-liner (and a tag-pinned variant) that installs the skill straight into~/.claude/skills/handle-github-issue/, plus a reciprocal cross-link from theaskcc installparagraph.askcc/skills/request-askcc/__init__.py—package_files(...).iterdir()does not require it.Key Flows
flowchart LR A[user prompt with action + issue URL] --> B[Common pre-flight] B --> C{action} C -- prepare/plan/develop/explore/diagnose --> D[adopt persona<br/>edit issue body<br/>post summary comment] C -- issue-review --> E[adopt persona<br/>post issue comment] C -- pr-review --> F[fetch linked PR<br/>adopt persona<br/>gh pr review] C -- fix-ci --> G[auto-detect PR if needed<br/>identify failing run<br/>fix + push + comment] C -- validate --> H[print PASS/FAIL report] D --> I[Common post-flight:<br/>label swap, project board, verification] F --> I G --> ITest plan
~/.claude/skills/handle-github-issue/SKILL.mdlands in place.askcc installstill copies both bundled skills after the__init__.pyremoval.