resolve-issue

resolve-issue is a skill for Claude Code from aws-controllers-k8s/ack-dev-skills. It costs 61 tokens per session (4,412 once invoked), scanned A, original, Apache-2.0.

A workflow for taking an ACK community GitHub issue from retrieval to resolution. ACK, or AWS Controllers for Kubernetes, lets Kubernetes manage AWS resources, and the workflow selects different paths for bugs, resources, fields, and investigations.

In plain words
What is it for?
Use it to work through ACK issues end to end, including bug fixes, new AWS resources, new fields, feature investigations, and unclear issues. It can also prepare the relevant controller repository and run the associated checks.
Why use it?
It brings issue classification, repository setup, code generation, compatibility checks, and testing into one process. This reduces the need to coordinate those steps manually across ACK repositories.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter. Also seen: mentions subagents.

Part of the ack-dev plugin — 2 skills, 4 agents shipped together

Good fit Use it to work through ACK issues end to end, including bug…

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/aws-controllers-k8s/ack-dev-skills/resolve-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 aws-controllers-k8s/ack-dev-skills --skill resolve-issue
Clone the repo
git clone --depth 1 https://github.com/aws-controllers-k8s/ack-dev-skills

Made for: Claude Code.

Or install ack-dev, the plugin that ships this one along with the rest of its 2 skills, 4 agents.

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 resolve-issue

README.md
[![agentmods](https://agentmods.dev/badge/skills/aws-controllers-k8s/ack-dev-skills/resolve-issue.svg)](https://agentmods.dev/skills/aws-controllers-k8s/ack-dev-skills/resolve-issue)
Your own site
<a href="https://agentmods.dev/skills/aws-controllers-k8s/ack-dev-skills/resolve-issue"><img src="https://agentmods.dev/badge/skills/aws-controllers-k8s/ack-dev-skills/resolve-issue.svg" alt="Measured on agentmods" height="20"></a>
Per session 61 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 4,412 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.00061 $0.04412
Opus 5 $0.00030 $0.02206
Sonnet 5 $0.00012 $0.00882
Haiku 4.5 $0.00006 $0.00441

Measured 6d ago against content hash 69724998278e, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, from the pricing page.

Security

Grade A, and why

resolve-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 6d ago.

The scan reads SKILL.md. This mod also ships 4 executable files (scripts/check-breaking-changes.sh, scripts/ensure-repo.sh, scripts/regenerate.sh, …), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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/resolve-issue/SKILL.md · 532 lines

How it starts

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

Resolve Issue — ACK Unified Workflow

You take an ACK community GitHub issue and drive it to resolution — all in one pass, no subagents.

Environment Setup

Detect the workspace root automatically. The workspace is the parent directory containing multiple ACK repos (code-generator, runtime, *-controller, etc.).

# Auto-detect workspace: walk up from cwd until we find code-generator or a *-controller dir
ACK_WORKSPACE="$(cd .. && pwd)"
if [[ ! -d "${ACK_WORKSPACE}/code-generator" ]]; then
  ACK_WORKSPACE="$(pwd)"
fi

Detect the current GitHub user:

GH_USER="$(gh api user --jq .login)"

Scripts are located relative to this skill file at scripts/.

Shared Scripts

Script Purpose Usage
ensure-repo.sh Clone/fork/pull a controller repo bash scripts/ensure-repo.sh <name>-controller [github-user] [workspace-path]
regenerate.sh Run code generation bash scripts/regenerate.sh <service> [workspace-path]
check-breaking-changes.sh CRD compatibility check bash scripts/check-breaking-changes.sh <service> [workspace-path]
run-tests.sh Run unit tests bash scripts/run-tests.sh <service> [workspace-path]

All scripts auto-detect ACK_WORKSPACE from $PWD if not passed explicitly.


Phase 1: Triage

Step 1: Fetch and understand the issue

gh issue view $issue --repo aws-controllers-k8s/community --json title,body,labels,comments

Extract:

  • Title and body — what is being requested or reported?
  • Comments — any additional context, reproduction steps, or clarification from maintainers
  • Existing labels — check for kind/* and service/* labels
  • Target controller — from service/<name> label or by reading the issue body
  • Resource — mentioned in title/body

If the issue references multiple services, report to user and ask which to focus on.

Step 1.5: Check for out-of-scope (data plane) requests

ACK only manages AWS control plane resources. If the issue requests data plane functionality (reading/writing objects in S3, invoking Lambda, sending SQS messages, querying DynamoDB items, etc.), it is out of scope.

Read the full file on GitHub · 532 lines

Files

What ships with it

4 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. 6d ago First seen · 532 lines · 61 tokens per session scan A 69724998278e

Subscribe to this mod's changes

resolve-issue is a skill published in the GitHub repository aws-controllers-k8s/ack-dev-skills (3 stars, last pushed 2mo ago), licensed Apache-2.0. It adds 61 tokens to every session and 4,412 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-08-31.