plugins/terminal/skills/framework-signals/SKILL.md
Provides pass/fail/running/idle output markers for 15+ test, build, and deploy tools. Use when monitoring terminal output for jest, vitest, pytest, go test, cargo, webpack, vite, or vercel.
npx skillsauth add madappgang/magus framework-signalsInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Copy-paste-ready signal strings for start-and-watch and watch-pane pattern parameters. Consult this table whenever you need to know what text to look for — whether detecting completion, failure, or that a watcher is still initializing. For the state machine that drives the TDD loop, see terminal:tdd-workflow. For watcher setup, see terminal:terminal-interaction.
Note on Vitest version sensitivity: The
press a to rerunidle signal applies to Vitest < 2.0. Vitest >= 2.0 may use different watch mode output — verify against the running version if results seem off.
| Framework | Pass Signal | Fail Signal | Still Running | Idle / Waiting |
|-----------|------------|-------------|---------------|----------------|
| Jest | Tests: \d+ passed or All tests passed | FAIL (with space, line start) or Tests: \d+ failed | RUNS or Running \d+ tests | Waiting for file changes |
| Vitest | Tests: \d+ passed or ✓ N tests | FAIL (line start) or ● Test | RUNS | press a to rerun or Waiting... |
| Cargo watch | test result: ok. | test result: FAILED. or error[E | [Running 'cargo test'] | [Watching |
| pytest-watch | N passed in Xs or passed in | FAILED (caps+space) or N failed | Ding! Tests running... | Waiting for changes... |
| Go test (with entr) | ok (line start, space after) | FAIL (line start) or --- FAIL: | --- RUN | (no idle state — entr reruns on change) |
| Bun test | ✓ N tests or N pass | ✗ or N fail | progress output | (no explicit idle marker) |
| RSpec | N examples, 0 failures | N examples, N failures | progress dots | (no watcher state) |
| Tool | Success | Error | In Progress |
|------|---------|-------|-------------|
| Cargo build | Finished dev [unoptimized or Finished release | error[E or error: aborting | Compiling (line start) |
| Gradle | BUILD SUCCESSFUL in Xs | BUILD FAILED or > Task :{name} FAILED | > Task : or > Configure project : |
| Webpack | webpack compiled successfully or compiled successfully | Failed to compile. or ERROR in | compiling... or [webpack] |
| Vite HMR | [vite] hmr update /path | [vite] Internal server error: | [vite] page reload or [vite] connecting... |
| Vite build | built in Xs or dist/ output lines | error during build | transforming... |
| Make | silence + prompt return (exit 0) | make: *** [target] Error N or recipe for target failed | compiler invocations (cc, g++, clang) |
| Go build | silence + prompt return | ./file.go:\d+:\d+: error or build failed | no output until done |
| Platform | Success | Failure | In Progress |
|----------|---------|---------|-------------|
| Fly.io | Monitor: v{N} deployed successfully or live: N/N | Unhealthy allocations or live: 0/N (stuck) | ==> Releasing v{N} or live: 0/N changing |
| Vercel | Production: https:// or Ready! | Build failed or non-zero exit | Building, progress output |
| Railway | Deployment succeeded or Service is now live | Deployment failed or Build failed | Deploying... or Building... |
Verification status: Deploy platform strings are from knowledge, not live-verified against current CLI versions. Confirm against a live deploy before relying on these in production workflows.
| Tool | Success | Failure | In Progress |
|------|---------|---------|-------------|
| act | ✅ Success - step or Job succeeded | ❌ Failure - step or Job failed | [Workflow/Job] \| > step name |
| docker-compose | healthy (in docker ps) or service-specific ready signal | timeout on health check | Starting {service} ... done |
Verification status:
actoutput patterns are from knowledge, not a live run. Verify withact --list && act -j test -nbefore shipping act-based workflows.
RUNS phase returns stale or incomplete data. Wait for Waiting for file changes.[Running, RUNS, Ding! — these confirm the watcher noticed the change. Don't read results until they appear.pattern values in start-and-watch
and watch-pane. The signal strings in the tables above are valid Go regex patterns.
Example: watch-pane with triggers: "pattern:Tests: \\d+ passed|pattern:FAIL " returns
a WatchResult the moment the framework announces its result.The signal strings in this skill are valid Go regex patterns and can be passed directly to
the pattern or triggers parameters of start-and-watch and watch-pane.
mcp__tmux__watch-pane({
paneId: watcher_pane,
triggers: "pattern:Tests: \\d+ passed|pattern:FAIL |pattern:test result: ok",
timeout: 60
})
mcp__tmux__start-and-watch({
command: "npm run dev",
pattern: "Local:.*http|listening on|ready in",
mode: "quick",
timeout: 60
})
mcp__tmux__start-and-watch({
command: "cargo build",
pattern: "Finished|error\\[E",
triggers: "exit",
timeout: 120
})
mcp__tmux__start-and-watch({
paneId: watcher_pane,
command: "bun test --watch",
pattern: "press a to rerun|Waiting for file changes|Waiting\\.\\.\\.",
mode: "medium",
timeout: 30
})
testing
A test skill for validation testing. Use when testing skill parsing and validation logic.
tools
--- name: bad-skill description: This skill has invalid YAML in frontmatter allowed-tools: [invalid, array, syntax prerequisites: not-an-array --- # Bad Skill This skill has malformed frontmatter that should fail parsing. The YAML has: - Unclosed array bracket - Wrong type for prerequisites (should be array, not string)
development
Sync model aliases from the curated Firebase database. Fetches default model assignments, short aliases, team compositions, and known model metadata from the claudish API. Run this to get fresh model recommendations.
tools
Release one or more Magus plugins to the distribution repos (magus, magus-alpha, magus-marketing). Handles version inference from git history, marketplace.json updates, tagging, and force-push to lean dist repos. Use whenever the user says "release kanban", "release the dev plugin", "cut a new version of gtd", "bump kanban to 1.7", or hands you a batch like "release kanban and gtd". Also use for multi-plugin releases and for checking what a release would contain before committing.