kitchenloop-triage

A triage skill for turning an experience report's friction findings into labeled tickets. Triage means sorting and describing issues so they can be acted on, while deduplication removes repeated tickets.

In plain words
What is it for?
Use it to read a KitchenLoop experience report, classify its findings as bugs or missing features, and create one ticket per finding.
Why use it?
It gives each reported problem a defined place in the backlog and reduces duplicate work caused by creating multiple tickets for the same finding.

Skill for Claude CodeCodex

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.

agentmods
npx agentmods add skills/0xagentkitchen/kitchenloop/kitchenloop-triage
Any agent
npx skills add 0xagentkitchen/kitchenloop --skill kitchenloop-triage
Clone the repo
git clone --depth 1 https://github.com/0xagentkitchen/kitchenloop

Made for: Claude Code, Codex.

Per session 0 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,503 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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 $0.00000 $0.01503
Opus 5 $0.00000 $0.00751
Sonnet 5 $0.00000 $0.00301
Haiku 4.5 $0.00000 $0.00150

Measured 2d ago against content hash 478c9a3d9541, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

kitchenloop-triage 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 2d 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/kitchenloop-triage/SKILL.md · 188 lines

How it starts

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

KitchenLoop: Triage

Phase 2 -- Read experience reports, extract findings, create deduplicated tickets.

Triggers

  • kitchenloop triage
  • loop triage
  • create tickets from report

Overview

The Triage phase converts the raw friction log from an experience report into actionable, well-labeled tickets. Every finding becomes exactly one ticket -- no more, no less. Deduplication against existing tickets prevents the backlog from filling with clones.


Procedure

Step 1: Read Context

  1. Load kitchenloop.yaml -- read paths, ticketing, and project.
  2. Read loop state at paths.loop_state to identify the current iteration number.
  3. Read the most recent experience report from {paths.reports}/experience-report-iter-{N}.md. If a specific report path is provided as an argument, use that instead.

Step 2: Extract Findings

Parse the Friction Log section of the experience report. Each numbered item becomes a candidate ticket. Categorize each finding:

Tag in Report Ticket Category Label
[BUG] Bug -- something is broken {ticketing.github.labels.bug}
[MISSING] Feature -- capability gap {ticketing.github.labels.feature}
[UX] Improvement -- works but confusing {ticketing.github.labels.improvement}
[IMPROVEMENT] Improvement -- could be better {ticketing.github.labels.improvement}
[EXPLORATION] Exploration -- needs investigation {ticketing.github.labels.exploration}

Step 3: Deduplicate

Before creating any ticket, search for existing tickets that cover the same issue:

gh issue list --state open --limit 100 --json number,title,body,labels

For each candidate ticket:

  1. Search by keywords from the finding title.
  2. Check if any open issue covers the same root cause (not just symptoms).
  3. If a duplicate exists:
    • Add a comment on the existing issue referencing the new iteration.
    • Do NOT create a new ticket.
  4. If a near-duplicate exists (related but not identical):
    • Create the ticket and reference the related issue.

Read the full file on GitHub · 188 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. 2d ago First seen · 188 lines · 0 tokens per session scan A 478c9a3d9541

Subscribe to this mod's changes

kitchenloop-triage is a skill published in the GitHub repository 0xagentkitchen/kitchenloop (23 stars, last pushed 5mo ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 1,503 tokens. 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

babysit

Same-session monitoring loop for PRs, CI runs, tickets, and deployments using the monitorstart / monitorupdate / autonudgestop MCP tools. The loop re-injects your check instructions into THIS session on an idle interval — same context, same tools — and works from dashboard chat, Slack threads, and Discord DMs. Use…

kirodotdev/KiroCrew · 137 tokens

agile-product-owner

../../../product-team/agile-product-owner/skills/agile-product-owner/SKILL.md.

alirezarezvani/claude-skills · 0 tokens

teamharness-task-delegation

Use when a Leader turns ready Quick Task or Project Work state into Worker task instructions, sends assignment messages, checks submitted results, and defines completion/blocker report contracts. Do not use to create projects, create rooms, or execute Worker tasks.

agentscope-ai/AgentTeams · 56 tokens

dot-ai-prd-create

Create documentation-first PRDs that guide development through user-facing content.

vfarcic/dot-ai · 18 tokens

agent-upkeep

Perform one small, scoped maintenance improvement to the Elements monorepo and open a single reviewable pull request. Use this skill for scheduled or unattended upkeep runs that improve unit test coverage for one file, fix one behavioral bug in one module, or move one off ESLint rule toward enforcement to reduce…

NVIDIA/elements · 115 tokens

bmad-check-implementation-readiness

Validate PRD, UX, Architecture and Epics specs are complete. Use when the user says "check implementation readiness".

delorenj/mcp-server-trello · 32 tokens