helmdeck-debug

A diagnostic tool for auditing Helmdeck, a system of integrations and automated capability packs, across its pipelines.

In plain words
What is it for?
It performs static checks and live end-to-end tests, classifies real failures, and drafts one issue report for each bug without filing them.
Why use it?
It looks for promised behavior that is not actually delivered, unsafe handling of bad inputs, and other integration failures before issues reach users.

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/tosin2013/helmdeck/helmdeck-debug
Any agent
npx skills add tosin2013/helmdeck --skill helmdeck-debug
Clone the repo
git clone --depth 1 https://github.com/tosin2013/helmdeck

Made for: Claude Code, Codex.

Per session 93 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,207 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.00093 $0.03207
Opus 5 $0.00046 $0.01604
Sonnet 5 $0.00019 $0.00641
Haiku 4.5 $0.00009 $0.00321

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

Security

Grade A, and why

helmdeck-debug 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/helmdeck-debug/SKILL.md · 212 lines

How it starts

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

You are the helmdeck integration debugger

When invoked, you run a diagnostic sweep across all helmdeck pipelines and capability packs, classify what you find, and produce a findings report with one ready-to-file GitHub issue per real bug. You draft issues — you do not file them until the maintainer says which to file.

Trigger this when a maintainer asks to debug / audit / health-check helmdeck, or "find issues to file." For normal pack usage, that's the separate helmdeck skill.

The bug classes you are hunting

These are the recurring, real classes (each has bitten this project). Look for all four:

  1. Oversold descriptions — a pipeline/pack Description promises more than its steps actually do. Canonical example: builtin.grounded-blog once said "fact-check + rewrite + publish" but content.ground only cites claims (it does not rewrite voice/structure) and blog.publish saves a markdown artifact by default (no Ghost credential → it does not publish anywhere).
  2. Silent-bad-output inputs — an input that flows into user-visible output without a guard, so a bad value produces bad output instead of an error. Canonical example: a literal {{TITLE}} once published a post titled {{TITLE}}. (The runner now rejects unfilled {{UPPER_SNAKE}} inputs in StartRun — verify that guard still covers every pipeline.)
  3. Schema vs handler drift — a pack's declared OutputSchema doesn't match what its handler actually emits (key missing, or wrong type — e.g. declaring number for a field the handler emits as an object). Handler-direct unit tests bypass Engine.Execute, so OutputSchema.Validate never runs on them.
  4. Failure misclassification — a pack returns a code-level error (handler_failed/internal/invalid_output) for what is really caller input. internal/pipelines/classify.go maps those to pack_bug and mints a prefilled issue URL — so a misclassified caller error files a bogus bug.

Read the full file on GitHub · 212 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 · 212 lines · 93 tokens per session scan A 05baf664b889

Subscribe to this mod's changes

helmdeck-debug is a skill published in the GitHub repository tosin2013/helmdeck (4 stars, last pushed 9d ago), licensed Apache-2.0. It adds 93 tokens to every session and 3,207 once invoked, about $0.0005 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.

Related

Other skills, from other repositories

unicli

Comprehensive guide to Uni-CLI — the open Agent-Computer Interface runtime for real software. Trigger when the user needs to fetch data from websites (Twitter, Bilibili, HackerNews, GitHub, Reddit, Bloomberg, Zhihu, WeChat, and hundreds more); interact with news, finance, social, academic, shopping, or video…

olo-dot-io/Uni-CLI · 180 tokens

unicli-browser

Control broker-owned hidden, existing-Chrome, or remote browser targets with explicit Agent identity, visibility, profile partitions, and lifecycle.

olo-dot-io/Uni-CLI · 30 tokens

unicli-smart-search

Route search queries to the best platform via unicli. Use when searching across websites, social media, tech forums, news, finance, shopping, or academic sources.

olo-dot-io/Uni-CLI · 38 tokens

unicli-claude-code

Make Uni-CLI reliable when invoked from Claude Code. MANDATES JSON-in channels (stdin / --args-file) for any payload containing quotes, emoji, newlines, or inline JSON — shell-quoted invocations hit TC0 circuit limits and drop to <50% success above ICS=4. Also covers --describe introspection and nextactions-driven…

olo-dot-io/Uni-CLI · 80 tokens

unicli-repair

Evidence-driven repair workflow for a broken Uni-CLI adapter. Trigger on a failed unicli envelope, a quarantined adapter, or an explicit adapter-repair request. Classifies non-source failures, edits only the reported adapter path, and uses the original command as a bounded oracle.

olo-dot-io/Uni-CLI · 68 tokens

unicli-operate

Compatibility guide for unicli operate. Prefer unicli browser, which now exposes the same operator surface plus broker/session diagnostics.

olo-dot-io/Uni-CLI · 31 tokens