feat(skills): incremental issue-hunt loop; bump to 0.7.0#81
Merged
Conversation
New issue-hunt skill — a standing bug/feature hunt loop. Each pass picks up only what's NEW since the last pass (new issues + new comments) via a git-excluded per-repo watermark (.claude/pulseengine/issue-hunt-state.json), digests + triages it, works the actionable items through the chain, and accumulates toward a feature release. One invocation = one pass; designed for /loop or a scheduled agent. The incremental watermark is the new mechanism: gh issue list --search "updated:>=<watermark>" (a new comment bumps updatedAt, so it catches comment activity), per-issue new-comment filtering, and advance-on-success so a crashed pass never skips items. The exit condition is a release, not an empty tracker. Hybrid disposition: triage is explorer work, deliver/release routes through the driver skills (per the operating contract). Composes with release-planning (land + ship), feature-loop, traceability-audit, release-execution. Thirteenth skill; plugin + marketplace bumped to 0.7.0. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
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.
New
issue-huntskill — the standing bug/feature hunt loop you asked for. Each pass picks up only what's new since the last pass (new issues + new comments) via a git-excluded per-repo watermark (.claude/pulseengine/issue-hunt-state.json), digests + triages it, works the actionable items through the chain, and accumulates toward a feature release.The new mechanism — incremental "since last loop":
gh issue list --search "updated:>=<watermark>"(a new comment bumpsupdatedAt, so it catches comment activity, not just new issues), per-issue new-comment filtering, and advance-the-watermark-only-on-success so a crashed pass never skips items. Exit condition is a release, not an empty tracker.One invocation = one pass; designed for
/loop <interval> issue-hunt <repo>or a scheduled agent. Hybrid disposition (triage = explorer, deliver/release = driver). Composes withrelease-planning,feature-loop,traceability-audit,release-execution. Thirteenth skill; → 0.7.0.🤖 Generated with Claude Code