Agent Skills
› AjayIrkal23/agentic-mercy-10x
› gsd-config
gsd-config
GitHub交互式配置GSD设置,支持默认、高级参数、集成密钥及模型切换。通过标志路由至不同工作流或执行SDK命令,优化--profile预检逻辑以规避路径错误。
触发场景
需要调整GSD工作流开关或模型配置时
用户输入gsd-config命令及其相关标志(如--advanced, --integrations, --profile)时
安装
npx skills add AjayIrkal23/agentic-mercy-10x --skill gsd-config -g -y
SKILL.md
Frontmatter
{
"name": "gsd-config",
"description": "Configure GSD settings — workflow toggles, advanced knobs, integrations, and model profile",
"allowed-tools": [
"Read",
"Write",
"Bash",
"AskUserQuestion"
],
"argument-hint": "[--advanced | --integrations | --profile <name>]"
}
Mode routing:
- default (no flag): Common-case toggles (model, research, plan_check, verifier, branching) → settings workflow
- --advanced: Power-user knobs (planning tuning, timeouts, branch templates, cross-AI execution) → settings-advanced workflow
- --integrations: Third-party API keys, code-review CLI routing, agent-skill injection → settings-integrations workflow
- --profile
: Switch model profile (quality|balanced|budget|inherit) → set-profile (inline)
| Flag | Action | Workflow |
|---|---|---|
| (none) | Interactive 5-question common-case config prompt | settings |
| --advanced | Power-user knobs: planning, execution, discussion, cross-AI, git, runtime | settings-advanced |
| --integrations | API keys (Brave/Firecrawl/Exa), review CLI routing, agent skills | settings-integrations |
| --profile <name> | Switch model profile without interactive prompt | gsd-sdk config-set-model-profile |
<execution_context> @$HOME/.claude/get-shit-done/workflows/settings.md @$HOME/.claude/get-shit-done/workflows/settings-advanced.md @$HOME/.claude/get-shit-done/workflows/settings-integrations.md </execution_context>
Parse the first token of $ARGUMENTS:
- If it is
--advanced: strip the flag, execute settings-advanced workflow - If it is
--integrations: strip the flag, execute settings-integrations workflow - If it starts with
--profile: extract the profile name (remainder after--profile), then:- Pre-flight check (#2439): verify
gsd-sdkis on PATH viacommand -v gsd-sdk. If absent, emit the install hintInstall GSD via 'npm i -g get-shit-done'and stop — do NOT invokegsd-sdkdirectly (avoids the opaquecommand not found: gsd-sdkfailure). - Run:
gsd-sdk query config-set-model-profile <profile-name> --rawand display the output verbatim.
- Pre-flight check (#2439): verify
- Otherwise: execute settings workflow (no argument needed)
版本历史
- 581d130 当前 2026-07-19 09:08


