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.
npx skills add HiMyNameIsDavidKim/prompt-triwizard-skill --skill prompt-triwizardgit clone --depth 1 https://github.com/HiMyNameIsDavidKim/prompt-triwizard-skillWrote 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.
[](https://agentmods.dev/skills/himynameisdavidkim/prompt-triwizard-skill/prompt-triwizard)<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.
<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>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.
| Model | Per session | Once 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 |
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.
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
What ships with it
11 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.
- references/common/anti-patterns.md 11 KB
- references/common/core-principles.md 6.0 KB
- references/common/eval-rubric.md 4.7 KB
- references/styles/anthropic-claude.md 14 KB
- references/styles/google-gemini.md 17 KB
- references/styles/openai-gpt.md 11 KB
- references/usecases/agentic-tool-use.md 7.7 KB
- references/usecases/conversational.md 6.7 KB
- references/usecases/deep-research.md 7.1 KB
- references/usecases/rag-grounding.md 6.3 KB
- references/usecases/single-shot-transform.md 6.7 KB
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.
- 11d ago First seen · 228 lines · 93 tokens per session scan A f09beacb68bf
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.
Other skills, from other repositories
prompt-engineer
Use when designing prompts for LLMs, optimizing model performance, building evaluation frameworks, or implementing advanced prompting techniques like chain-of-thought, few-shot learning, or structured outputs.
guidance
Constrain LLM output with grammars; guarantee valid JSON.
outlines
Outlines: structured JSON/regex/Pydantic LLM generation.
instructor
Structured LLM outputs validated with Pydantic.
dspy
DSPy: declarative LM programs, auto-optimize prompts, RAG.
claude-api
Reference for the Claude API / Anthropic SDK — model ids, pricing, params, streaming, tool use, MCP, agents, caching, token counting, model migration. TRIGGER — read BEFORE opening the target file; don't skip because it "looks like a one-liner" — whenever: the prompt names Claude/Anthropic in any form (Claude…