list-workflows
GitHub读取项目根目录 CATALOG.md,筛选状态为 Done 或 Deployed 的可运行工作流,展示名称、描述、运行命令及参数,并标注部署状态。
Trigger Scenarios
Install
npx skills add leamsigc/ShortsGenerator --skill list-workflows -g -y
SKILL.md
Frontmatter
{
"name": "list-workflows",
"description": "List all runnable workflows in this project with their arguments and deployment status"
}
List all runnable workflows in this project with their arguments and deployment status.
Steps
-
Read
CATALOG.mdat the project root- Parse the Workflows table
- Filter to only workflows with status Done or Deployed (skip Planned, In Progress, Archived)
- All needed info is in the table — do NOT read individual workflow files
-
Display the results using the columns from the table:
For each workflow, show one entry like:
{name} — {description} Run: python workflows/{name}/main.py {args} Args: {args column from CATALOG.md} {[Deployed to Modal] if deploy target includes Modal, otherwise omit}Rules:
- The
Argscolumn in CATALOG.md contains the argument names and descriptions — display them directly - If Args is
noneor empty, sayArgs: none (interactive prompt) - If the deploy target is
Local + Modalor the status isDeployed, append[Deployed to Modal]on its own line - If the deploy target is just
Local, do not add any deployment tag
- The
-
If no workflows match (none are Done or Deployed), say:
No runnable workflows found. Use
/new-workflowto scaffold one and/buildto implement it. -
Footer: After the list, show a count:
{n} runnable workflow(s)and a reminder that you can run/onboardfor full project details.
Version History
- 7b83166 Current 2026-08-29 02:31


