Agent Skills
› AjayIrkal23/agentic-mercy-10x
› command-development
command-development
GitHub用于创建或更新本地命令定义、参数及前置元数据,将重复工作流转化为可复用命令。负责命令UX和执行流程设计,不处理智能体逻辑或业务代码实现。
Trigger Scenarios
创建新命令或更新现有命令
定义命令参数和前置元数据
将重复手动操作转化为可复用命令
Install
npx skills add AjayIrkal23/agentic-mercy-10x --skill command-development -g -y
SKILL.md
Frontmatter
{
"name": "command-development",
"schema": 1,
"category": "general",
"surfaces": [
"general"
],
"triggers": {
"paths": [],
"intents": [
"general"
],
"keywords": [
"arguments",
"command",
"create",
"creating",
"definition",
"definitions",
"development",
"draft",
"frontmatter",
"refine",
"reusable",
"update",
"updating",
"workflows"
]
},
"platforms": [
"linux",
"darwin",
"windows"
],
"token-cost": 357,
"description": "Use when creating or updating command definitions, command frontmatter, arguments, or reusable command workflows. Create or refine command definitions Use to draft or update a command definition.",
"disable-model-invocation": true
}
Command Development
Use When
- Creating a new local command or updating an existing one.
- Defining command arguments, frontmatter, or command execution flow.
- Converting a repeated manual workflow into a reusable command.
Do Not Use
- Designing autonomous agents.
- Implementing application code or business logic.
- Editing a normal skill instead of a command definition.
Owns
- Command frontmatter shape and argument design.
- Command UX, file references, and execution flow.
- Reusable command patterns for repetitive operator workflows.
Does Not Own
- Agent system prompts and agent routing.
- Product architecture or code standards.
- Library docs lookup policy.
Combine With
tool-and-doc-selectionwhen the command depends on external tooling or docs.workflow-orchestratorwhen the command is only one step in a larger delivery flow.
Workflow
- Define the command's user-facing job in one sentence.
- Keep arguments and frontmatter small, explicit, and predictable.
- Prefer deterministic steps and file references over long prose.
- Validate the command with an example invocation before treating it as done.
- Reuse supporting references or examples when they exist instead of duplicating them inline.
Output Contract
- A command definition with clear frontmatter and arguments.
- Example invocation or usage notes.
- Any supporting references that the command depends on.
Version History
- 581d130 Current 2026-07-19 09:05


