run

run is a skill for Claude Code, Codex from jmagly/aiwg. It costs 20 tokens per session (1,039 once invoked), scanned A, original, MIT.

A command for running named shell scripts defined in `.aiwg/aiwg.config`, or listing the scripts when no name is supplied.

In plain words
What is it for?
Use it to list available scripts or run tasks such as tests and deployments.
Why use it?
It provides one place to discover and run project scripts, including scripts with extra command-line arguments.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Needs its repository: it runs a file that does not travel with it, so clone the repository first. The line is deploy → ./scripts/deploy.sh --env staging.

Good fit Use it to list available scripts or run tasks such as tests and deployments.

Compare 6 skills 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/jmagly/aiwg
agentmods
npx agentmods add skills/jmagly/aiwg/run

Made for: Claude Code, Codex.

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/skills/jmagly/aiwg/run.svg)](https://agentmods.dev/skills/jmagly/aiwg/run)
Your own site
<a href="https://agentmods.dev/skills/jmagly/aiwg/run"><img src="https://agentmods.dev/badge/skills/jmagly/aiwg/run.svg" alt="Measured on agentmods" height="20"></a>
Per session 20 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,039 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. Third-party audits
  • NVIDIA SkillSpector warn 7 Sept 2026
SkillSpector: 1 finding, up to medium

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • medium Agent Snooping · line 147
    Skill enumerates or reads other installed skills. Access to other skills' SKILL.md files or the skills directory reveals prompt instructions, capabilities, and secrets that should be invisible to peer skills.
    Fix: Remove all code or instructions that list or read other skills' files or directories. Skills should operate independently; cross-skill access is a privilege escalation.
How audits are shown
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.00020 $0.01039
Opus 5 $0.00010 $0.00519
Sonnet 5 $0.00004 $0.00208
Haiku 4.5 $0.00002 $0.00104

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

agentic/code/addons/aiwg-utils/skills/run/SKILL.md · 148 lines

How it starts

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

Run

You execute a named script defined in .aiwg/aiwg.config, or list all available scripts when no name is given.

Triggers

Alternate expressions and non-obvious activations (primary phrases are matched automatically from the skill description):

  • "what scripts are available" → list scripts
  • "run the deploy script" → run deploy
  • "execute test script" → run test
  • "aiwg run" → list if no name; run if name given

Trigger Patterns Reference

Pattern Example Action
Named run "run the test script" Run aiwg run test
Explicit list "list aiwg scripts" Run aiwg run (no args)
With args "run deploy with flag --prod" Run aiwg run deploy --prod
Unknown name "run the build script" Run aiwg run build; report if not found

Behavior

When triggered:

  1. Verify config exists:

    • Read .aiwg/aiwg.config to confirm scripts block is present.
    • If no config found, suggest aiwg init to create one.
  2. Extract arguments:

    • Is a script name specified? If yes, run it.
    • If no name, list all registered scripts with their shell commands.
    • Are additional arguments passed through? Append them to the shell invocation.
  3. Run the appropriate command:

    # List all available scripts
    aiwg run
    
    # Run a named script
    aiwg run <script-name>
    
    # Run with pass-through arguments
    aiwg run <script-name> -- <extra-args>
    
  4. What "run" does:

    • Reads the script's shell command from .aiwg/aiwg.config
    • Executes it in the project root
    • Streams output to the terminal
    • Reports exit code on completion
  5. Report the result — show the command that was executed, stream output, and confirm success or failure with exit code.

Examples

Example 1: List available scripts

User: "What scripts do I have registered in aiwg?"

Extraction: List request, no script name

Action:

aiwg run

Response:

Registered scripts (from .aiwg/aiwg.config):

  test    → npm test
  lint    → npm run lint
  deploy  → ./scripts/deploy.sh --env staging

Run a script with: aiwg run <script-name>

Read the full file on GitHub · 148 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. 3d ago First seen · 148 lines · 20 tokens per session scan A 53a8f68f5be9

Subscribe to this mod's changes

run is a skill published in the GitHub repository jmagly/aiwg (209 stars, last pushed 2d ago), licensed MIT. It adds 20 tokens to every session and 1,039 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-05.

Related

Other skills, from other repositories

memstack-automation-n8n-workflow-builder

Use this skill when the user says 'n8n workflow', 'build a workflow', 'automation workflow', 'connect services', or needs visual workflow design with node mapping, data transformations, and error handling for n8n. Do NOT use for standalone webhook endpoints or cron jobs.

cwinvestments/memstack · 68 tokens

memstack-automation-cron-scheduler

Use this skill when the user says 'cron job', 'scheduled task', 'run every', 'cron expression', 'recurring job', or needs production-grade scheduled jobs with overlap prevention, monitoring, and structured logging. Do NOT use for n8n workflows or event-driven webhooks.

cwinvestments/memstack · 67 tokens

session-save

Save the current session state (decisions, modified files, current status, and next steps) to a handoff file for later resume.

FlorianBruniaux/claude-code-ultimate-guide · 31 tokens

overheard

Find commitments the user made in the last two weeks and did not follow through on. A promises audit.

ghostwright/phantom · 24 tokens

find-plugin-file

This skill should be used when needing to locate files within the Claude Code plugins cache directory (/.claude/plugins/cache). Triggers include finding tool scripts, skill files, or any plugin resource when the hardcoded path is unknown or varies by plugin version. Use when slash commands or orchestrators need to…

closedloop-ai/claude-plugins · 70 tokens

atelier-orchestrator

Skill routing and workflow orchestration. Selects Inline Plan or Spec-backed Plan, routes to the correct workflow skill, and manages transitions between phases. Use when starting any conversation or task to determine which planning mode and skill apply.

martinffx/atelier · 52 tokens