Aryan Mishra
feat: initial commit - Multilingual ABSA project setup with 6 phases, 36 requirements
a6b96c2
|
Raw
History Blame Contribute Delete
2.6 kB

A newer version of the Gradio SDK is available: 6.26.0

Upgrade
metadata
description: >-
  Configure GSD settings — workflow toggles, advanced knobs, integrations, and
  model profile
argument-hint: '[--advanced | --integrations | --profile <name>]'
requires:
  - code-review
  - review
  - settings
tools:
  read: true
  write: true
  bash: true
  question: true
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 : 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-tools query config-set-model-profile
@/Users/theogengineer/Projects/Multilingual-Absa/.opencode/gsd-core/workflows/settings.md @/Users/theogengineer/Projects/Multilingual-Absa/.opencode/gsd-core/workflows/settings-advanced.md @/Users/theogengineer/Projects/Multilingual-Absa/.opencode/gsd-core/workflows/settings-integrations.md 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)
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.