open-gsd/gsd-core

gsd-config

Configure GSD settings — workflow toggles, advanced knobs, integrations, and model profile

First seen Jun 23, 2026

Installation

$ npx skills add open-gsd/gsd-core --skill gsd-config

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from open-gsd/gsd-core · top by installs.

npx skills add open-gsd/gsd-core

Browse all from open-gsd/gsd-core

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 9.3K
License LICENSE
Default branch next
Open issues 129
Status Active

Skill metadata

Parsed from SKILL.md frontmatter.

Allowed toolsRead, Write, Bash, AskUserQuestion
Declared agents claude-code

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 2,433 B
  • docs SUMMARY.md 110 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 256 installs

SKILL.md

<objective> Configure GSD settings interactively with a single consolidated command.

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 <name>: Switch model profile (quality|balanced|budget|inherit) → set-profile (inline)

</objective>

<routing>

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 &lt;name&gt; Switch model profile without interactive prompt gsd-tools query config-set-model-profile

</routing>

<executioncontext> @~/.claude/gsd-core/workflows/settings.md @~/.claude/gsd-core/workflows/settings-advanced.md @~/.claude/gsd-core/workflows/settings-integrations.md </executioncontext>

<context> Arguments: $ARGUMENTS

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:

1. Verify gsd-tools is on PATH via command -v gsd-tools; if absent, emit the install hint Install GSD via 'npm i -g @opengsd/gsd-core' and stop. 2. Run: gsd-tools query config-set-model-profile <profile-name> --raw and display the output verbatim.

  • Otherwise: execute settings workflow (no argument needed)

</context>

<process>

  1. Parse the leading flag (if any) from $ARGUMENTS.
  2. Load and execute the appropriate workflow end-to-end, or run the inline SDK command for --profile.
  3. Preserve all workflow gates from the target workflow.

</process>