run
Execute a named script defined in .aiwg/aiwg.config or list all available scripts
What this skill does
# 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**: ```bash # 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**: ```bash 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> ``` ### Example 2: Run a named script **User**: "Run the lint script" **Extraction**: Script name `lint` **Action**: ```bash aiwg run lint ``` **Response**: Executes `npm run lint`, streams output, then reports: "Script `lint` completed (exit 0)." ### Example 3: Run with pass-through arguments **User**: "Run the deploy script with --env production" **Extraction**: Script name `deploy`, extra args `--env production` **Action**: ```bash aiwg run deploy -- --env production ``` **Response**: Executes `./scripts/deploy.sh --env staging --env production` (or however the script merges args), then reports exit status. ### Example 4: Script not found **User**: "Run the build script" **Extraction**: Script name `build`, not present in config **Action**: ```bash aiwg run build ``` **Response**: "No script named `build` found in `.aiwg/aiwg.config`. Available scripts: test, lint, deploy. Register `build` with `aiwg init --interactive` or edit `.aiwg/aiwg.config` directly." ### Example 5: No config present **User**: "aiwg run test" **Extraction**: No `.aiwg/aiwg.config` found **Response**: "`.aiwg/aiwg.config` not found. Run `aiwg init` to create one and register scripts." ## Clarification Prompts If the user's intent is ambiguous: - "Which script would you like to run? Available: test, lint, deploy." - "No script name given — should I list all registered scripts?" ## References - @$AIWG_ROOT/src/cli/handlers/run.ts — `run` command handler - @$AIWG_ROOT/docs/cli-reference.md — CLI reference - @$AIWG_ROOT/agentic/code/addons/aiwg-utils/skills/init/SKILL.md — Registering scripts via init
Related in General
modeling-omnistudio-epc-catalog
IncludedSalesforce Industries CME EPC product-modeling skill for Product2-based catalog creation. Use when creating EPC products, configuring product attributes, building offer bundles with Product Child Items, or reviewing EPC DataPack JSON metadata for product catalog changes. TRIGGER when: user creates or updates Product2 EPC records, AttributeAssignment payloads, AttributeMetadata/AttributeDefaultValues, Offer bundles, or ProductChildItem relationships. DO NOT TRIGGER when: designing OmniScripts/FlexCards/Integration Procedures (use building-omnistudio-omniscript, building-omnistudio-flexcard, or building-omnistudio-integration-procedure), implementing Apex business logic (use generating-apex), or troubleshooting deployment pipelines (use deploying-metadata).
relationship-science-coach
IncludedUse this skill for direct, practical adult relationship coaching: couples conflict, repair, trust, marriage, dating, flirting, attachment patterns, emotional connection, sex, desire differences, eroticism, kink negotiation, affection, love languages, breakups, and long-term passion. Draw on Gottman, EFT and Hold Me Tight, attachment science, modern sex research, Perel, Nagoski, Kerner, Schnarch, Love and Stosny, and flexible love-language tools. Be concrete and low-hedge. Redirect only for imminent danger, abuse, coercive control, minors, non-consent, self-harm, stalking, or medical/legal/psychiatric decisions.
building-sf-integrations
IncludedSalesforce integration architecture and runtime plumbing with 120-point scoring. Use this skill to set up Named Credentials, External Credentials, External Services, REST/SOAP callout patterns, Platform Events, and Change Data Capture. TRIGGER when: user sets up Named Credentials, External Services, REST/SOAP callouts, Platform Events, CDC, or touches .namedCredential-meta.xml files. DO NOT TRIGGER when: Connected App/OAuth config (use configuring-connected-apps), Apex-only logic (use generating-apex), or data import/export (use handling-sf-data).
venue-templates
IncludedAccess comprehensive LaTeX templates, formatting requirements, and submission guidelines for major scientific publication venues (Nature, Science, PLOS, IEEE, ACM), academic conferences (NeurIPS, ICML, CVPR, CHI), research posters, and grant proposals (NSF, NIH, DOE, DARPA). This skill should be used when preparing manuscripts for journal submission, conference papers, research posters, or grant proposals and need venue-specific formatting requirements and templates.
let-fate-decide
IncludedDraws the 12 Houses of the Zodiac Tarot spread to inject entropy into planning when prompts are vague, ambiguous, or casually delegated. Interprets the spread to guide next steps. Use when the user says 'let fate decide', 'YOLO', 'whatever', 'idk', or other nonchalant phrases, makes Yu-Gi-Oh references, or when you are about to arbitrarily pick between multiple reasonable approaches. Prefer over ask-questions-if-underspecified when the user's tone is casual or playful rather than precision-seeking.
net-ops
IncludedCross-platform network troubleshooting (Windows, macOS, Linux) via local or remote shell. Use for: DNS broken, can't resolve hostnames, nslookup/dig works but apps fail, NRPT, WFP, scutil, /etc/resolver, systemd-resolved, /etc/resolv.conf, NetworkManager, VPN DNS leak residue (ProtonVPN/Mullvad/WireGuard/AnyConnect), AV/firewall blocking DNS or DoH, Tailscale DNS interaction, intermittent connectivity, remote diagnostics over SSH.