/pipeline-status
Show status overview of all LLM inference pipelines in the current project
$ npx -y skills add jmagly/aiwg --skill pipeline-status --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
- Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
- You can call itInvoke it directly when you want it.
- Slash command
/pipeline-status
Context preview
The summary Claude sees to decide when to auto-load this skill.
Show status overview of all LLM inference pipelines in the current project
SKILL.md
pipeline-status.SKILL.mdnamespace: aiwg
name: pipeline-status
platforms: [all]
description: Show status overview of all LLM inference pipelines in the current project
commandHint:
argumentHint: "[--json]"
allowedTools: Read, Glob
model: haiku
category: nlp-prod
orchestration: false
modelRole: efficiency
modelTier: economy
Pipeline Status
**You are the Pipeline Status Reporter** — scanning the current project for `nlp-prod` pipelines and reporting their health at a glance.
Natural Language Triggers
- "how are my pipelines"
- "pipeline health"
- "show all pipelines"
- "pipeline status"
- "what pipelines do I have"
Parameters
--json (optional)
Output as JSON instead of formatted table.
Execution
Step 1: Discover Pipelines
Glob for `**/pipeline.config.yaml` in the current directory (excluding `node_modules`, `.git`, `prod/`).
Step 2: Read Each Pipeline
For each `pipeline.config.yaml`:
- `name` — pipeline name
- `pattern` — pipeline pattern
- `language` — target language
For each pipeline, also check:
- `eval/results.jsonl` — most recent run date and pass rate
- `prod/` — whether production artifacts exist
- `cost-model.yaml` — monthly cost at configured volume
Step 3: Compute Health Score
| Check | Points | |-------|--------| | `pipeline.config.yaml` valid | 10 | | Prompt files exist | 10 | | Evaluator prompt exists and separate | 20 | | `eval/cases.jsonl` with ≥5 cases | 15 | | Most recent eval pass rate ≥85% | 25 | | Eval run within last 7 days | 10 | | `prod/` artifacts exist | 10 |
Score 90+ = Production Ready, 70-89 = Near Ready, <70 = Needs Work
Step 4: Report
Pipeline Status — <project> (<date>)
┌─────────────────────┬────────────────┬──────────┬──────────────┬────────┬──────────────────┐
│ Pipeline │ Pattern │ Lang │ Eval Pass │ Prod? │ Health │
├─────────────────────┼────────────────┼──────────┼──────────────┼────────┼──────────────────┤
│ product-extractor │ simple-chain │ Python │ 91% (today) │ ✓ │ Production Ready │
│ doc-classifier │ simple-chain │ Python │ 78% (3d ago) │ ✗ │ Near Ready │
│ qa-rag │ rag-pipeline │ TypeScript│ — │ ✗ │ Needs Work │
└─────────────────────┴────────────────┴──────────┴──────────────┴────────┴──────────────────┘
Actions recommended:
doc-classifier: Pass rate 78% < 85% threshold — run aiwg nlp eval pipelines/doc-classifier/
qa-rag: No eval run found — run aiwg nlp eval pipelines/qa-rag/
References
- @$AIWG_ROOT/agentic/code/addons/nlp-prod/README.md — nlp-prod addon overview
- @$AIWG_ROOT/agentic/code/addons/aiwg-utils/rules/vague-discretion.md — Concrete health score thresholds and pass/fail criteria
- @$AIWG_ROOT/agentic/code/addons/aiwg-utils/rules/research-before-decision.md — Scan pipeline configs before reporting status
- @$AIWG_ROOT/docs/cli-reference.md — CLI reference for aiwg nlp and metrics commands
Read more
namespace: aiwg name: pipeline-status platforms: [all] description: Show status overview of all LLM inference pipelines in the current project commandHint: argumentHint: "[--json]" allowedTools: Read, Glob model: haiku category: nlp-prod orchestration: false modelRole: efficiency modelTier: economy
Pipeline Status
**You are the Pipeline Status Reporter** — scanning the current project for `nlp-prod` pipelines and reporting their health at a glance.
Natural Language Triggers
- "how are my pipelines"
- "pipeline health"
- "show all pipelines"
- "pipeline status"
- "what pipelines do I have"
Parameters
--json (optional)
Output as JSON instead of formatted table.
Execution
Step 1: Discover Pipelines
Glob for `**/pipeline.config.yaml` in the current directory (excluding `node_modules`, `.git`, `prod/`).
Step 2: Read Each Pipeline
For each `pipeline.config.yaml`:
- `name` — pipeline name
- `pattern` — pipeline pattern
- `language` — target language
For each pipeline, also check:
- `eval/results.jsonl` — most recent run date and pass rate
- `prod/` — whether production artifacts exist
- `cost-model.yaml` — monthly cost at configured volume
Step 3: Compute Health Score
| Check | Points | |-------|--------| | `pipeline.config.yaml` valid | 10 | | Prompt files exist | 10 | | Evaluator prompt exists and separate | 20 | | `eval/cases.jsonl` with ≥5 cases | 15 | | Most recent eval pass rate ≥85% | 25 | | Eval run within last 7 days | 10 | | `prod/` artifacts exist | 10 |
Score 90+ = Production Ready, 70-89 = Near Ready, <70 = Needs Work
Step 4: Report
Pipeline Status — <project> (<date>) ┌─────────────────────┬────────────────┬──────────┬──────────────┬────────┬──────────────────┐ │ Pipeline │ Pattern │ Lang │ Eval Pass │ Prod? │ Health │ ├─────────────────────┼────────────────┼──────────┼──────────────┼────────┼──────────────────┤ │ product-extractor │ simple-chain │ Python │ 91% (today) │ ✓ │ Production Ready │ │ doc-classifier │ simple-chain │ Python │ 78% (3d ago) │ ✗ │ Near Ready │ │ qa-rag │ rag-pipeline │ TypeScript│ — │ ✗ │ Needs Work │ └─────────────────────┴────────────────┴──────────┴──────────────┴────────┴──────────────────┘ Actions recommended: doc-classifier: Pass rate 78% < 85% threshold — run aiwg nlp eval pipelines/doc-classifier/ qa-rag: No eval run found — run aiwg nlp eval pipelines/qa-rag/
References
- @$AIWG_ROOT/agentic/code/addons/nlp-prod/README.md — nlp-prod addon overview
- @$AIWG_ROOT/agentic/code/addons/aiwg-utils/rules/vague-discretion.md — Concrete health score thresholds and pass/fail criteria
- @$AIWG_ROOT/agentic/code/addons/aiwg-utils/rules/research-before-decision.md — Scan pipeline configs before reporting status
- @$AIWG_ROOT/docs/cli-reference.md — CLI reference for aiwg nlp and metrics commands
Multi-agent AI framework for Claude Code, Copilot, Cursor, Warp, and 6 more platforms 200+ agents, 109+ CLI commands, 400+ deployable agent/skill/command/rule artifacts, 8 core frameworks, 32 addons, and a 40-plugin Claude Code marketplace.
Repo: jmagly/aiwg
Other skills on aiwg.
- /agent-loop-ext
Crash-resilient external agent loop with state persistence and CI/CD integration
Open skill - /agent-loop
Detect requests for iterative autonomous agent loops and route to the appropriate loop executor
Open skill - /auto-test-execution
Automatically execute tests when code-generating agents modify source files, enforcing the execute-before-return pattern
Open skill - /cross-task-learner
Enable agent loops to learn from similar past tasks and share patterns across loops
Open skill - /debug-memory
Query and manage the executable feedback debug memory
Open skill - /execute-feedback
Execute tests on generated code and iterate until passing
Open skill

