dt

dt is a command for Claude Code from widnyana/eyay-toolkits. It costs 26 tokens per session (534 once invoked), scanned B, original, MIT.

A command for turning a Design Thinking mode on or off in a project. It can also show the current setting or run a prompt with the mode enabled.

In plain words
What is it for?
Use it to toggle the mode, check whether it is enabled, or activate it while sending a prompt.
Why use it?
It keeps the mode setting between uses, so you do not need to configure it manually each time.

Command for Claude Code

Written for Claude Code: allowed-tools in frontmatter.

Part of the design-thinking plugin — 5 commands shipped together

Good fit Use it to toggle the mode, check whether it is enabled, or activate it while sending a prompt.

Compare 6 commands from other repositories ↓
Install with agentmods
npx agentmods add commands/widnyana/eyay-toolkits/dt
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.

Clone the repo
git clone --depth 1 https://github.com/widnyana/eyay-toolkits

Made for: Claude Code.

Or install design-thinking, the plugin that ships this one along with the rest of its 5 commands.

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 dt

README.md
[![agentmods](https://agentmods.dev/badge/commands/widnyana/eyay-toolkits/dt.svg)](https://agentmods.dev/commands/widnyana/eyay-toolkits/dt)
Your own site
<a href="https://agentmods.dev/commands/widnyana/eyay-toolkits/dt"><img src="https://agentmods.dev/badge/commands/widnyana/eyay-toolkits/dt.svg" alt="Measured on agentmods" height="20"></a>
Per session 26 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 534 The whole file, excluding the scripts and references it only reads on demand.
Security scan B 1 finding. 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.00026 $0.00534
Opus 5 $0.00013 $0.00267
Sonnet 5 $0.00005 $0.00107
Haiku 4.5 $0.00003 $0.00053

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

Security

Grade B, and why

dt scanned grade B with 1 finding 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 7d 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.

Reads agent configuration directoriesmediumAgent snooping

.claude/, .codex/, .gemini/ hold keys, settings and other credentials a mod has no legitimate need for.

Current state: !`test -f .claude/design-thinking.local.md && cat .claude/design-thinking.local.md || echo "(no state file — enabled: false)"`
plugins/design-thinking/commands/dt.md · 52 lines

What it actually says

Argument: $ARGUMENTS

State file: .claude/design-thinking.local.md — YAML frontmatter enabled: true|false, e.g.:

---
enabled: true
---

Current state: !test -f .claude/design-thinking.local.md && cat .claude/design-thinking.local.md || echo "(no state file — enabled: false)"

Do the following:

  1. Read the enabled value from the state shown above. Treat it as false if the file doesn't exist.
  2. Classify the argument (case-insensitive, trimmed):
    • Empty → toggle: flip enabled.
    • on → set enabled: true.
    • off → set enabled: false.
    • statusdo not write anything. Report "Design Thinking mode: on" or "Design Thinking mode: off" and stop here.
    • Anything else → set enabled: true (never off, regardless of current state) and remember the full argument text as <prompt> for step 5.
  3. Unless the branch was status, write the new value to .claude/design-thinking.local.md (create the .claude/ directory first if it doesn't exist) using exactly this format:
    ---
    enabled: <true|false>
    ---
    
  4. Notify the user of the resulting mode:
    • Turned on: "Design Thinking ON — plans and reviews will render as Design Graphs (Graph Protocol)."
    • Turned off: "Design Thinking OFF."
  5. If step 2 captured a <prompt>, continue in this same turn: work on <prompt>, but first present the Design Graph (Graph Protocol format — see this plugin's graph-protocol, design-method, and design-graph skills) plus any clarifying questions. Implement only after the user's go-ahead.

Design Thinking mode persists across restarts via the state file above: this plugin's SessionStart hook re-announces the mode at the start of every new session while enabled: true. Turn it off any time with /dt off.

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. 7d ago First seen · 52 lines · 26 tokens per session scan B ba0ceb9389ed

Subscribe to this mod's changes

dt is a command published in the GitHub repository widnyana/eyay-toolkits (7 stars, last pushed 5d ago), licensed MIT. It adds 26 tokens to every session and 534 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it B with 1 finding (reads agent configuration directories). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.