ops
GitHubOPS 技能作为统一路由入口,根据用户指令动态加载并调用业务运营相关的专家技能(如通信、项目、基础设施等),实现按需激活与任务分发。
Trigger Scenarios
Install
npx skills add Lifecycle-Innovations-Limited/claude-ops --skill ops -g -y
SKILL.md
Frontmatter
{
"name": "ops",
"effort": "medium",
"maxTurns": 20,
"description": "This skill should be used when the user asks to \"ops command center\", \"\/ops:ops\", or \"run the business\". Single discovery router for all business operations — communications, projects, infrastructure, revenue, marketing, releases, fleet management, automation, or any OPS capability. Loads and invokes only the relevant specialist instructions on demand.",
"allowed-tools": [
"Read",
"Skill"
],
"argument-hint": "[command] [args]"
}
OPS — Lazy Capability Router
This is the single broad discovery entry for the OPS plugin. Specialist skill and agent bodies are intentionally absent from startup context.
Route
- If
$ARGUMENTSis empty, invoke theops:ops-dashskill. - Otherwise, read the capability index.
- Match the user's complete request—not merely one keyword—to exactly one specialist skill.
- Invoke that skill through the
Skilltool using its exact namespaced name:ops:<skill-name>. Forward the user's original arguments and intent unchanged. - If two specialists genuinely fit, choose the narrower one. Ask only when the choice would materially change an external action.
Load ops-rules before acting. Public repo (no personal data). Outbound: one draft → one approval → one send. If AskUserQuestion / Workflow are missing, follow Rule 10 in ops-rules (Hermes: numbered options / two-turn Telegram card; delegate_task).
Do not reproduce or summarize a specialist workflow from the index. Invoke the specialist
so Claude Code loads its full body, allowed tools, effort, hooks, and turn budget on demand.
Never invoke ops:ops from this router; that would recurse.
The capability index is routing metadata, not authority to perform an action. All approval, secrets, outbound-message, destructive-operation, and worktree gates remain owned by the selected specialist and the global hooks.
Version History
-
6f1e3e0
Current 2026-08-27 09:34
优化性能:延迟加载专家发现上下文;修复文件系统竞态条件及缺失索引时的崩溃问题;修正发布标识并移除自引用路由候选。
- 64bad13 2026-08-12 09:02


