Agent skill
configure
Configures OrchestKit plugin settings, MCP servers, hook permissions, and keybindings. Use when customizing plugin behavior or managing settings.
Install this agent skill to your Project
npx add-skill https://github.com/yonatangross/orchestkit/tree/main/src/skills/configure
Metadata
Additional technical details for this skill
- category
- workflow-automation
SKILL.md
OrchestKit Configuration
Interactive setup for customizing your OrchestKit installation.
Quick Start
/ork:configure
/ork:configure mcp memory
Argument Resolution
PRESET = "$ARGUMENTS[0]" # Optional preset name or subcommand, e.g., "mcp"
TARGET = "$ARGUMENTS[1]" # Optional target, e.g., "memory"
# If no arguments, run interactive wizard.
# $ARGUMENTS is the full string (CC 2.1.59 indexed access)
Step 1: Choose Preset
Use AskUserQuestion:
| Preset | Skills | Agents | Hooks | Description |
|---|---|---|---|---|
| Complete | 91 | 31 | 96 | Everything |
| Standard | 91 | 0 | 96 | Skills, no agents |
| Lite | 10 | 0 | 96 | Essential only |
| Hooks-only | 0 | 0 | 96 | Just safety |
| Monorepo | 91 | 31 | 96 | Complete + monorepo detection |
Step 2: Customize Skill Categories
Categories available:
- AI/ML (28 skills)
- Backend (16 skills)
- Frontend (9 skills)
- Testing (14 skills)
- Security (7 skills)
- DevOps (5 skills)
- Planning (7 skills)
- Workflow (5 skills)
Step 3: Customize Agents
Product Agents (2):
- market-intelligence
- product-strategist
Technical Agents (17):
- backend-system-architect
- frontend-ui-developer
- database-engineer
- llm-integrator
- workflow-architect
- data-pipeline-engineer
- test-generator
- code-quality-reviewer
- security-auditor
- security-layer-auditor
- debug-investigator
- system-design-reviewer
- python-performance-engineer
- frontend-performance-engineer
- monitoring-engineer
- event-driven-architect
- infrastructure-architect
Operations Agents (6):
- ci-cd-engineer
- deployment-manager
- git-operations-engineer
- release-engineer
- ai-safety-auditor
- multimodal-specialist
Research Agents (4):
- web-research-analyst
- market-intelligence
- design-system-architect
- demo-producer
Step 4: Configure Hooks
Safety Hooks (Always On):
- git-branch-protection
- file-guard
- redact-secrets
Toggleable Hooks:
- Productivity (auto-approve, logging)
- Quality Gates (coverage, patterns)
- Team Coordination (locks, conflicts)
- Notifications (desktop, sound)
CC 2.1.49 Managed Settings: OrchestKit ships plugin
settings.jsonwith default hook permissions. These are managed defaults — users can override them in project or user settings. Enterprise admins can lock managed settings via managed profiles.
Step 5: Configure MCPs (Optional)
All 5 MCPs ship enabled by default. Tavily requires an API key; agentation requires a local package install.
| MCP | Purpose | Default | Requires |
|---|---|---|---|
| context7 | Library documentation | enabled | Nothing |
| memory | Cross-session persistence | enabled | Nothing |
| sequential-thinking | Structured reasoning for subagents | enabled | Nothing |
| tavily | Web search + extraction | enabled | API key (free tier: app.tavily.com) |
| agentation | UI annotation tool | enabled | npm install agentation-mcp |
Why all enabled? OrchestKit ships 30+ Sonnet/Haiku subagents. While Opus 4.6 has native extended thinking, Sonnet and Haiku do not — they benefit from sequential-thinking. Tavily and agentation are used by specific agents (see
mcpServersin agent frontmatter). CC's MCPSearch auto-defers schemas when overhead exceeds 10% of context, so token cost is managed automatically.
Background agents: MCP tools are NOT available in background subagents (hard CC platform limitation). Agents that need MCP tools must run in the foreground.
Already have these MCPs installed globally? If Tavily or memory are already in your ~/.claude/mcp.json, skip enabling them here to avoid duplicate entries. OrchestKit agents will use whichever instance Claude Code resolves first.
Opt out of claude.ai MCP servers (CC 2.1.63+): Claude Code may load MCP servers from claude.ai by default. To disable this and only use locally-configured MCPs:
export ENABLE_CLAUDEAI_MCP_SERVERS=false
Add to your shell profile (~/.zshrc or ~/.bashrc) to persist across sessions. This only affects MCP servers sourced from claude.ai — locally-configured MCPs in .mcp.json and ~/.claude/mcp.json are unaffected.
Steps 6-9: CC Version-Specific Settings
Load details: Read("${CLAUDE_SKILL_DIR}/references/cc-version-settings.md") for full configuration options.
Covers CC 2.1.7 (MCP deferral threshold, effective context window), CC 2.1.20 (task deletion, PR enrichment, agent permissions, monorepo detection, team distribution), CC 2.1.23 (spinner verbs customization), and CC 2.1.79 (turn duration display).
Step 10: Webhook & Telemetry Configuration
Configure dual-channel telemetry for streaming session data to HQ or your own API.
AskUserQuestion(questions=[{
"question": "Set up session telemetry?",
"header": "Telemetry",
"options": [
{"label": "Full streaming (Recommended)", "description": "All 18 events stream via native HTTP + enriched summaries"},
{"label": "Summary only", "description": "SessionEnd and worktree events only (command hooks)"},
{"label": "Skip", "description": "No telemetry — hooks run locally only"}
],
"multiSelect": false
}])
If "Full streaming"
- Ask for webhook URL:
AskUserQuestion(questions=[{
"question": "What is your webhook endpoint URL?",
"header": "Webhook URL",
"options": [
{"label": "Custom URL", "description": "Enter your API endpoint (e.g., https://api.example.com/hooks)"}
],
"multiSelect": false
}])
- Run the HTTP hook generator:
npm run generate:http-hooks -- <webhook-url> --write
- Save webhookUrl to orchestration config for command hooks:
# File: .claude/orchestration/config.json
saveConfig({ webhookUrl: "<webhook-url>" })
- Remind the user to set the auth token:
Set ORCHESTKIT_HOOK_TOKEN in your environment (never in config files):
export ORCHESTKIT_HOOK_TOKEN=your-secret
Two channels now active:
Channel 1 (HTTP): All 18 events → /cc-event (Bearer auth, zero overhead)
Channel 2 (Command): SessionEnd → /ingest (HMAC auth, enriched data)
If "Summary only"
Save webhookUrl to config and remind about env var (same as above, skip generator step).
Load Read("${CLAUDE_SKILL_DIR}/references/http-hooks.md") for architecture details.
Step 11: Optional Integrations
Load details: Read("${CLAUDE_SKILL_DIR}/references/integrations.md") for full integration setup steps.
Covers Agentation UI annotation tool (npm install, MCP config, component scaffold, CSP updates). All steps are idempotent.
Step 12: Preview & Save
Tip (CC 2.1.69+): After saving configuration changes, run
/reload-pluginsto activate them without restarting your session.
Save to: ~/.claude/plugins/orchestkit/config.json
{
"version": "1.0.0",
"preset": "complete",
"skills": { "ai_ml": true, "backend": true, ... },
"agents": { "product": true, "technical": true },
"hooks": { "safety": true, "productivity": true, ... },
"mcps": { "context7": false, ... }
}
VSCode: Remote Control (CC 2.1.79+)
VSCode users can run /remote-control to bridge their terminal session to claude.ai/code. This lets you continue the same session from a browser or phone — useful for monitoring long-running configurations or agent tasks away from your desk.
Related Skills
ork:doctor: Diagnose configuration issues
References
Load on demand with Read("${CLAUDE_SKILL_DIR}/references/<file>"):
| File | Content |
|---|---|
references/presets.md |
Preset definitions |
references/mcp-config.md |
MCP configuration |
references/http-hooks.md |
CC 2.1.63+ observability hooks (Langfuse, Datadog, custom endpoints) |
references/cc-version-settings.md |
CC 2.1.7, 2.1.20, 2.1.23, 2.1.79 version-specific settings |
references/integrations.md |
Optional third-party integrations (Agentation) |
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
expect
Diff-aware AI browser testing — analyzes git changes, generates targeted test plans, and executes them via agent-browser. Reads git diff to determine what changed, maps changes to affected pages via route map, generates a test plan scoped to the diff, and runs it with pass/fail reporting. Use when testing UI changes, verifying PRs before merge, running regression checks on changed components, or validating that recent code changes don't break the user-facing experience.
github-operations
GitHub CLI operations for issues, PRs, milestones, and Projects v2. Covers gh commands, REST API patterns, and automation scripts. Use when managing GitHub issues, PRs, milestones, or Projects with gh.
chain-patterns
Chain patterns for CC 2.1.71 pipelines — MCP detection, handoff files, checkpoint-resume, worktree agents, CronCreate monitoring. Use when building multi-phase pipeline skills. Loaded via skills: field by pipeline skills (fix-issue, implement, brainstorm, verify). Not user-invocable.
storybook-mcp-integration
Storybook MCP server integration for component-aware AI development. Covers 6 tools across 3 toolsets (dev, docs, testing): component discovery via list-all-documentation/get-documentation, story previews via preview-stories, and automated testing via run-story-tests. Use when generating components that should reuse existing Storybook components, running component tests via MCP, or previewing stories in chat.
component-search
Search 21st.dev component registry for production-ready React components. Finds components by natural language description, filters by framework and style system, returns ranked results with install instructions. Use when looking for UI components, finding alternatives to existing components, or sourcing design system building blocks.
ai-ui-generation
AI-assisted UI generation patterns for json-render, v0, Bolt, and Cursor workflows. Covers prompt engineering for component generation, review checklists for AI-generated code, design token injection, refactoring for design system conformance, and CI gates for quality assurance. Use when generating UI components with AI tools, rendering multi-surface MCP visual output, reviewing AI-generated code, or integrating AI output into design systems.
Didn't find tool you were looking for?