stellar-help

Analyzes workflow state and recommends the next BMad skill to invoke.

Updated Jul 26, 2026
One-click install
npx skills add https://github.com/chrissstellee/Movix --skill stellar-help-chrissstellee
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: stellar-help
Source: https://github.com/chrissstellee/Movix/tree/main/.agents/skills/stellar-help
Command: npx skills add https://github.com/chrissstellee/Movix --skill stellar-help-chrissstellee

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Users working within the BMad framework often lose track of where they are in a multi-phase workflow and which skill to run next. This Skill reads the installed module catalog, configuration files, and existing output artifacts to orient the user and recommend the correct next step. ## Core Features & Use Cases - Workflow Position Detection: Scans resolved output paths for artifact files matching catalog patterns to infer which phases and skills are already complete. - Next-Step Recommendation: Interprets the stellar-help.csv catalog (phases, preceded-by, followed-by, required gates) to suggest optional and required next skills with menu codes and invocation args. - Grounded Q&A: Fetches module documentation (e.g., llms.txt) referenced by _meta catalog rows to answer general questions about a module without fabricating details. - Use Case: A user asks "what should I do next in BMad?" The Skill detects a completed PRD artifact, identifies the architecture phase as the next required gate, and offers to launch that skill immediately. ## Quick Start Ask the assistant "where am I in my BMad workflow and what should I do next?" to get an oriented recommendation.

Frequently Asked Questions about stellar-help

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

FAQPage Schema
How do I know what to do next in a BMad workflow?▼

Invoke the stellar-help skill, which reads the stellar-help.csv catalog and scans your output directories for completed artifacts. It then recommends the next optional and required skills with their menu codes and invocation commands.

How does BMad help detect which workflow steps are completed?▼

It resolves output-location paths from config.yaml files and searches them for files matching the outputs patterns defined in the catalog. Found artifacts are fuzzy-matched to catalog rows to infer completion, supplemented by explicit user statements.

What is the stellar-help.csv catalog used for?▼

The catalog is an assembled manifest of all installed module skills with columns for phase, sequencing (preceded-by, followed-by), required gates, output locations, and descriptions. The help skill parses it to determine workflow ordering and gating.

Can the help skill answer general questions about a BMad module?▼

Yes. Catalog rows with _meta in the skill column point to module documentation such as llms.txt files. The skill fetches these sources to ground its answers rather than fabricating module-specific details.

What are the limitations of BMad workflow recommendations?▼

Sequencing hints like preceded-by and followed-by are soft suggestions, not hard gates; only rows marked required=true block meaningful progress. Completion detection also depends on artifacts existing at the resolved output paths.