Agent Skillsrohitg00/pro-workflow › skill-router

skill-router

GitHub

技能路由索引,汇总所有工作流技能和命令。按任务分组,标注触发方式(人工或自动),用于快速查找匹配的技能、理解功能映射及解决选择困惑。

skills/skill-router/SKILL.md rohitg00/pro-workflow

Trigger Scenarios

不确定哪个技能适合当前任务 询问系统具备哪些能力 需要查看特定任务的完整工作流列表 查询某项具体工作对应的技能

Install

npx skills add rohitg00/pro-workflow --skill skill-router -g -y
More Options

Use without installing

npx skills use rohitg00/pro-workflow@skill-router

指定 Agent (Claude Code)

npx skills add rohitg00/pro-workflow --skill skill-router -a claude-code -g -y

安装 repo 全部 skill

npx skills add rohitg00/pro-workflow --all -g -y

预览 repo 内 skill

npx skills add rohitg00/pro-workflow --list

SKILL.md

Frontmatter
{
    "name": "skill-router",
    "description": "The index of every pro-workflow skill and command, grouped by job, with when to reach for each and whether it is human-run or auto-triggered. Use when you are not sure which skill fits, want the full map, or ask \"what can this do\", \"which skill for X\", \"list the workflow\".",
    "user-invocable": true
}

skill-router

You cannot hold 41 skills and 23 commands in your head. This is the index so you do not have to. Each entry says what it is for and how it fires: [human] you invoke it deliberately, [auto] the agent reaches for it from your prompt.

Keep this honest. When a skill is added, renamed, removed, or changes how it fits a flow, update this file in the same change. A router that points at a skill that no longer exists, or omits a new one, is worse than none.

How to use it

State the job in one line. Match it to a group below. If two skills look close, the when to reach clause is the tiebreaker. Most skills have a matching slash command of the same name, so this index covers commands too.

Self-correction and memory

  • learn-rule [human] - capture a correction as a durable rule loaded on every future session.
  • replay-learnings [auto] - surface past learnings relevant to the task before you start.
  • insights [human] - correction trends, heatmaps, productivity view.
  • skill-optimizer [human] - train a skill's SKILL.md against accumulated corrections.

Planning and decisions

  • plan-interrogate [human] - resolve every open decision before code; emits a decision ledger, a shared-language CONTEXT.md, and decision records.
  • domain-modeling [human] - build the project's shared vocabulary and bounded contexts up front.
  • improve-architecture [human] - audit an area and propose the smallest structural moves; plan, not rewrite.
  • thoroughness-scoring [auto] - score each decision point 1-10 so effort tracks stakes.
  • orchestrate [human] - wire commands, agents, and skills together for a multi-phase feature.

Multi-agent and parallel work

  • agent-teams [human] - lead plus teammates sharing one task list.
  • batch-orchestration [human] - split a large change into independent units, one agent each.
  • parallel-worktrees [human] - git worktrees for zero-dead-time parallel sessions.
  • sprint-status [human] - status across active parallel sessions.

Context and tokens

  • context-engineering [human] - Write, Select, Compress, Isolate; the memory taxonomy.
  • context-optimizer [human] - trim token usage when a session drags.
  • compact-guard [human] - preserve critical state before compaction.
  • token-efficiency [auto] - anti-sycophancy, tool-call budgets, one-pass output.
  • mcp-audit [human] - audit MCP servers for token overhead, redundancy, security.

Quality and review

  • tdd [human] - red-green-refactor loop with good-test guidance.
  • deslop [auto] - strip AI slop and over-engineering from the branch diff; also lints SKILL.md files.
  • smart-commit [human] - quality gates, staged review, conventional commit.
  • llm-gate [auto] - LLM-verified checks on commits, patterns, patches.
  • llm-council [human] - multi-LLM deliberation on a hard call.
  • safe-mode [human] - hook-enforced guard against destructive operations.

Design and writing

  • design-engineering [auto] - interface craft: motion decision framework, easing, timing, springs, component feel, visual foundations.
  • writing-guidelines [auto] - clear-writing standards for docs, UI copy, error messages, commit and PR text.

Knowledge and research

  • wiki-builder [human] - start and grow a persistent FTS5-indexed wiki.
  • wiki-query [auto] - BM25 retrieval over a wiki with citations.
  • wiki-research-loop [human] - budget-capped auto-grow of a wiki.
  • wiki-viewer [human] - self-contained HTML view of a wiki.
  • survey-generator [human] - structured literature survey on a topic.

Orientation, cost, lifecycle, setup

  • module-map [auto] - one-screen map of an unfamiliar area.
  • bug-capture [auto] - turn a reported defect into a domain-language issue.
  • cost-tracker [human] - session cost and budget alerts.
  • permission-tuner [human] - generate allow/deny rules from denial patterns.
  • wrap-up [human] - end-of-session ritual: audit, persist learnings, handoff.
  • session-handoff [human] - structured handoff doc for the next session.
  • file-watcher [human] - hooks that react to config/env/dep changes.
  • auto-setup [human] - configure gates, hooks, settings for a new project.
  • pro-workflow [auto] - the system overview; orchestration patterns and reference.
  • skill-router [human] - this index of every skill and command.

Command-only (no matching skill)

These slash commands ship without a skill of the same name: /commit, /develop, /doctor, /handoff, /learn, /list, /parallel, /replay, /search, /skill-optimize, /wiki.

Naming the invocation mode

Every skill declares one intent. [human] skills are deliberate, side-effectful, or session rituals and carry user-invocable: true. [auto] skills earn their place in context by a description precise enough to fire on the right prompt and stay quiet otherwise. See rules/skill-conventions.mdc for the full convention and the write-operation rules for state-changing skills.

Version History

  • 7f7209d Current 2026-07-24 11:41

Same Skill Collection

skills/agent-teams/SKILL.md
skills/auto-setup/SKILL.md
skills/batch-orchestration/SKILL.md
skills/bug-capture/SKILL.md
skills/compact-guard/SKILL.md
skills/context-engineering/SKILL.md
skills/context-optimizer/SKILL.md
skills/cost-tracker/SKILL.md
skills/design-engineering/SKILL.md
skills/deslop/SKILL.md
skills/domain-modeling/SKILL.md
skills/file-watcher/SKILL.md
skills/improve-architecture/SKILL.md
skills/insights/SKILL.md
skills/learn-rule/SKILL.md
skills/llm-council/SKILL.md
skills/llm-gate/SKILL.md
skills/mcp-audit/SKILL.md
skills/orchestrate/SKILL.md
skills/parallel-worktrees/SKILL.md
skills/permission-tuner/SKILL.md
skills/plan-interrogate/SKILL.md
skills/replay-learnings/SKILL.md
skills/safe-mode/SKILL.md
skills/session-handoff/SKILL.md
skills/smart-commit/SKILL.md
skills/sprint-status/SKILL.md
skills/tdd/SKILL.md
skills/thoroughness-scoring/SKILL.md
skills/token-efficiency/SKILL.md
skills/wiki-builder/SKILL.md
skills/wiki-query/SKILL.md
skills/wiki-research-loop/SKILL.md
skills/wiki-viewer/SKILL.md
skills/wrap-up/SKILL.md
skills/writing-guidelines/SKILL.md
skills/pro-workflow/SKILL.md
skills/skill-optimizer/SKILL.md
skills/survey-generator/SKILL.md

Metadata

Files
0
Version
7f7209d
Hash
07d52f98
Indexed
2026-07-24 11:41

Главная - Вики-сайт
Copyright © 2011-2026 iteam. Current version is 2.155.2. UTC+08:00, 2026-08-06 17:33
浙ICP备14020137号-1 $Гость$