Source profileQuality 86/100

ffroliva/gflow-cli/skills/issue-resolve/SKILL.md

issue-resolve

Use when an assessed gflow-cli issue (verdict CONFIRMED-BUG or LIKELY-BUG) has localized, verifiable scope and should be driven to a fix. Mutating and gated: it works in an isolated worktree, fixes test-first, and opens a DRAFT PR for human review. Built to run autonomously (hermes-ops) within a strict action envelope — never merges, never spends credits, never claims unverified.

Source repository stars
96
Declared platforms
0
Static risk flags
0
Last source update
2026-08-04
Source checked
2026-08-04

Decision brief

What it does—and where it fits

Takes a verdict from issue-assessment and produces a reviewable fix. The terminal state is a draft PR a human promotes — never an autonomous merge.

Best for

  • Use when an assessed gflow-cli issue (verdict CONFIRMED-BUG or LIKELY-BUG) has localized, verifiable scope and should be driven to a fix.

Not for

  • Working on develop instead of a bugfix/ branch off it (memory: develop-divergence-recovery).
  • PR Created & SonarCloud Gate 🟢 GREEN: Proactively announce: "PR created and SonarCloud gate green. Next step: Phase 10 Release Pipeline (/gflow:release) or merge to develop."

Compatibility matrix

Platform support, with evidence labels

PlatformStatusEvidenceWhat to check
CodexNot declaredNo explicit evidencePortability before use
Claude CodeNot declaredNo explicit evidencePortability before use
CursorNot declaredNo explicit evidencePortability before use
Gemini CLINot declaredNo explicit evidencePortability before use
Open the compatibility checker

Installation

Inspect first. Install second.

The source command is displayed only when detected. A safe inspection prompt is always available so your agent can explain every action before execution.

Source-detected install commandSource
npx skills add https://github.com/ffroliva/gflow-cli --skill "skills/issue-resolve"
Safe inspection promptEditorial

Inspect the Agent Skill "issue-resolve" from https://github.com/ffroliva/gflow-cli/blob/c64a8d8b246f9551e8a96c7fcf363d15e045c9b2/skills/issue-resolve/SKILL.md at commit c64a8d8b246f9551e8a96c7fcf363d15e045c9b2. List every install step, command, network request, credential, file read/write, external action, and rollback step. Explain whether it fits my task. Do not install or execute anything until I approve.

Workflow

What the source asks the agent to do

  1. 01

    Pipeline Continuation (Next Step Handoff)

    Upon completing Issue Resolution: 1. PR Created & SonarCloud Gate 🟢 GREEN: Proactively announce: "PR created and SonarCloud gate green. Next step: Phase 10 Release Pipeline (/gflow:release) or merge to develop." 2. SonarCloud Gate 🔴 FAILS: Run /gflow:sonar to resolve new code…

    PR Created & SonarCloud Gate 🟢 GREEN: Proactively announce: "PR created and SonarCloud gate green. Next step: Phase 10 Release Pipeline (/gflow:release) or merge to develop."SonarCloud Gate 🔴 FAILS: Run /gflow:sonar to resolve new code smells/coverage issues before merging.Upon completing Issue Resolution: 1. PR Created & SonarCloud Gate 🟢 GREEN: Proactively announce: "PR created and SonarCloud gate green. Next step: Phase 10 Release Pipeline (/gflow:release) or merge to develop." 2. Son…
  2. 02

    Preconditions (all required before any code change)

    1. An issue-assessment verdict of CONFIRMED-BUG or LIKELY-BUG. 2. Scope is single-surface / localized (not a cross-cutting redesign). 3. The fix is verifiable in this environment (browser-free), OR the verification gap is explicitly carried into the PR as "needs human e2e."

    An issue-assessment verdict of CONFIRMED-BUG or LIKELY-BUG.Scope is single-surface / localized (not a cross-cutting redesign).The fix is verifiable in this environment (browser-free), OR the
  3. 03

    Autonomy envelope (the action contract)

    Allowed autonomously: - ✅ Post one issue comment (status / reply to reporter). - ✅ Open a draft PR (push a bugfix/-prefixed branch off develop). - ✅ Run browser-free / credit-free verification (unit, lint, type, recording-verif, Gemini tool-path).

    ✅ Post one issue comment (status / reply to reporter).✅ Open a draft PR (push a bugfix/-prefixed branch off develop).✅ Run browser-free / credit-free verification (unit, lint, type, recording-verif, Gemini tool-path).
  4. 04

    Protocol

    Worktree off origin/develop on a bugfix/ branch (use the superpowers:using-git-worktrees skill). Never work on develop/main.

    Worktree off origin/develop on a bugfix/ branch (use the superpowers:using-git-worktrees skill). Never work on develop/main.If the fix touches auth, a transport, selectors, or a schema → run /gflow:predict first; for edge-case coverage run /gflow:scenario. Otherwise proceed.Use superpowers:test-driven-development. Write/confirm a failing test that reproduces the bug on the affected surface, then the minimal fix, then green. If the bug's surface can't be reached here, the test is the closes…
  5. 05

    1. Isolate

    Worktree off origin/develop on a bugfix/ branch (use the superpowers:using-git-worktrees skill). Never work on develop/main.

    Worktree off origin/develop on a bugfix/ branch (use the superpowers:using-git-worktrees skill). Never work on develop/main.

Permission review

Static risk signals and limitations

No configured static risk pattern was detected

This is not proof of safety. Runtime behavior, indirect dependencies, and hidden external systems are outside the static scan.

Evidence record

Why each signal appears

EvidenceSourceComputedTestedEditorial
SignalValueEvidence typeMeaning
Quality score86/100ComputedDocumentation, specificity, maintenance, and trust rules
Repository stars96SourceRepository attention, not individual Skill quality
Compatibility0 platformsSourceDeclared in the catalog source record
Usage guideautomated source guideEditorialGenerated or reviewed according to the visible evidence level

Pinned source

Provenance and original SKILL.md

Repository
ffroliva/gflow-cli
Skill path
skills/issue-resolve/SKILL.md
Commit
c64a8d8b246f9551e8a96c7fcf363d15e045c9b2
License
MIT
Collected
2026-08-04
Default branch
develop
View the original SKILL.md

issue-resolve — drive an assessed issue to a draft PR

Takes a verdict from issue-assessment and produces a reviewable fix. The terminal state is a draft PR a human promotes — never an autonomous merge.

Core principle: the agent's job is to get the problem review-ready, not to declare victory. A fix is "verified" only after it runs green on the affected surface; when that surface can't be reached here (headed Flow browser, macOS-only, credits), say so in the PR and stop. (Memory: done-means-e2e-verified, pr-must-verify-on-affected-surface.)


Preconditions (all required before any code change)

  1. An issue-assessment verdict of CONFIRMED-BUG or LIKELY-BUG.
  2. Scope is single-surface / localized (not a cross-cutting redesign).
  3. The fix is verifiable in this environment (browser-free), OR the verification gap is explicitly carried into the PR as "needs human e2e."

If any fails → do not resolve; return to issue-assessment (reply-only).


Autonomy envelope (the action contract)

Allowed autonomously:

  • ✅ Post one issue comment (status / reply to reporter).
  • ✅ Open a draft PR (push a bugfix/-prefixed branch off develop).
  • ✅ Run browser-free / credit-free verification (unit, lint, type, recording-verif, Gemini tool-path).

Never (these require a human, regardless of pressure):

  • ❌ Spend Veo credits (no live video generation to "verify").
  • ❌ Mark a PR ready for review or merge it.
  • ❌ Push to main or develop.
  • ❌ State a fix is "verified" / "fixed" when it was not run on the affected surface.

Red flags — if you catch yourself reasoning toward any of these, STOP: "just spend one credit to exercise the path", "it's obviously correct, merge it", "mark it ready to save the human time", "say it's verified so we can close it". Urgency does not make an unverified fix verified.


Protocol

1. Isolate

Worktree off origin/develop on a bugfix/<slug> branch (use the superpowers:using-git-worktrees skill). Never work on develop/main.

2. Gate high-stakes changes

If the fix touches auth, a transport, selectors, or a schema → run /gflow:predict first; for edge-case coverage run /gflow:scenario. Otherwise proceed.

3. Fix test-first (TDD)

Use superpowers:test-driven-development. Write/confirm a failing test that reproduces the bug on the affected surface, then the minimal fix, then green. If the bug's surface can't be reached here, the test is the closest browser-free proxy and the PR flags the residual gap.

4. Orchestrate (scales with complexity)

For non-trivial fixes: Opus plans → delegates coding to a Sonnet subagent → Opus reviews the diff → loop until consensus. Gemini (agy) as an optional extra reviewer if available (soft dependency, never blocks). Trivial one-line fixes skip the loop.

5. Check

/gflow:check clean (ruff + pyright + tests) before the PR. Scope tests locally (full pytest --cov OOMs — memory full-test-suite-ooms); trust CI.

6. Draft PR

gh pr create --draft --base develop. Body is a plain string (never a heredoc — CLAUDE.md MCP rule). Include a Verification status section with checked/unchecked boxes; use Refs #N when a human must still verify, Closes #N only when fully verified here. Then /gflow:pr-council-review (or /gflow:branch-review pre-push). STOP — a human promotes and merges.


Quick reference

StepTool
Worktreesuperpowers:using-git-worktrees
High-stakes gate/gflow:predict, /gflow:scenario
TDDsuperpowers:test-driven-development
Pre-commit/gflow:check
PR review/gflow:pr-council-review, /gflow:branch-review
Verify disciplinesuperpowers:verification-before-completion

(Re-derive tool names from ls skills/ + ls .claude/commands/gflow/ — don't trust a stale list.)


Common mistakes

  • Working on develop instead of a bugfix/ branch off it (memory: develop-divergence-recovery).

Pipeline Continuation (Next Step Handoff)

Upon completing Issue Resolution:

  1. PR Created & SonarCloud Gate 🟢 GREEN: Proactively announce: "PR created and SonarCloud gate green. Next step: Phase 10 Release Pipeline (/gflow:release) or merge to develop."
  2. SonarCloud Gate 🔴 FAILS: Run /gflow:sonar <PR#> to resolve new code smells/coverage issues before merging.

Provenance

Designed 2026-06-29 (docs/superpowers/specs/2026-06-29-issue-assessment-workflow-design.md). Resolve-path validated by an injected pure-Python canary bug (off-by-one in extension_from_magic) fixed test-first to green on this host. Guardrails are the autonomous action contract, not discipline-rescue — baseline runs showed capable agents already refuse credit-spend / merge / false-verified under pressure; the envelope makes the policy explicit and machine-checkable.

Alternatives

Compare before choosing

Computed 10042,968

coreyhaines31/marketingskills

ab-testing

When the user wants to plan, design, or implement an A/B test or experiment, or build a growth experimentation program. Also use when the user mentions "A/B test," "split test," "experiment," "test this change," "variant copy," "multivariate test," "hypothesis," "should I test this," "which version is better," "test two versions," "statistical significance," "how long should I run this test," "growth experiments," "experiment velocity," "experiment backlog," "ICE score," "experimentation program

Computed 10023,781

alirezarezvani/claude-skills

app-store-optimization

App Store Optimization (ASO) toolkit for researching keywords, analyzing competitor rankings, generating metadata suggestions, and improving app visibility on Apple App Store and Google Play Store. Use when the user asks about ASO, app store rankings, app metadata, app titles and descriptions, app store listings, app visibility, or mobile app marketing on iOS or Android. Supports keyword research and scoring, competitor keyword analysis, metadata optimization, A/B test planning, launch checklist

Computed 1004,922

dotnet/skills

migrate-vstest-to-mtp

Migrates .NET test projects from VSTest to Microsoft.Testing.Platform (MTP). Use when user asks to "migrate to MTP", "switch from VSTest", "enable Microsoft.Testing.Platform", "use MTP runner", set OutputType=Exe only for test projects in Directory.Build.props, or mentions EnableMSTestRunner, EnableNUnitRunner, or UseMicrosoftTestingPlatformRunner. USE FOR: MTP behavioral differences vs VSTest (exit code 8, zero tests discovered, --ignore-exit-code, TESTINGPLATFORM_EXITCODE_IGNORE); centralizing

Computed 100165

JasonColapietro/suede-creator-skills

suede-ab-testing

Suede-owned experimentation discipline for hypotheses, sample sizing, test duration, significance, and repeatable experiment programs. Use when comparing variants, deciding whether a result is reliable, or building an experiment backlog and cadence. NOT FOR: analytics instrumentation (use suede-analytics), post-click conversion diagnosis (use suede-site-alchemy), or writing the variant copy itself (use suede-copy).