ac-tools-ac-issue

ac-tools-ac-issue is a skill for Claude Code from WaterplanAI/agentic-config. It costs 40 tokens per session (2,706 once invoked), scanned A, original, MIT.

A tool for reporting bugs and requesting features in the central agentic-config GitHub repository. GitHub is a service where software projects track code and issues.

In plain words
What is it for?
Use it to create a bug report or feature request from the current conversation, or provide a title and description directly.
Why use it?
It removes the need to prepare and submit issue reports manually. It checks that the GitHub command-line tool is available and authenticated before reporting.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter.

Part of the agentic-config plugin — 49 skills, 1 plugin shipped together

Good fit Use it to create a bug report or feature request from the current conversation, or provide a title and description directly.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/waterplanai/agentic-config/ac-tools-ac-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 WaterplanAI/agentic-config --skill ac-tools-ac-issue
Clone the repo
git clone --depth 1 https://github.com/WaterplanAI/agentic-config

Made for: Claude Code.

Or install agentic-config, the plugin that ships this one along with the rest of its 49 skills, 1 plugin.

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 ac-tools-ac-issue

README.md
[![agentmods](https://agentmods.dev/badge/skills/waterplanai/agentic-config/ac-tools-ac-issue/github.svg)](https://agentmods.dev/skills/waterplanai/agentic-config/ac-tools-ac-issue)
Your own site
<a href="https://agentmods.dev/skills/waterplanai/agentic-config/ac-tools-ac-issue"><img src="https://agentmods.dev/badge/skills/waterplanai/agentic-config/ac-tools-ac-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 ac-tools-ac-issue

Your own site · 80×15
<a href="https://agentmods.dev/skills/waterplanai/agentic-config/ac-tools-ac-issue"><img src="https://agentmods.dev/badge/skills/waterplanai/agentic-config/ac-tools-ac-issue.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 40 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,706 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.
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.00040 $0.02706
Opus 5 $0.00020 $0.01353
Sonnet 5 $0.00008 $0.00541
Haiku 4.5 $0.00004 $0.00271

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

Security

Grade A, and why

ac-tools-ac-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.

packages/pi-ac-tools/skills/ac-tools-ac-issue/SKILL.md · 402 lines

How it starts

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

Issue Reporter

Compatibility Note

This pi wrapper preserves the original issue-reporting workflow while replacing the legacy plugin-root version lookup with a current-checkout VERSION fallback when available.

Creates GitHub issues in the central agentic-config repository (WaterplanAI/agentic-config) for bug reports and feature requests.

Usage

/skill:ac-tools-ac-issue                           # Context-based: extract from conversation
/skill:ac-tools-ac-issue "Title" "Description"     # Explicit: user provides details
/skill:ac-tools-ac-issue --bug "Title"             # Bug report with template
/skill:ac-tools-ac-issue --feature "Title"         # Feature request with template

Target Repository: WaterplanAI/agentic-config


Workflow Steps

Step 1: Authentication Verification (CRITICAL - DO FIRST)

INSTRUCTION: Verify GitHub CLI authentication before any other operation.

# Check if gh CLI is installed
if ! GH_BIN=$(command -v gh); then
  echo "ERROR: GitHub CLI (gh) not found"
  echo ""
  echo "Please install GitHub CLI: https://cli.github.com/"
  exit 1
fi

echo "Checking GitHub CLI authentication..."
GH_AUTH_OUTPUT=$("$GH_BIN" auth status 2>&1)
GH_AUTH_STATUS=$?

if [ $GH_AUTH_STATUS -ne 0 ]; then
  echo "ERROR: GitHub CLI not authenticated"
  echo ""
  echo "$GH_AUTH_OUTPUT"
  echo ""
  echo "Please authenticate with: gh auth login"
  exit 1
fi

echo "$GH_AUTH_OUTPUT"
echo ""
echo "Authentication verified."

Validation Logic:

  1. Run gh auth status and capture exit code
  2. If exit code != 0: STOP immediately with error and gh auth login instruction
  3. If authenticated: Continue with success message

Step 2: Input Mode Detection

INSTRUCTION: Parse arguments to determine input mode.

Arguments: $ARGUMENTS

Mode Detection Logic:

Input Pattern Mode Action
Empty/no args Context Mode Extract from recent conversation
--bug "Title" Bug Template Use bug report template with provided title
--feature "Title" Feature Template Use feature request template with provided title
"Title" "Description" Explicit Mode Use provided title and description
"Title" only Explicit Mode Use title, prompt for description

Read the full file on GitHub · 402 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 · 402 lines · 40 tokens per session scan A 74eca4dd4913

Subscribe to this mod's changes

ac-tools-ac-issue is a skill published in the GitHub repository WaterplanAI/agentic-config (30 stars, last pushed 1mo ago), licensed MIT. It adds 40 tokens to every session and 2,706 once invoked, about $0.0002 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-08-30.