Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-opencode) Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
28 KiB
Oh-My-OpenCode Features
Agents: Your AI Team
Oh-My-OpenCode provides 11 specialized AI agents. Each has distinct expertise, optimized models, and tool permissions.
Core Agents
| Agent | Model | Purpose |
|---|---|---|
| Sisyphus | claude-opus-4-6 |
The default orchestrator. Plans, delegates, and executes complex tasks using specialized subagents with aggressive parallel execution. Todo-driven workflow with extended thinking (32k budget). Fallback: gpt-5.3-codex → deep quality chain. |
| Hephaestus | gpt-5.3-codex |
The Legitimate Craftsman. Autonomous deep worker inspired by AmpCode's deep mode. Goal-oriented execution with thorough research before action. Explores codebase patterns, completes tasks end-to-end without premature stopping. Named after the Greek god of forge and craftsmanship. Fallback: deep quality chain (claude-opus-4-6-thinking → step-3.5-flash → glm-5 → ...). Requires at least one model in the chain to be available. |
| Oracle | gpt-5.3-codex |
Architecture decisions, code review, debugging. Read-only consultation — stellar logical reasoning and deep analysis. Inspired by AmpCode. Fallback: claude-opus-4-6-thinking → claude-sonnet-4-5-thinking → deep quality chain. |
| Librarian | claude-sonnet-4-5 |
Multi-repo analysis, documentation lookup, OSS implementation examples. Deep codebase understanding with evidence-based answers. Fallback: speed chain (claude-haiku-4-5 → gpt-5-mini → ...) → quality chain. |
| Explore | claude-haiku-4-5 |
Fast codebase exploration and contextual grep. Fallback: oswe-vscode-prime → gpt-5-mini → gpt-4.1 → extended speed chain. |
| Multimodal-Looker | gemini-3-pro-image |
Visual content specialist. Analyzes PDFs, images, diagrams to extract information. Fallback: gemini-3-pro-high → gemini-3-flash → kimi-k2.5 → claude-opus-4-6-thinking → claude-sonnet-4-5-thinking → claude-haiku-4-5 → gpt-5-nano. |
Planning Agents
| Agent | Model | Purpose |
|---|---|---|
| Prometheus | claude-opus-4-6-thinking |
Strategic planner with interview mode. Creates detailed work plans through iterative questioning. Fallback: gpt-5.3-codex → claude-sonnet-4-5-thinking → deep quality chain. |
| Metis | claude-opus-4-6-thinking |
Plan consultant — pre-planning analysis. Identifies hidden intentions, ambiguities, and AI failure points. Fallback: gpt-5.3-codex → claude-sonnet-4-5-thinking → deep quality chain. |
| Momus | gpt-5.3-codex |
Plan reviewer — validates plans against clarity, verifiability, and completeness standards. Fallback: claude-opus-4-6-thinking → deep quality chain. |
Orchestration Agents
| Agent | Model | Purpose |
|---|---|---|
| Atlas | claude-sonnet-4-5-thinking |
Todo-list orchestrator. Executes planned tasks systematically, managing todo items and coordinating work. Fallback: claude-opus-4-6-thinking → gpt-5.3-codex → deep quality chain. |
| Sisyphus-Junior | (category-dependent) | Category-spawned executor. Model is selected automatically based on the task category (visual-engineering, quick, deep, etc.). Used when the main agent delegates work via the task tool. |
Invoking Agents
The main agent invokes these automatically, but you can call them explicitly:
Ask @oracle to review this design and propose an architecture
Ask @librarian how this is implemented - why does the behavior keep changing?
Ask @explore for the policy on this feature
Tool Restrictions
| Agent | Restrictions |
|---|---|
| oracle | Read-only: cannot write, edit, or delegate (blocked: write, edit, task, call_omo_agent) |
| librarian | Cannot write, edit, or delegate (blocked: write, edit, task, call_omo_agent) |
| explore | Cannot write, edit, or delegate (blocked: write, edit, task, call_omo_agent) |
| multimodal-looker | Allowlist: read only |
| atlas | Cannot delegate (blocked: task, call_omo_agent) |
| momus | Cannot write, edit, or delegate (blocked: write, edit, task) |
Background Agents
Run agents in the background and continue working:
- Have GPT debug while Claude tries different approaches
- Gemini writes frontend while Claude handles backend
- Fire massive parallel searches, continue implementation, use results when ready
# Launch in background
task(subagent_type="explore", load_skills=[], prompt="Find auth implementations", run_in_background=true)
# Continue working...
# System notifies on completion
# Retrieve results when needed
background_output(task_id="bg_abc123")
Visual Multi-Agent with Tmux
Enable tmux.enabled to see background agents in separate tmux panes:
{
"tmux": {
"enabled": true,
"layout": "main-vertical"
}
}
When running inside tmux:
- Background agents spawn in new panes
- Watch multiple agents work in real-time
- Each pane shows agent output live
- Auto-cleanup when agents complete
See Tmux Integration for full configuration options.
Customize agent models, prompts, and permissions in oh-my-opencode.json. See Configuration.
IntentGate
Every prompt a user enters goes through the IntentGate before action is taken.
Agent models often take user instructions too literally—resulting in premature execution or shallow responses. IntentGate fixes this.
- Verbalization Before Action: The orchestrator agent (Sisyphus) and the autonomous worker (Hephaestus) explicitly verbalize the user's true intent (e.g. Investigation, Implementation, Fix, Research) before proceeding.
- Pre-Planning Analysis: The
metisplan consultant specifically looks for hidden intents, missing context, and ambiguity. - Exploration Default: If the true intent implies missing knowledge, the agents will automatically spawn
exploreorlibrarianbackground tasks before taking action or asking clarification questions.
IntentGate ensures your tasks are solved thoroughly rather than treated as simple string-matching instructions.
Skills: Specialized Knowledge
Skills provide specialized workflows with embedded MCP servers and detailed instructions.
Built-in Skills
| Skill | Trigger | Description |
|---|---|---|
| playwright | Browser tasks, testing, screenshots | Browser automation via Playwright MCP. MUST USE for any browser-related tasks - verification, browsing, web scraping, testing, screenshots. |
| frontend-ui-ux | UI/UX tasks, styling | Designer-turned-developer persona. Crafts stunning UI/UX even without design mockups. Emphasizes bold aesthetic direction, distinctive typography, cohesive color palettes. |
| git-master | commit, rebase, squash, blame | MUST USE for ANY git operations. Atomic commits with automatic splitting, rebase/squash workflows, history search (blame, bisect, log -S). |
Skill: Browser Automation (playwright / agent-browser)
Trigger: Any browser-related request
Oh-My-OpenCode provides two browser automation providers, configurable via browser_automation_engine.provider:
Option 1: Playwright MCP (Default)
The default provider uses Playwright MCP server:
mcp:
playwright:
command: npx
args: ["@playwright/mcp@latest"]
Usage:
/playwright Navigate to example.com and take a screenshot
Option 2: Agent Browser CLI (Vercel)
Alternative provider using Vercel's agent-browser CLI:
{
"browser_automation_engine": {
"provider": "agent-browser"
}
}
Requires installation:
bun add -g agent-browser
Usage:
Use agent-browser to navigate to example.com and extract the main heading
Capabilities (Both Providers)
- Navigate and interact with web pages
- Take screenshots and PDFs
- Fill forms and click elements
- Wait for network requests
- Scrape content
Skill: frontend-ui-ux
Trigger: UI design tasks, visual changes
A designer-turned-developer who crafts stunning interfaces:
- Design Process: Purpose, Tone, Constraints, Differentiation
- Aesthetic Direction: Choose extreme - brutalist, maximalist, retro-futuristic, luxury, playful
- Typography: Distinctive fonts, avoid generic (Inter, Roboto, Arial)
- Color: Cohesive palettes with sharp accents, avoid purple-on-white AI slop
- Motion: High-impact staggered reveals, scroll-triggering, surprising hover states
- Anti-Patterns: Generic fonts, predictable layouts, cookie-cutter design
Skill: git-master
Trigger: commit, rebase, squash, "who wrote", "when was X added"
Three specializations in one:
- Commit Architect: Atomic commits, dependency ordering, style detection
- Rebase Surgeon: History rewriting, conflict resolution, branch cleanup
- History Archaeologist: Finding when/where specific changes were introduced
Core Principle - Multiple Commits by Default:
3+ files -> MUST be 2+ commits
5+ files -> MUST be 3+ commits
10+ files -> MUST be 5+ commits
Automatic Style Detection:
- Analyzes last 30 commits for language (Korean/English) and style (semantic/plain/short)
- Matches your repo's commit conventions automatically
Usage:
/git-master commit these changes
/git-master rebase onto main
/git-master who wrote this authentication code?
Custom Skills
Load custom skills from (priority order, highest first):
.opencode/skills/*/SKILL.md(project, OpenCode native)~/.config/opencode/skills/*/SKILL.md(user, OpenCode native).claude/skills/*/SKILL.md(project, Claude Code compat).agents/skills/*/SKILL.md(project, Agents convention)~/.agents/skills/*/SKILL.md(user, Agents convention)
Same-named skill at higher priority overrides lower.
Disable built-in skills via disabled_skills: ["playwright"] in config.
Commands: Slash Workflows
Commands are slash-triggered workflows that execute predefined templates.
Built-in Commands
| Command | Description |
|---|---|
/init-deep |
Initialize hierarchical AGENTS.md knowledge base |
/ralph-loop |
Start self-referential development loop until completion |
/ulw-loop |
Start ultrawork loop - continues with ultrawork mode |
/cancel-ralph |
Cancel active Ralph Loop |
/refactor |
Intelligent refactoring with LSP, AST-grep, architecture analysis, and TDD verification |
/start-work |
Start Sisyphus work session from Prometheus plan |
/stop-continuation |
Stop all continuation mechanisms (ralph loop, todo continuation, boulder) for this session |
/handoff |
Create a detailed context summary for continuing work in a new session |
Command: /init-deep
Purpose: Generate hierarchical AGENTS.md files throughout your project
Usage:
/init-deep [--create-new] [--max-depth=N]
Creates directory-specific context files that agents automatically read:
project/
├── AGENTS.md # Project-wide context
├── src/
│ ├── AGENTS.md # src-specific context
│ └── components/
│ └── AGENTS.md # Component-specific context
Command: /ralph-loop
Purpose: Self-referential development loop that runs until task completion
Named after: Anthropic's Ralph Wiggum plugin
Usage:
/ralph-loop "Build a REST API with authentication"
/ralph-loop "Refactor the payment module" --max-iterations=50
Behavior:
- Agent works continuously toward the goal
- Detects
<promise>DONE</promise>to know when complete - Auto-continues if agent stops without completion
- Ends when: completion detected, max iterations reached (default 100), or
/cancel-ralph
Configure: { "ralph_loop": { "enabled": true, "default_max_iterations": 100 } }
Command: /ulw-loop
Purpose: Same as ralph-loop but with ultrawork mode active
Everything runs at maximum intensity - parallel agents, background tasks, aggressive exploration.
Command: /refactor
Purpose: Intelligent refactoring with full toolchain
Usage:
/refactor <target> [--scope=<file|module|project>] [--strategy=<safe|aggressive>]
Features:
- LSP-powered rename and navigation
- AST-grep for pattern matching
- Architecture analysis before changes
- TDD verification after changes
- Codemap generation
Command: /start-work
Purpose: Start execution from a Prometheus-generated plan
Usage:
/start-work [plan-name]
Uses atlas agent to execute planned tasks systematically.
Command: /stop-continuation
Purpose: Stop all continuation mechanisms for this session
Stops ralph loop, todo continuation, and boulder state. Use when you want the agent to stop its current multi-step workflow.
Command: /handoff
Purpose: Create a detailed context summary for continuing work in a new session
Generates a structured handoff document capturing the current state, what was done, what remains, and relevant file paths — enabling seamless continuation in a fresh session.
Custom Commands
Load custom commands from:
.opencode/command/*.md(project, OpenCode native)~/.config/opencode/command/*.md(user, OpenCode native).claude/commands/*.md(project, Claude Code compat)~/.config/opencode/commands/*.md(user, Claude Code compat)
Hooks: Lifecycle Automation
Hooks intercept and modify behavior at key points in the agent lifecycle. 44 hooks across 5 tiers.
Hook Events
| Event | When | Can |
|---|---|---|
| PreToolUse | Before tool execution | Block, modify input, inject context |
| PostToolUse | After tool execution | Add warnings, modify output, inject messages |
| Message | During message processing | Transform content, detect keywords, activate modes |
| Event | On session lifecycle changes | Recovery, fallback, notifications |
| Transform | During context transformation | Inject context, validate blocks |
| Params | When setting API parameters | Adjust model settings, effort level |
Built-in Hooks
Context & Injection
| Hook | Event | Description |
|---|---|---|
| directory-agents-injector | PreToolUse + PostToolUse | Auto-injects AGENTS.md when reading files. Walks from file to project root, collecting all AGENTS.md files. Deprecated for OpenCode 1.1.37+ — Auto-disabled when native AGENTS.md injection is available. |
| directory-readme-injector | PreToolUse + PostToolUse | Auto-injects README.md for directory context. |
| rules-injector | PreToolUse + PostToolUse | Injects rules from .claude/rules/ when conditions match. Supports globs and alwaysApply. |
| compaction-context-injector | Event | Preserves critical context during session compaction. |
| context-window-monitor | Event | Monitors context window usage and tracks token consumption. |
| preemptive-compaction | Event | Proactively compacts sessions before hitting token limits. |
Productivity & Control
| Hook | Event | Description |
|---|---|---|
| keyword-detector | Message + Transform | Detects keywords and activates modes: ultrawork/ulw (max performance), search/find (parallel exploration), analyze/investigate (deep analysis). |
| think-mode | Params | Auto-detects extended thinking needs. Catches "think deeply", "ultrathink" and adjusts model settings. |
| ralph-loop | Event + Message | Manages self-referential loop continuation. |
| start-work | Message | Handles /start-work command execution. |
| auto-slash-command | Message | Automatically executes slash commands from prompts. |
| stop-continuation-guard | Event + Message | Guards the stop-continuation mechanism. |
| category-skill-reminder | Event + PostToolUse | Reminds agents about available category skills for delegation. |
| anthropic-effort | Params | Adjusts Anthropic API effort level based on context. |
Quality & Safety
| Hook | Event | Description |
|---|---|---|
| comment-checker | PostToolUse | Reminds agents to reduce excessive comments. Smartly ignores BDD, directives, docstrings. |
| thinking-block-validator | Transform | Validates thinking blocks to prevent API errors. |
| edit-error-recovery | PostToolUse + Event | Recovers from edit tool failures. |
| write-existing-file-guard | PreToolUse | Prevents accidental overwrites of existing files without reading them first. |
| hashline-read-enhancer | PostToolUse | Enhances read output with hash-anchored line markers for the hashline edit tool. |
| hashline-edit-diff-enhancer | PreToolUse + PostToolUse | Enhances edit operations with diff markers for the hashline edit tool. |
Recovery & Stability
| Hook | Event | Description |
|---|---|---|
| session-recovery | Event | Recovers from session errors — missing tool results, thinking block issues, empty messages. |
| anthropic-context-window-limit-recovery | Event | Handles Claude context window limits gracefully. |
| runtime-fallback | Event + Message | Automatically switches to backup models on retryable API errors (e.g., 429, 503, 529), provider key misconfiguration errors (e.g., missing API key), and auto-retry signals (when timeout_seconds > 0). Configurable retry logic with per-model cooldown. See Runtime Fallback Configuration for details on timeout_seconds behavior. |
| model-fallback | Event + Message | Manages model fallback chain when primary model is unavailable. |
| json-error-recovery | PostToolUse | Recovers from JSON parse errors in tool outputs. |
Truncation & Context Management
| Hook | Event | Description |
|---|---|---|
| tool-output-truncator | PostToolUse | Truncates output from Grep, Glob, LSP, AST-grep tools. Dynamically adjusts based on context window. |
Notifications & UX
| Hook | Event | Description |
|---|---|---|
| auto-update-checker | Event | Checks for new versions on session creation, shows startup toast with version and Sisyphus status. |
| background-notification | Event | Notifies when background agent tasks complete. |
| session-notification | Event | OS notifications when agents go idle. Works on macOS, Linux, Windows. |
| agent-usage-reminder | PostToolUse + Event | Reminds you to leverage specialized agents for better results. |
| question-label-truncator | PreToolUse | Truncates long question labels in the Question tool UI. |
Task Management
| Hook | Event | Description |
|---|---|---|
| task-resume-info | PostToolUse | Provides task resume information for continuity. |
| delegate-task-retry | PostToolUse + Event | Retries failed task delegation calls. |
| empty-task-response-detector | PostToolUse | Detects empty responses from delegated tasks. |
| tasks-todowrite-disabler | PreToolUse | Disables TodoWrite tool when task system is active. |
Continuation
| Hook | Event | Description |
|---|---|---|
| todo-continuation-enforcer | Event | Enforces todo completion — yanks idle agents back to work. |
| compaction-todo-preserver | Event | Preserves todo state during session compaction. |
| unstable-agent-babysitter | Event | Handles unstable agent behavior with recovery strategies. |
Integration
| Hook | Event | Description |
|---|---|---|
| claude-code-hooks | All | Executes hooks from Claude Code's settings.json. |
| atlas | Multiple | Main orchestration logic for todo-driven work sessions. |
| interactive-bash-session | PostToolUse + Event | Manages tmux sessions for interactive CLI. |
| non-interactive-env | PreToolUse | Handles non-interactive environment constraints. |
Specialized
| Hook | Event | Description |
|---|---|---|
| prometheus-md-only | PreToolUse | Enforces markdown-only output for Prometheus planner. |
| no-sisyphus-gpt | Message | Prevents Sisyphus from running on incompatible GPT models. |
| no-hephaestus-non-gpt | Message | Prevents Hephaestus from running on non-GPT models. |
| sisyphus-junior-notepad | PreToolUse | Manages notepad state for Sisyphus-Junior agents. |
Claude Code Hooks Integration
Run custom scripts via Claude Code's settings.json:
{
"hooks": {
"PostToolUse": [
{
"matcher": "Write|Edit",
"hooks": [{ "type": "command", "command": "eslint --fix $FILE" }]
}
]
}
}
Hook locations:
~/.claude/settings.json(user)./.claude/settings.json(project)./.claude/settings.local.json(local, git-ignored)
Disabling Hooks
Disable specific hooks in config:
{
"disabled_hooks": [
"comment-checker",
"auto-update-checker"
]
}
Tools: Agent Capabilities
Code Search Tools
| Tool | Description |
|---|---|
| grep | Content search using regular expressions. Filter by file pattern. |
| glob | Fast file pattern matching. Find files by name patterns. |
Edit Tools
| Tool | Description |
|---|---|
| edit | Hash-anchored edit tool. Uses LINE#ID format for precise, safe modifications. Validates content hashes before applying changes — zero stale-line errors. |
LSP Tools (IDE Features for Agents)
| Tool | Description |
|---|---|
| lsp_diagnostics | Get errors/warnings before build |
| lsp_prepare_rename | Validate rename operation |
| lsp_rename | Rename symbol across workspace |
| lsp_goto_definition | Jump to symbol definition |
| lsp_find_references | Find all usages across workspace |
| lsp_symbols | Get file outline or workspace symbol search |
AST-Grep Tools
| Tool | Description |
|---|---|
| ast_grep_search | AST-aware code pattern search (25 languages) |
| ast_grep_replace | AST-aware code replacement |
Delegation Tools
| Tool | Description |
|---|---|
| call_omo_agent | Spawn explore/librarian agents. Supports run_in_background. |
| task | Category-based task delegation. Supports categories (visual-engineering, deep, quick, ultrabrain) or direct agent targeting via subagent_type. |
| background_output | Retrieve background task results |
| background_cancel | Cancel running background tasks |
Visual Analysis Tools
| Tool | Description |
|---|---|
| look_at | Analyze media files (PDFs, images, diagrams) via Multimodal-Looker agent. Extracts specific information or summaries from documents, describes visual content. |
Skill Tools
| Tool | Description |
|---|---|
| skill | Load and execute a skill or slash command by name. Returns detailed instructions with context applied. |
| skill_mcp | Invoke MCP server operations from skill-embedded MCPs. |
Session Tools
| Tool | Description |
|---|---|
| session_list | List all OpenCode sessions |
| session_read | Read messages and history from a session |
| session_search | Full-text search across session messages |
| session_info | Get session metadata and statistics |
Task Management Tools (Experimental)
Requires experimental.task_system: true in config.
| Tool | Description |
|---|---|
| task_create | Create a new task with auto-generated ID |
| task_get | Retrieve a task by ID |
| task_list | List all active tasks |
| task_update | Update an existing task |
Interactive Terminal Tools
| Tool | Description |
|---|---|
| interactive_bash | Tmux-based terminal for TUI apps (vim, htop, pudb). Pass tmux subcommands directly without prefix. |
Usage Examples:
# Create a new session
interactive_bash(tmux_command="new-session -d -s dev-app")
# Send keystrokes to a session
interactive_bash(tmux_command="send-keys -t dev-app 'vim main.py' Enter")
# Capture pane output
interactive_bash(tmux_command="capture-pane -p -t dev-app")
Key Points:
- Commands are tmux subcommands (no
tmuxprefix) - Use for interactive apps that need persistent sessions
- One-shot commands should use regular
Bashtool with&
MCPs: Built-in Servers
websearch (Exa AI)
Real-time web search powered by Exa AI.
context7
Official documentation lookup for any library/framework.
grep_app
Ultra-fast code search across public GitHub repos. Great for finding implementation examples.
Skill-Embedded MCPs
Skills can bring their own MCP servers:
---
description: Browser automation skill
mcp:
playwright:
command: npx
args: ["-y", "@anthropic-ai/mcp-playwright"]
---
The skill_mcp tool invokes these operations with full schema discovery.
OAuth-Enabled MCPs
Skills can define OAuth-protected remote MCP servers. OAuth 2.1 with full RFC compliance (RFC 9728, 8414, 8707, 7591) is supported:
---
description: My API skill
mcp:
my-api:
url: https://api.example.com/mcp
oauth:
clientId: ${CLIENT_ID}
scopes: ["read", "write"]
---
When a skill MCP has oauth configured:
- Auto-discovery: Fetches
/.well-known/oauth-protected-resource(RFC 9728), falls back to/.well-known/oauth-authorization-server(RFC 8414) - Dynamic Client Registration: Auto-registers with servers supporting RFC 7591 (clientId becomes optional)
- PKCE: Mandatory for all flows
- Resource Indicators: Auto-generated from MCP URL per RFC 8707
- Token Storage: Persisted in
~/.config/opencode/mcp-oauth.json(chmod 0600) - Auto-refresh: Tokens refresh on 401; step-up authorization on 403 with
WWW-Authenticate - Dynamic Port: OAuth callback server uses an auto-discovered available port
Pre-authenticate via CLI:
bunx oh-my-opencode mcp oauth login <server-name> --server-url https://api.example.com
Context Injection
Directory AGENTS.md
Auto-injects AGENTS.md when reading files. Walks from file directory to project root:
project/
├── AGENTS.md # Injected first
├── src/
│ ├── AGENTS.md # Injected second
│ └── components/
│ ├── AGENTS.md # Injected third
│ └── Button.tsx # Reading this injects all 3
Conditional Rules
Inject rules from .claude/rules/ when conditions match:
---
globs: ["*.ts", "src/**/*.js"]
description: "TypeScript/JavaScript coding rules"
---
- Use PascalCase for interface names
- Use camelCase for function names
Supports:
.mdand.mdcfilesglobsfield for pattern matchingalwaysApply: truefor unconditional rules- Walks upward from file to project root, plus
~/.claude/rules/
Claude Code Compatibility
Full compatibility layer for Claude Code configurations.
Config Loaders
| Type | Locations |
|---|---|
| Commands | ~/.config/opencode/commands/, .claude/commands/ |
| Skills | ~/.config/opencode/skills/*/SKILL.md, .claude/skills/*/SKILL.md |
| Agents | ~/.config/opencode/agents/*.md, .claude/agents/*.md |
| MCPs | ~/.claude.json, ~/.config/opencode/.mcp.json, .mcp.json, .claude/.mcp.json |
MCP configs support environment variable expansion: ${VAR}.
Compatibility Toggles
Disable specific features:
{
"claude_code": {
"mcp": false,
"commands": false,
"skills": false,
"agents": false,
"hooks": false,
"plugins": false
}
}
| Toggle | Disables |
|---|---|
mcp |
.mcp.json files (keeps built-in MCPs) |
commands |
Command loading from Claude Code paths |
skills |
Skill loading from Claude Code paths |
agents |
Agent loading from Claude Code paths (keeps built-in agents) |
hooks |
settings.json hooks |
plugins |
Claude Code marketplace plugins |
Disable specific plugins:
{
"claude_code": {
"plugins_override": {
"claude-mem@thedotmack": false
}
}
}