agent-sandbox: Skill for Claude Code

.agents/skills/triage-issues/SKILL.md

triage-issues is a skill for Claude Code, Codex from kubernetes-sigs/agent-sandbox. It costs 47 tokens per session (1,507 once invoked), scanned A, original, Apache-2.0.

A process for reviewing open GitHub issues in the Kubernetes agent-sandbox project against its roadmap. It assigns each issue a priority and synchronizes that priority to an issue label and a project-board field.

In plain words
What is it for?
Use it to map issues to roadmap items, preserve or assign priority labels, and update the corresponding P0–P4 project-board priority.
Why use it?
It turns a large set of open issues into a roadmap-based order of work. Using both labels and the board keeps the priority visible in the project's two tracking systems.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: installed under .agents/ (shared by several agents).

This is kubernetes-sigs/agent-sandbox's own configuration. It tells Claude Code and Codex how to work on agent-sandbox itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything agent-sandbox configures →

About the project

Agent Sandbox is a Kubernetes extension for managing isolated, stateful workloads that run as single long-lived containers with stable identities and persistent storage. It is intended for AI agent runtimes, reinforcement-learning workloads, and other applications that do not fit ordinary stateless deployments. Its catalogue skills and instructions support operating these sandbox workloads.

kubernetes-sigs/agent-sandbox · 3,765 stars · on GitHub · agent-sandbox.sigs.k8s.io

Reuse

Borrowing it

Nothing to install: this file belongs to kubernetes-sigs/agent-sandbox. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/kubernetes-sigs/agent-sandbox/main/.agents/skills/triage-issues/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/kubernetes-sigs/agent-sandbox

Made for: Claude Code, Codex.

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 triage-issues

README.md
[![agentmods](https://agentmods.dev/badge/skills/kubernetes-sigs/agent-sandbox/triage-issues.svg)](https://agentmods.dev/skills/kubernetes-sigs/agent-sandbox/triage-issues)
Your own site
<a href="https://agentmods.dev/skills/kubernetes-sigs/agent-sandbox/triage-issues"><img src="https://agentmods.dev/badge/skills/kubernetes-sigs/agent-sandbox/triage-issues.svg" alt="Measured on agentmods" height="20"></a>
Per session 47 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,507 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 pass 7 Sept 2026
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.00047 $0.01507
Opus 5 $0.00023 $0.00754
Sonnet 5 $0.00009 $0.00301
Haiku 4.5 $0.00005 $0.00151

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

Security

Grade A, and why

triage-issues 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 8d ago.

The scan reads SKILL.md. This mod also ships 1 executable file (evals/eval_runner.py), 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.

.agents/skills/triage-issues/SKILL.md · 70 lines

How it starts

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

Triage agent-sandbox issues against the roadmap

Map every open issue in kubernetes-sigs/agent-sandbox to a roadmap theme/item, assign a triage priority, and sync that priority to both the issue's k8s priority/* label and the Priority field (P0–P4) on the Kanban board.

Label ↔ Priority mapping (fixed)

k8s label Kanban Priority
priority/critical-urgent P0
priority/important-soon P1
priority/important-longterm P2
priority/backlog P3
priority/awaiting-more-evidence P4

Key references

Triage heuristics

Assign each open issue a tier using, in order:

  1. Honor existing priority/* labels — do not downgrade/overwrite an existing priority label unless the issue clearly changed; note any you keep.
  2. Roadmap references — if the issue number is cited in roadmap.md, inherit that item's status: ⏳ In ProgressP1, 📅 PlannedP2, ✅ Completed follow-ups → P2/P3.
  3. Bug severity — data-integrity / duplicate-resource / resource-leak bugs in the core controller → P0/P1. Self-labeled "Critical" → P0.
  4. Value props — latency / performance / scale bottlenecks skew P1 (called out as a primary value proposition).
  5. Security — critical security vulnerabilities / CVEs → P0 (priority/critical-urgent); routine dependency/patch updates → P1 (tied to "Security Fixes" roadmap item).
  6. Low-signal — empty bodies, one-line questions, "collecting use cases", pinned/frozen community threads, items marked triage/not-reproducible/triage/needs-informationP4. Nice-to-have features, refactors, cleanups, test scaffolding → P3.

Procedure

  1. Verify access: gh auth status; confirm repo kubernetes-sigs/agent-sandbox.
  2. Read the roadmap: read roadmap.md; extract themes, item statuses, and any cited issue numbers.
  3. Fetch open issues: gh issue list --repo kubernetes-sigs/agent-sandbox --state open --limit 500 --json number,title,labels,assignees,createdAt,updatedAt,body,url > open_issues.json
  4. Discover board metadata (IDs change per board, always re-fetch):
    • Project + Priority field/options: gh project field-list 120 --owner kubernetes-sigs --format json → grab the Priority field id and the P0–P4 option ids; project id via gh project view 120 --owner kubernetes-sigs --format json.
    • Item ids: gh project item-list 120 --owner kubernetes-sigs --limit 1000 --query "is:open" --format json → map issue number → project item id. Add any open issue not yet on the board with gh project item-add 120 --owner kubernetes-sigs --url <issue-url> --format json.
  5. Triage: assign every open issue exactly one tier using the heuristics. Sanity-check that the assigned set equals the open-issue set (no missing, no extras).
  6. Report first: write a markdown report (issue-triage-report.md) grouping issues by priority with roadmap mapping + one-line rationale, and a "second look" section for judgment calls (e.g., heuristic conflicts, boundary cases, insufficient info, or ambiguous roadmap items). In an interactive run, stop and wait for the user to review before changing anything on GitHub. In an automated/scheduled run, see below.
  7. Apply (after approval in interactive mode, or filtered by untriaged issues in scheduled mode):
    • Label: gh issue edit <#> --repo kubernetes-sigs/agent-sandbox --add-label "<priority/...>" --remove-label "<priority/...>" (if the tier changed).
    • Board field: gh project item-edit --id <itemId> --project-id <projectId> --field-id <fieldId> --single-select-option-id <optionId>.
    • Drive the apply loop from a small script so all issues are processed in one pass (adding a sleep 1 delay between API calls to respect GitHub's 900 points/min secondary rate limit); collect per-issue ok/err and print a final total / errors summary.
  8. Confirm: report the final distribution (count per tier) and any errors.

Read the full file on GitHub · 70 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. 8d ago First seen · 70 lines · 47 tokens per session scan A e2ff30811ef7

Subscribe to this mod's changes

triage-issues is a skill published in the GitHub repository kubernetes-sigs/agent-sandbox (3,765 stars, last pushed 3d ago), licensed Apache-2.0. It adds 47 tokens to every session and 1,507 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.

Related

Other skills, from other repositories