Files
claude-code/settings.json
OpenCode Test ae6f056698 feat: add status line with agent display + fix pa-mode keybind
Status line shows: [agent-name] Model | X% context
- Added statusline.sh script that reads CLAUDE_AGENT env var
- Configured settings.json to use the status line script

Fixed pa-mode keybind issue (terminal closing immediately):
- Changed from detached session + attach to exec tmux -A
- Using exec replaces shell process, keeping terminal open
- Added CLAUDE_AGENT env var export for status line

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2025-12-29 10:55:16 -08:00

16 lines
532 B
JSON

{
"model": "opus",
"enabledPlugins": {
"frontend-design@claude-plugins-official": true,
"typescript-lsp@claude-plugins-official": true,
"commit-commands@claude-plugins-official": true,
"superpowers@superpowers-marketplace": true
},
"alwaysThinkingEnabled": true,
"statusLine": {
"type": "command",
"command": "~/.claude/automation/statusline.sh"
},
"_note": "Agent definitions moved to ~/.claude/agents/*.md with YAML frontmatter. Autonomy levels now in ~/.claude/state/autonomy-levels.json"
}