run

Executes named subagent roles with optimized task instructions via explicit invocation.

1|Updated May 12, 2026
One-click install
npx skills add https://github.com/mystilleef/spae-framework --skill run-mystilleef
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: run
Source: https://github.com/mystilleef/spae-framework/tree/main/codex/skills/run
Command: npx skills add https://github.com/mystilleef/spae-framework --skill run-mystilleef

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Coordinating multi-phase agent workflows requires a consistent way to dispatch work to specialized subagents without conversational overhead or accidental implicit triggers. This Skill provides a single orchestration entry point that parses a named agent role, refines the task instructions, and returns the subagent's result directly. ## Core Features & Use Cases - Explicit Invocation Only: Runs only when called with $run, never triggering implicitly, which prevents unintended agent execution. - Task Optimization: Strips conversational fluff from instructions and rewrites them in precise, token-efficient language before dispatch. - Subagent Orchestration: Parses the first argument as the subagent name, spawns it with the optimized task, waits for completion, and presents results verbatim. - Use Case: In the SPAE workflow, invoke /run spec <proposal> to dispatch the spec agent, then /run plan, /run build, and other phase agents in sequence, each receiving clean, focused instructions. ## Quick Start Invoke the run skill with an agent name and task, such as asking it to run the spec agent on your feature proposal.

Frequently Asked Questions about run

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I run a subagent with the run skill?▼

Invoke it explicitly with $run followed by the agent name and task, for example $run spec my-feature-proposal. The first word after the invocation names the subagent, and everything after becomes the task instructions.

How does the run skill optimize task instructions?▼

It strips conversational fluff and rewrites the task in precise, direct language for token and context efficiency before spawning the subagent. If no task is provided, it proceeds with an empty prompt.

Can the run skill trigger automatically without explicit invocation?▼

No. The skill is configured with allow_implicit_invocation set to false in its policy, so it only executes when explicitly called with $run and never triggers implicitly.

What happens after the subagent completes its task?▼

The orchestrator waits for the subagent to finish, presents the result directly without preamble or commentary, and then stops. It performs no further operations and never modifies results unless explicitly requested.

Which agent roles can be dispatched through this orchestrator?▼

In the SPAE framework it dispatches phase agents including spec, plan, inspect, build, check, fix, and verify. Each agent reads its designated inputs and writes its designated outputs within the seven-step workflow.