Agent Skills
› davepoon/buildwithclaude
› gsd:set-profile
gsd:set-profile
GitHub用于切换GSD代理的模型配置档案(如质量、均衡或预算模式)。该技能检查gsd-sdk环境依赖,并通过命令行工具查询和设置模型配置文件,以适配不同场景下的AI服务需求。
Trigger Scenarios
用户希望调整AI模型的输出质量与成本平衡
需要为GSD代理指定特定的模型配置文件
Install
npx skills add davepoon/buildwithclaude --skill gsd:set-profile -g -y
SKILL.md
Frontmatter
{
"name": "gsd:set-profile",
"model": "haiku",
"description": "Switch model profile for GSD agents (quality\/balanced\/budget\/inherit)",
"allowed-tools": [
"Bash"
],
"argument-hint": "<profile (quality|balanced|budget|inherit)>"
}
Show the following output to the user verbatim, with no extra commentary:
!if ! command -v gsd-sdk >/dev/null 2>&1; then printf '⚠ gsd-sdk not found in PATH — /gsd:set-profile requires it.\n\nInstall the GSD SDK:\n npm install -g @gsd-build/sdk\n\nOr update GSD to get the latest packages:\n /gsd:update\n'; exit 1; fi; gsd-sdk query config-set-model-profile $ARGUMENTS --raw
Version History
- 502fc01 Current 2026-07-05 15:14


