Best for
- Use when triaging a GitHub issue for gflow-cli — a reporter's bug claim, a freshly-filed issue, or deciding whether and how to act on one.
ffroliva/gflow-cli/skills/issue-assessment/SKILL.md
Use when triaging a GitHub issue for gflow-cli — a reporter's bug claim, a freshly-filed issue, or deciding whether and how to act on one. Also use when an autonomous agent (hermes-ops) picks up a labelled issue. Read-only: produces a verdict, an end-to-end-verifiability judgment, and a reporter-facing reply. Does not modify code or post anything on its own.
Decision brief
Read-only conductor. Verify the reporter's claim against the code, tests, docs, KNOWNISSUES.md, and auto-memory; classify it; judge whether it can be verified end-to-end in the current environment; and draft a reply. The output is a standard artifact a human or the issue-resolve…
Compatibility matrix
| Platform | Status | Evidence | What to check |
|---|---|---|---|
| Codex | Not declared | No explicit evidence | Portability before use |
| Claude Code | Not declared | No explicit evidence | Portability before use |
| Cursor | Not declared | No explicit evidence | Portability before use |
| Gemini CLI | Not declared | No explicit evidence | Portability before use |
Installation
The source command is displayed only when detected. A safe inspection prompt is always available so your agent can explain every action before execution.
npx skills add https://github.com/ffroliva/gflow-cli --skill "skills/issue-assessment"Inspect the Agent Skill "issue-assessment" from https://github.com/ffroliva/gflow-cli/blob/c64a8d8b246f9551e8a96c7fcf363d15e045c9b2/skills/issue-assessment/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
Classify the verification cost before claiming anything is fixed: - Browser-free (pure-Python logic, Gemini tool-path, unit/lint/type, recording-verif) → verifiable anywhere, including the headless VPS. Run it. - Headed-Flow-browser required (generation, selector, auth, reCAPTCH…
Upon completing an Issue Assessment: 1. Confirmed Bug / Feature Request: Proactively announce: "Issue assessed. Next step: Phase 2 Pre-Implementation (/gflow:predict ) or Phase 9 Issue Resolve (/gflow:issue-resolve )." 2. Needs Info / Unconfirmed: Request the specific diagnostic…
Skip for: issues that are obviously feature requests routed elsewhere, or already-triaged issues entering implementation.
This repo's skills//SKILL.md are plain Markdown — invoke by reading the file (via the .claude/commands/gflow/ wrapper), never Skill(skill=...).
gh issue view --json title,body,comments,labels,author,state. Extract: the claimed symptom, environment (OS, version, install method), exact repro steps, and any logs/error classes the reporter pasted.
Permission review
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
| Signal | Value | Evidence type | Meaning |
|---|---|---|---|
| Quality score | 88/100 | Computed | Documentation, specificity, maintenance, and trust rules |
| Repository stars | 96 | Source | Repository attention, not individual Skill quality |
| Compatibility | 0 platforms | Source | Declared in the catalog source record |
| Usage guide | automated source guide | Editorial | Generated or reviewed according to the visible evidence level |
Pinned source
issue-assessment — triage a gflow-cli issue honestlyRead-only conductor. Verify the reporter's claim against the code, tests, docs,
KNOWN_ISSUES.md, and auto-memory; classify it; judge whether it can be
verified end-to-end in the current environment; and draft a reply. The output
is a standard artifact a human or the issue-resolve skill can act on.
Core principle: never assert more than the evidence supports. A claim is
CONFIRMED only with line-level code evidence or a reproduction; a fix is
"verified" only after running it on the affected surface. Honest
"can't verify here" beats a false green check — a bounced fix costs more trust
than an accurate "not yet."
issue-resolve) depends on this.Skip for: issues that are obviously feature requests routed elsewhere, or already-triaged issues entering implementation.
/gflow:issue-assessment <issue number or URL>
This repo's skills/*/SKILL.md are plain Markdown — invoke by reading the
file (via the .claude/commands/gflow/* wrapper), never Skill(skill=...).
gh issue view <N> --json title,body,comments,labels,author,state. Extract: the
claimed symptom, environment (OS, version, install method), exact repro steps,
and any logs/error classes the reporter pasted.
Dispatch a search/Explore agent (keep your own context clean) to corroborate or refute the claim against the real tree. Always check, in order:
file_path:line_number;KNOWN_ISSUES.md (is this Open / Mitigated / Resolved already?);gh pr list, gh issue list) for duplicates or in-flight fixes;browser_engine: playwright is the engine axis, not the channel) — a precise
correction is more useful than agreement.| Verdict | Meaning |
|---|---|
CONFIRMED-BUG | Reproduced, or root-caused in code with line-level evidence. |
LIKELY-BUG / NEEDS-E2E | Strong code hypothesis, but unverifiable in this environment (e.g. macOS-only or headed-browser bug on a headless/Windows host). |
NEEDS-INFO | A specific discriminating diagnostic is required before deciding. |
DUPLICATE / KNOWN-ISSUE | Matches an open issue/PR or a KNOWN_ISSUES.md entry. |
WORKING-AS-INTENDED / INVALID | Usage error or expected behavior. |
WONTFIX / OUT-OF-SCOPE | Real but deliberately not addressed. |
Classify the verification cost before claiming anything is fixed:
LIKELY-BUG / NEEDS-E2E; never claim success; the final check is a human on the affected surface. (See memory: done-means-e2e-verified, pr-must-verify-on-affected-surface.)Produce the reply below. Post it only if the autonomy gate allows (autonomous runs may comment; otherwise surface for a human to send).
**Assessment of #<N>: <verdict>** (confidence <N>/10)
Restated claim: <one line>.
Findings:
- <evidence as file:line> …
- <corrections to the reporter's framing, if any> …
Root cause / hypothesis: <what and why, or "unconfirmed because …">.
What we need next:
- <the single discriminating diagnostic — for NEEDS-INFO/NEEDS-E2E>, or
- <draft PR link — if issue-resolve ran>, or
- <why this is a dup/invalid/wontfix>.
CONFIRMED-BUG, LIKELY-BUG} and scope is single-surface/localized
and a fix is verifiable in this environment → chain to issue-resolve (Phase 9) or predict (Phase 2).Upon completing an Issue Assessment:
/gflow:predict <proposal>) or Phase 9 Issue Resolve (/gflow:issue-resolve <N>)."Re-derive this from ls skills/ + ls .claude/commands/gflow/ before relying on
it — names drift. Current map:
| Need | Use | How |
|---|---|---|
| High-stakes change (auth/transport/selector/schema) | /gflow:predict | read skills/predict/SKILL.md |
| Edge cases + BDD skeleton | /gflow:scenario | read skills/scenario/SKILL.md |
| Touching auth/reCAPTCHA | /gflow:known-issues | .claude/commands/gflow/known-issues.md |
| Drive the fix | issue-resolve | read skills/issue-resolve/SKILL.md |
| Worktree / TDD | superpowers | Skill() tool (these are invocable) |
A single Markdown block: the verdict line, findings with citations, root-cause hypothesis, and the "what we need next" step. No code changes, no posting unless the autonomy gate permits.
Designed 2026-06-29 (docs/superpowers/specs/2026-06-29-issue-assessment-workflow-design.md).
Validated against issue #222 (a LIKELY-BUG / NEEDS-E2E case: macOS + headed
browser, unverifiable on Windows/headless). Authored recipe-shaped after three
baseline runs showed capable agents already comply with the project's discipline
rules — the skill standardizes the procedure and artifact, it does not enforce
discipline the agent lacks.
Alternatives
coreyhaines31/marketingskills
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
alirezarezvani/claude-skills
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
JasonColapietro/suede-creator-skills
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).
narrative-io/narrative-skills-marketplace
Translate a fuzzy analytical question into a rigorous investigation plan. Interrogates the ask, grounds the plan in the available data dictionary, applies analytical best practices, and produces a structured brief of query specifications for a downstream query-writing skill. Plans, does not write SQL. Use when: "why did X drop", "is there a relationship between A and B", "who are our highest-value customers", "what's driving the change in Y", "investigate this trend", "design an analysis for", "