run

run is a command for Claude Code from travisjneuman/.claude. It costs 19 tokens per session (815 once invoked), scanned A, original, MIT.

A command that runs pre-written prompts from the ./prompts/ directory and archives them after successful completion.

In plain words
What is it for?
Use it for predefined prompts, batch prompt sequences, and repeatable workflows that should be archived automatically.
Why use it?
It keeps structured prompt-based work organized and separates completed prompts from those still waiting to run.

Command for Claude Code

Written for Claude Code: arguments in frontmatter. Also seen: mentions CLAUDE.md.

Needs its repository: it runs a file that does not travel with it, so clone the repository first. The line is mv ./prompts/completed/* .archive/completed-prompts/ 2>/dev/null || true.

Good fit Use it for predefined prompts, batch prompt sequences, and repeatable workflows that should be archived automatically.

Compare 6 commands from other repositories ↓
Install

Getting it into your agent

It runs from inside its repository, so the clone comes first — what it calls does not travel with the file alone.

Clone the repo
git clone --depth 1 https://github.com/travisjneuman/.claude
agentmods
npx agentmods add commands/travisjneuman/.claude/run

Made for: Claude Code.

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 run

README.md
[![agentmods](https://agentmods.dev/badge/commands/travisjneuman/.claude/run/github.svg)](https://agentmods.dev/commands/travisjneuman/.claude/run)
Your own site
<a href="https://agentmods.dev/commands/travisjneuman/.claude/run"><img src="https://agentmods.dev/badge/commands/travisjneuman/.claude/run/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 run

Your own site · 80×15
<a href="https://agentmods.dev/commands/travisjneuman/.claude/run"><img src="https://agentmods.dev/badge/commands/travisjneuman/.claude/run.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 19 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 815 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.00019 $0.00815
Opus 5 $0.00010 $0.00407
Sonnet 5 $0.00004 $0.00163
Haiku 4.5 $0.00002 $0.00081

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

Security

Grade A, and why

run 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 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.

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.

commands/run.md · 108 lines

How it starts

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

Run Prompt with Auto-Archive

Execute one or more prompts from ./prompts/ directory, then automatically archive completed prompts to .archive/completed-prompts/ per CLAUDE.md session protocol.


When to Use This Command

Use /run when... Use /start-task when...
You have pre-written prompts in ./prompts/ Describing a task naturally
Executing structured workflows Need intelligent skill/agent routing
Running batch prompt sequences Need complexity scoring (GSD vs Plan vs Direct)
Following established prompt files Starting fresh work

Note: Both approaches leverage the full skill ecosystem. /run is for pre-defined prompts; /start-task is for natural language routing.


Workflow

  1. Delegate to /taches-cc-resources:run-prompt to execute the prompt(s)
  2. After successful completion, move prompt(s) from ./prompts/completed/ to .archive/completed-prompts/
  3. Clean up any temporary directories

Implementation

Step 1: Execute the tache run-prompt command with all arguments passed through

/taches-cc-resources:run-prompt {{prompt_ids}}

Step 2: After completion, check if ./prompts/completed/ exists and move contents to archive

# If prompts/completed/ exists, move all files to archive and cleanup
if [ -d "./prompts/completed" ]; then
  mkdir -p ".archive/completed-prompts"
  mv ./prompts/completed/* .archive/completed-prompts/ 2>/dev/null || true
  rmdir ./prompts/completed 2>/dev/null || true
fi

Step 3: Report final location of archived prompts


Notes

  • This wrapper ensures CLAUDE.md compliance (prompts archived to .archive/completed-prompts/)
  • Transparent to user - just use /run [prompt-id] instead of /run-prompt
  • Supports all /run-prompt features: single, parallel, sequential execution
  • Skills auto-activate based on prompt content (same as standard prompts)

Read the full file on GitHub · 108 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. 7d ago First seen · 108 lines · 19 tokens per session scan A 15d973fd3b44

Subscribe to this mod's changes

run is a command published in the GitHub repository travisjneuman/.claude (97 stars, last pushed 5d ago), licensed MIT. It adds 19 tokens to every session and 815 once invoked, about $0.0001 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-09-03.