ag-pipeline-issue

ag-pipeline-issue is a skill for Claude Code from andregusman-raiz/a-gusman-claude. It costs 51 tokens per session (2,666 once invoked), scanned A, original, MIT.

A workflow for handling GitHub Issues from start to finish: fetch the issue, write a specification, plan and build the change, verify it, test it, and close it.

In plain words
What is it for?
Use it when developing a feature or fix from a GitHub Issue and needing a fixed sequence of specification, implementation, verification, and testing.
Why use it?
It prevents implementation from starting without clear requirements and ensures the finished work is checked against the issue.

Skill for Claude Code

Written for Claude Code: disable-model-invocation in frontmatter. Also seen: model in frontmatter.

Good fit Use it when developing a feature or fix from a GitHub Issue and needing a fixed sequence of specification, implementation, verification, and testing.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/andregusman-raiz/a-gusman-claude/ag-pipeline-issue
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add andregusman-raiz/a-gusman-claude --skill ag-pipeline-issue
Clone the repo
git clone --depth 1 https://github.com/andregusman-raiz/a-gusman-claude

Made for: Claude Code.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for ag-pipeline-issue

README.md
[![agentmods](https://agentmods.dev/badge/skills/andregusman-raiz/a-gusman-claude/ag-pipeline-issue/github.svg)](https://agentmods.dev/skills/andregusman-raiz/a-gusman-claude/ag-pipeline-issue)
Your own site
<a href="https://agentmods.dev/skills/andregusman-raiz/a-gusman-claude/ag-pipeline-issue"><img src="https://agentmods.dev/badge/skills/andregusman-raiz/a-gusman-claude/ag-pipeline-issue/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for ag-pipeline-issue

Your own site · 80×15
<a href="https://agentmods.dev/skills/andregusman-raiz/a-gusman-claude/ag-pipeline-issue"><img src="https://agentmods.dev/badge/skills/andregusman-raiz/a-gusman-claude/ag-pipeline-issue.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 51 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,666 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector warn 7 Sept 2026
SkillSpector: 1 finding, up to medium

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • medium Excessive Agency · line 4
    Skill selects an external model or provider that may use a different account or billing plan than the operator expects. Undisclosed model switches can cause unexpected cost or quota consumption.
    Fix: Remove the model/provider override or disclose it prominently and require explicit operator approval before invoking an external coding CLI or billed model.
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00051 $0.02666
Opus 5 $0.00026 $0.01333
Sonnet 5 $0.00010 $0.00533
Haiku 4.5 $0.00005 $0.00267

Measured 9d ago against content hash a3ebe4524a6c, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

ag-pipeline-issue scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 9d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/ag-pipeline-issue/SKILL.md · 324 lines

How it starts

The opening of the file, as written. The whole thing — 324 lines — stays where its author put it; the contents beside it link to each section on GitHub.

ag-pipeline-issue — Issue Pipeline

Pipeline obrigatorio para trabalho baseado em GitHub Issues. Garante que toda issue tem SPEC, toda implementacao e verificada contra a SPEC, e toda entrega e testada.

Invocation

Use the Agent tool with:

  • subagent_type: ag-pipeline-issue
  • mode: auto
  • run_in_background: false
  • prompt: Compose from template below + $ARGUMENTS

NOTE: NOT background — orchestrator needs to coordinate sequential steps.

Prompt Template

Issue: [issue number, URL, ou descricao]
Repo: [owner/repo — detectar via git remote se nao fornecido]
Projeto path: [CWD or user-provided path]

Executar pipeline completo: Fetch Issue → SPEC → Plan → Build → Verify → Test → Close.
Seguir TODAS as fases sequencialmente. NUNCA pular fase.

Pipeline: 7 Fases

Fase 0: Fetch Issue

Carregar contexto completo da issue do GitHub.

gh issue view [number] --json title,body,labels,assignees,comments

Extrair:

  • Titulo: o que resolver
  • Body: contexto, criterios de aceitacao, screenshots
  • Labels: classificacao (bug, feature, tech-debt, security, etc)
  • Comentarios: contexto adicional, discussoes

Se a issue nao tem criterios de aceitacao claros:

  • Inferir do contexto e documentar na SPEC
  • Marcar como [INFERRED] para review do usuario

Fase 1: SPEC (ag-especificar-solucao)

Criar SPEC tecnica baseada na issue. Spawnar ag-especificar-solucao:

Agent({
  subagent_type: "ag-especificar-solucao",
  mode: "auto",
  run_in_background: false,
  prompt: "Feature/Problema: [titulo + body da issue #N]
Escopo: [extraido da issue]
Issue ref: #[number]

Criar SPEC tecnica implementavel. A SPEC DEVE incluir:
1. Referencia a issue: GitHub Issue #[number]
2. Criterios de aceitacao (extraidos ou inferidos da issue)
3. Interface/comportamento esperado
4. Edge cases
5. O que NAO esta no escopo (OOS)
6. Checklist de verificacao (cada item verificavel independentemente)

Salvar em: docs/specs/issue-[number]-spec.md
Max 200 linhas."
})

Read the full file on GitHub · 324 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 9d ago First seen · 324 lines · 51 tokens per session scan A a3ebe4524a6c

Subscribe to this mod's changes

ag-pipeline-issue is a skill published in the GitHub repository andregusman-raiz/a-gusman-claude (19 stars, last pushed 3d ago), licensed MIT. It adds 51 tokens to every session and 2,666 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.

Related

Other skills, from other repositories

test-fixing

Run tests and systematically fix all failing tests using smart error grouping. Use when user asks to fix failing tests, mentions test failures, runs test suite and failures occur, or requests to make tests pass.

mhattingpete/claude-skills-marketplace · 44 tokens

react-testing-workflows

Testing strategy and execution for React applications. Covers Vitest configuration, React Testing Library patterns, custom hook testing, Playwright E2E, Storybook stories and play functions, and coverage reporting. Keywords: test, vitest, testing library, playwright, storybook, coverage, unit test, integration test…

PMDevSolutions/Aurelius · 0 tokens

jacoco

Check JaCoCo code coverage for a Maven/Java project against a gate, then drill into per-module, per-class, and per-line gaps to target tests. Use when the user says "what's our test coverage", "check coverage", "which classes need tests", "are we above the coverage gate", or is planning tests to reach a threshold.

alexmond/alexmskills · 75 tokens

swift-testing-wait-until

Use when a test needs to wait for an async state change instead of a fixed delay — the notasksleepintests lint rule bans arbitrary Task.sleep in tests because it causes flaky failures. Provides the waitUntil polling helper to add to a test target instead.

patrickserrano/lacquer · 65 tokens

ds-build

Plan executor — take an issue, a specs/{feature}/tasks.md, or a plain request and implement it unit by unit with a verify signal per unit, red-proven tests, budgeted backtracking, and a code-proven close. Use when the plan exists and the work is to be done, not planned.

sungurerdim/dev-skills · 68 tokens

testing

Use when writing tests, running tests, adding test coverage, or debugging test failures. Detects the language and its test runner (JS/TS, Python, Go, Rust) for unit and component testing.

tartinerlabs/skills · 44 tokens