Agent Skills
› AjayIrkal23/agentic-mercy-10x
› gsd-config
gsd-config
GitHub用于交互式配置 GSD 设置,支持默认模式、高级参数、第三方集成及模型配置文件切换。通过解析命令行标志路由至不同工作流或执行 SDK 命令,提供统一的配置入口。
Trigger Scenarios
用户需要调整 GSD 的常规设置如模型和研究选项
用户希望配置高级参数如规划调优和超时设置
用户需要管理第三方 API 密钥和集成
用户想要快速切换模型配置文件
Install
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)
Version History
- 581d130 Current 2026-07-19 09:08


