run

run is a command for Claude Code from Sahib-Sawhney-WH/sahibs-claude-plugin-marketplace. It costs 13 tokens per session (626 once invoked), scanned A, original, MIT.

A command for running a Dapr application locally with its sidecar, a companion process that provides Dapr services to the application.

In plain words
What is it for?
Use it to find the application entry point, validate Dapr and component files, start Python apps such as FastAPI or Flask services, and monitor logs.
Why use it?
It checks the local Dapr setup and loads component configurations before starting the application, reducing setup and troubleshooting work.

Command for Claude Code

Written for Claude Code: $ARGUMENTS substitution.

Needs its repository: it runs a file that does not travel with it, so clone the repository first. The line is -- python src/main.py.

Part of the dapr plugin — 9 skills, 14 commands, 8 agents shipped together

Good fit Use it to find the application entry point, validate Dapr and component files, start Python apps such as FastAPI or Flask services, and monitor logs.

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/Sahib-Sawhney-WH/sahibs-claude-plugin-marketplace
agentmods
npx agentmods add commands/sahib-sawhney-wh/sahibs-claude-plugin-marketplace/run

Made for: Claude Code.

Or install dapr, the plugin that ships this one along with the rest of its 9 skills, 14 commands, 8 agents.

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/sahib-sawhney-wh/sahibs-claude-plugin-marketplace/run/github.svg)](https://agentmods.dev/commands/sahib-sawhney-wh/sahibs-claude-plugin-marketplace/run)
Your own site
<a href="https://agentmods.dev/commands/sahib-sawhney-wh/sahibs-claude-plugin-marketplace/run"><img src="https://agentmods.dev/badge/commands/sahib-sawhney-wh/sahibs-claude-plugin-marketplace/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/sahib-sawhney-wh/sahibs-claude-plugin-marketplace/run"><img src="https://agentmods.dev/badge/commands/sahib-sawhney-wh/sahibs-claude-plugin-marketplace/run.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 13 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 626 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.00013 $0.00626
Opus 5 $0.00006 $0.00313
Sonnet 5 $0.00003 $0.00125
Haiku 4.5 $0.00001 $0.00063

Measured 12d ago against content hash ec34cdbf5a06, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, 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 12d 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.

plugins/dapr/commands/run.md · 100 lines

How it starts

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

DAPR Local Run

Run your DAPR application locally with the DAPR sidecar for development and testing.

Behavior

When the user runs /dapr:run:

  1. Detect Application

    • Find dapr.yaml in current directory or $ARGUMENTS path
    • Identify application entry point (main.py, app.py, etc.)
    • Detect framework (FastAPI, Flask, gRPC)
  2. Validate Environment

    • Check DAPR CLI installation
    • Verify DAPR runtime is initialized (dapr init)
    • Ensure components/ directory exists
    • Validate component YAML files
  3. Configure Run

    • Set app-id from dapr.yaml or directory name
    • Configure app-port based on framework detection
    • Load components from local directory
    • Enable debug logging if requested
  4. Execute DAPR Run

    dapr run \
      --app-id {app_id} \
      --app-port {port} \
      --dapr-http-port 3500 \
      --components-path ./components \
      --log-level debug \
      -- python src/main.py
    
  5. Monitor Output

    • Stream application logs
    • Show DAPR sidecar logs
    • Display service endpoints
    • Watch for errors and suggest fixes

Arguments

  • $ARGUMENTS - Optional path to application or specific run options

Options Detection

Parse $ARGUMENTS for:

  • --debug - Enable verbose logging
  • --port {n} - Override application port
  • --config {path} - Use specific config file
  • --hot-reload - Enable file watching (if supported)

Examples

/dapr:run
/dapr:run ./services/order-service
/dapr:run --debug --port 8080

Troubleshooting

If the run fails, automatically check:

  1. Is DAPR installed? → Suggest dapr init
  2. Port conflict? → Find available port
  3. Component error? → Validate YAML syntax
  4. Python error? → Check requirements installed
  5. Missing dependencies? → Run pip install -r requirements.txt

Multi-Service Support

For multi-service projects (detected via dapr.yaml services section):

  • Offer to run specific service or all services
  • Use dapr run -f dapr.yaml for multi-app mode
  • Display all service endpoints

Read the full file on GitHub · 100 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. 12d ago First seen · 100 lines · 13 tokens per session scan A ec34cdbf5a06

Subscribe to this mod's changes

run is a command published in the GitHub repository Sahib-Sawhney-WH/sahibs-claude-plugin-marketplace (4 stars, last pushed 8mo ago), licensed MIT. It adds 13 tokens to every session and 626 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-08-31.