prompt-triwizard

prompt-triwizard is a skill for Claude Code from HiMyNameIsDavidKim/prompt-triwizard-skill. It costs 93 tokens per session (2,987 once invoked), scanned A, original, MIT.

A guide for writing, revising, and evaluating instructions for language-model agents, including system prompts, examples, and tool schemas. It is aimed at prompts used inside agent pipelines.

In plain words
What is it for?
Use it when creating or improving an agent prompt, adding examples, or evaluating a prompt and its tool-call format.
Why use it?
It helps make agent instructions clearer and more consistent, while checking that they fit the surrounding prompts and the tools or data they use.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin. Also seen: mentions Gemini CLI.

Part of the prompt-triwizard plugin — 1 skill shipped together

Good fit Use it when creating or improving an agent prompt, adding examples, or evaluating a prompt and its tool-call format.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/himynameisdavidkim/prompt-triwizard-skill/prompt-triwizard
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 HiMyNameIsDavidKim/prompt-triwizard-skill --skill prompt-triwizard
Clone the repo
git clone --depth 1 https://github.com/HiMyNameIsDavidKim/prompt-triwizard-skill

Made for: Claude Code.

Or install prompt-triwizard, the plugin that ships this one along with the rest of its 1 skill.

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 prompt-triwizard

README.md
[![agentmods](https://agentmods.dev/badge/skills/himynameisdavidkim/prompt-triwizard-skill/prompt-triwizard/github.svg)](https://agentmods.dev/skills/himynameisdavidkim/prompt-triwizard-skill/prompt-triwizard)
Your own site
<a href="https://agentmods.dev/skills/himynameisdavidkim/prompt-triwizard-skill/prompt-triwizard"><img src="https://agentmods.dev/badge/skills/himynameisdavidkim/prompt-triwizard-skill/prompt-triwizard/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 prompt-triwizard

Your own site · 80×15
<a href="https://agentmods.dev/skills/himynameisdavidkim/prompt-triwizard-skill/prompt-triwizard"><img src="https://agentmods.dev/badge/skills/himynameisdavidkim/prompt-triwizard-skill/prompt-triwizard.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 93 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,987 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.00093 $0.02987
Opus 5 $0.00046 $0.01494
Sonnet 5 $0.00019 $0.00597
Haiku 4.5 $0.00009 $0.00299

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

Security

Grade A, and why

prompt-triwizard 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 11d 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/prompt-triwizard/SKILL.md · 228 lines

How it starts

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

Prompt Triwizard

Writes, refines, and evaluates LLM prompts (system prompts, user prompts, few-shot examples, and tool-call schemas) for agent pipeline nodes — producing high-quality, style-correct output every time.


Reuse Within a Session

Once this skill has been loaded, its guidance (structural hierarchy, principles, anti-patterns) stays in the conversation context. When the same prompt needs another modification within the same session (e.g. a re-fix request after testing), continue applying this guidance without re-invoking the skill.


Step 1 — Read the Context, Deliver in Kind (Common Step)

Prompts usually live as string literals inside code files (most often .py, but it varies — .ts, Jinja templates, etc.). Locate the prompt first; grep for the prompt text if you're unsure which file holds it.

Read only:

  • The target prompt file
  • Sibling files holding related prompts (other nodes of the same pipeline)
  • Schemas, Pydantic models, or tool definitions the prompt feeds into

Don't read a file just because it shares the directory. Skip .md/.json/.yaml/config unless it's the schema or tool definition the prompt feeds.

Goal: understand the project's existing depth, tag conventions, and schema bindings — this shapes how specialized the new prompt should be.

Deliver in kind: match the file/format the original prompt lived in (most often .py, but it varies — .ts, Jinja templates, etc.); if there's no existing file to match (Mode 1), default to .py — use .ts or Jinja instead only if the project already shows that convention elsewhere. When the prompt takes variables, wrap it as a function call (Python/TS) or a render() call (Jinja) rather than a bare string. Name the system and user pieces — whether a constant or a function — so the literal tokens system_prompt and user_prompt appear in the name (e.g. SYSTEM_PROMPT, build_system_prompt, USER_PROMPT, build_user_prompt).


Step 2 — Receive the Style and Language

Read the full file on GitHub · 228 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. 11d ago First seen · 228 lines · 93 tokens per session scan A f09beacb68bf

Subscribe to this mod's changes

prompt-triwizard is a skill published in the GitHub repository HiMyNameIsDavidKim/prompt-triwizard-skill (5 stars, last pushed 14d ago), licensed MIT. It adds 93 tokens to every session and 2,987 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.