codeforge-dev 1.14.1 → 2.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/{.devcontainer/config/defaults → .codeforge/config}/ccstatusline-settings.json +44 -6
- package/.codeforge/config/main-system-prompt.md +412 -0
- package/.codeforge/config/orchestrator-system-prompt.md +333 -0
- package/{.devcontainer/config/defaults → .codeforge/config}/settings.json +7 -2
- package/{.devcontainer/config → .codeforge}/file-manifest.json +15 -9
- package/{.devcontainer → .codeforge/scripts}/connect-external-terminal.sh +3 -1
- package/.devcontainer/.env.example +17 -5
- package/.devcontainer/.secrets.example +3 -0
- package/.devcontainer/CHANGELOG.md +224 -3
- package/.devcontainer/CLAUDE.md +26 -43
- package/.devcontainer/README.md +35 -20
- package/.devcontainer/devcontainer.json +36 -17
- package/.devcontainer/features/agent-browser/install.sh +3 -0
- package/.devcontainer/features/ast-grep/install.sh +3 -0
- package/.devcontainer/features/biome/install.sh +3 -0
- package/.devcontainer/features/ccburn/devcontainer-feature.json +0 -5
- package/.devcontainer/features/ccburn/install.sh +2 -0
- package/.devcontainer/features/ccms/install.sh +2 -0
- package/.devcontainer/features/ccstatusline/README.md +7 -6
- package/.devcontainer/features/ccstatusline/install.sh +9 -4
- package/.devcontainer/features/ccusage/devcontainer-feature.json +0 -5
- package/.devcontainer/features/ccusage/install.sh +2 -0
- package/.devcontainer/features/chromaterm/chromaterm.yml +2 -2
- package/.devcontainer/features/chromaterm/install.sh +2 -0
- package/.devcontainer/features/claude-code-native/README.md +47 -0
- package/.devcontainer/features/claude-code-native/devcontainer-feature.json +29 -0
- package/.devcontainer/features/claude-code-native/install.sh +131 -0
- package/.devcontainer/features/claude-monitor/devcontainer-feature.json +0 -5
- package/.devcontainer/features/claude-monitor/install.sh +2 -0
- package/.devcontainer/features/claude-session-dashboard/README.md +2 -2
- package/.devcontainer/features/claude-session-dashboard/devcontainer-feature.json +1 -2
- package/.devcontainer/features/claude-session-dashboard/install.sh +3 -0
- package/.devcontainer/features/dprint/install.sh +2 -0
- package/.devcontainer/features/hadolint/install.sh +2 -0
- package/.devcontainer/features/kitty-terminfo/README.md +3 -1
- package/.devcontainer/features/kitty-terminfo/install.sh +2 -0
- package/.devcontainer/features/lsp-servers/install.sh +4 -0
- package/.devcontainer/features/mcp-qdrant/CHANGES.md +3 -3
- package/.devcontainer/features/mcp-qdrant/README.md +1 -0
- package/.devcontainer/features/mcp-qdrant/devcontainer-feature.json +1 -7
- package/.devcontainer/features/mcp-qdrant/install.sh +9 -2
- package/.devcontainer/features/mcp-qdrant/poststart-hook.sh +9 -2
- package/.devcontainer/features/notify-hook/devcontainer-feature.json +1 -1
- package/.devcontainer/features/notify-hook/install.sh +2 -0
- package/.devcontainer/features/ruff/install.sh +2 -0
- package/.devcontainer/features/shellcheck/install.sh +2 -0
- package/.devcontainer/features/shfmt/install.sh +2 -0
- package/.devcontainer/features/tmux/README.md +3 -3
- package/.devcontainer/features/tmux/install.sh +3 -1
- package/.devcontainer/features/tree-sitter/devcontainer-feature.json +0 -6
- package/.devcontainer/features/tree-sitter/install.sh +4 -0
- package/.devcontainer/plugins/devs-marketplace/.claude-plugin/marketplace.json +27 -11
- package/.devcontainer/plugins/devs-marketplace/plugins/agent-system/README.md +20 -6
- package/.devcontainer/plugins/devs-marketplace/plugins/agent-system/agents/architect.md +182 -29
- package/.devcontainer/plugins/devs-marketplace/plugins/agent-system/agents/bash-exec.md +9 -0
- package/.devcontainer/plugins/devs-marketplace/plugins/agent-system/agents/claude-guide.md +13 -4
- package/.devcontainer/plugins/devs-marketplace/plugins/agent-system/agents/debug-logs.md +24 -5
- package/.devcontainer/plugins/devs-marketplace/plugins/agent-system/agents/dependency-analyst.md +16 -5
- package/.devcontainer/plugins/devs-marketplace/plugins/agent-system/agents/documenter.md +412 -0
- package/.devcontainer/plugins/devs-marketplace/plugins/agent-system/agents/explorer.md +18 -6
- package/.devcontainer/plugins/devs-marketplace/plugins/agent-system/agents/generalist.md +36 -10
- package/.devcontainer/plugins/devs-marketplace/plugins/agent-system/agents/git-archaeologist.md +10 -1
- package/.devcontainer/plugins/devs-marketplace/plugins/agent-system/agents/implementer.md +260 -0
- package/.devcontainer/plugins/devs-marketplace/plugins/agent-system/agents/investigator.md +262 -0
- package/.devcontainer/plugins/devs-marketplace/plugins/agent-system/agents/migrator.md +10 -0
- package/.devcontainer/plugins/devs-marketplace/plugins/agent-system/agents/perf-profiler.md +21 -5
- package/.devcontainer/plugins/devs-marketplace/plugins/agent-system/agents/refactorer.md +18 -8
- package/.devcontainer/plugins/devs-marketplace/plugins/agent-system/agents/researcher.md +23 -5
- package/.devcontainer/plugins/devs-marketplace/plugins/agent-system/agents/security-auditor.md +20 -6
- package/.devcontainer/plugins/devs-marketplace/plugins/agent-system/agents/spec-writer.md +12 -0
- package/.devcontainer/plugins/devs-marketplace/plugins/agent-system/agents/statusline-config.md +12 -2
- package/.devcontainer/plugins/devs-marketplace/plugins/agent-system/agents/test-writer.md +22 -7
- package/.devcontainer/plugins/devs-marketplace/plugins/agent-system/scripts/guard-readonly-bash.py +9 -5
- package/.devcontainer/plugins/devs-marketplace/plugins/agent-system/scripts/redirect-builtin-agents.py +2 -5
- package/.devcontainer/plugins/devs-marketplace/plugins/auto-code-quality/README.md +1 -1
- package/.devcontainer/plugins/devs-marketplace/plugins/auto-code-quality/scripts/advisory-test-runner.py +4 -2
- package/.devcontainer/plugins/devs-marketplace/plugins/dangerous-command-blocker/README.md +3 -2
- package/.devcontainer/plugins/devs-marketplace/plugins/dangerous-command-blocker/scripts/block-dangerous.py +89 -15
- package/.devcontainer/plugins/devs-marketplace/plugins/git-workflow/.claude-plugin/plugin.json +7 -0
- package/.devcontainer/plugins/devs-marketplace/plugins/git-workflow/README.md +125 -0
- package/.devcontainer/plugins/devs-marketplace/plugins/git-workflow/skills/pr-review/SKILL.md +325 -0
- package/.devcontainer/plugins/devs-marketplace/plugins/git-workflow/skills/ship/SKILL.md +314 -0
- package/.devcontainer/plugins/devs-marketplace/plugins/prompt-snippets/.claude-plugin/plugin.json +5 -0
- package/.devcontainer/plugins/devs-marketplace/plugins/prompt-snippets/README.md +52 -0
- package/.devcontainer/plugins/devs-marketplace/plugins/prompt-snippets/skills/ps/SKILL.md +37 -0
- package/.devcontainer/plugins/devs-marketplace/plugins/protected-files-guard/README.md +2 -2
- package/.devcontainer/plugins/devs-marketplace/plugins/protected-files-guard/scripts/guard-protected-bash.py +80 -6
- package/.devcontainer/plugins/devs-marketplace/plugins/protected-files-guard/scripts/guard-protected.py +4 -4
- package/.devcontainer/plugins/devs-marketplace/plugins/session-context/README.md +30 -14
- package/.devcontainer/plugins/devs-marketplace/plugins/session-context/hooks/hooks.json +13 -1
- package/.devcontainer/plugins/devs-marketplace/plugins/session-context/scripts/collect-session-edits.py +44 -0
- package/.devcontainer/plugins/devs-marketplace/plugins/session-context/scripts/commit-reminder.py +89 -10
- package/.devcontainer/plugins/devs-marketplace/plugins/skill-engine/.claude-plugin/plugin.json +1 -1
- package/.devcontainer/plugins/devs-marketplace/plugins/skill-engine/README.md +19 -11
- package/.devcontainer/plugins/devs-marketplace/plugins/skill-engine/scripts/skill-suggester.py +476 -282
- package/.devcontainer/plugins/devs-marketplace/plugins/skill-engine/skills/team/SKILL.md +4 -4
- package/.devcontainer/plugins/devs-marketplace/plugins/skill-engine/skills/worktree/SKILL.md +227 -0
- package/.devcontainer/plugins/devs-marketplace/plugins/skill-engine/skills/worktree/references/manual-worktree-commands.md +238 -0
- package/.devcontainer/plugins/devs-marketplace/plugins/skill-engine/skills/worktree/references/parallel-workflow-patterns.md +228 -0
- package/.devcontainer/plugins/devs-marketplace/plugins/spec-workflow/skills/spec-build/SKILL.md +2 -2
- package/.devcontainer/plugins/devs-marketplace/plugins/ticket-workflow/scripts/ticket-linker.py +2 -2
- package/.devcontainer/plugins/devs-marketplace/plugins/workspace-scope-guard/README.md +1 -1
- package/.devcontainer/plugins/devs-marketplace/plugins/workspace-scope-guard/scripts/guard-workspace-scope.py +69 -31
- package/.devcontainer/scripts/check-setup.sh +5 -3
- package/.devcontainer/scripts/preflight.sh +113 -0
- package/.devcontainer/scripts/setup-aliases.sh +13 -8
- package/.devcontainer/scripts/setup-auth.sh +46 -0
- package/.devcontainer/scripts/setup-config.sh +29 -10
- package/.devcontainer/scripts/setup-migrate-claude.sh +80 -0
- package/.devcontainer/scripts/setup-migrate-codeforge.sh +60 -0
- package/.devcontainer/scripts/setup-plugins.sh +5 -5
- package/.devcontainer/scripts/setup-projects.sh +4 -2
- package/.devcontainer/scripts/setup-terminal.sh +3 -1
- package/.devcontainer/scripts/setup-update-claude.sh +22 -27
- package/.devcontainer/scripts/setup.sh +78 -5
- package/LICENSE.txt +14 -0
- package/README.md +82 -7
- package/package.json +4 -1
- package/setup.js +392 -21
- package/.devcontainer/config/defaults/main-system-prompt.md +0 -664
- package/.devcontainer/docs/configuration-reference.md +0 -93
- package/.devcontainer/docs/keybindings.md +0 -100
- package/.devcontainer/docs/optional-features.md +0 -64
- package/.devcontainer/docs/plugins.md +0 -176
- package/.devcontainer/docs/troubleshooting.md +0 -128
- package/.devcontainer/plugins/devs-marketplace/plugins/agent-system/agents/doc-writer.md +0 -334
- package/.devcontainer/scripts/setup-symlink-claude.sh +0 -36
- /package/{.devcontainer/config/defaults → .codeforge/config}/keybindings.json +0 -0
- /package/{.devcontainer/config/defaults → .codeforge/config}/rules/session-search.md +0 -0
- /package/{.devcontainer/config/defaults → .codeforge/config}/rules/spec-workflow.md +0 -0
- /package/{.devcontainer/config/defaults → .codeforge/config}/rules/workspace-scope.md +0 -0
- /package/{.devcontainer/config/defaults → .codeforge/config}/writing-system-prompt.md +0 -0
- /package/{.devcontainer → .codeforge/scripts}/connect-external-terminal.ps1 +0 -0
|
@@ -1,4 +1,6 @@
|
|
|
1
1
|
#!/bin/bash
|
|
2
|
+
# SPDX-License-Identifier: GPL-3.0-only
|
|
3
|
+
# Copyright (c) 2026 Marcus Krueger
|
|
2
4
|
# LSP Servers for Claude Code
|
|
3
5
|
# Installs pyright, typescript-language-server, and gopls binaries
|
|
4
6
|
|
|
@@ -82,6 +84,8 @@ install_npm_package "typescript" "typescript" "${TS_VERSION}"
|
|
|
82
84
|
# Install TypeScript Language Server
|
|
83
85
|
install_npm_package "typescript-language-server" "typescript-language-server" "${TSLSP_VERSION}"
|
|
84
86
|
|
|
87
|
+
npm cache clean --force 2>/dev/null || true
|
|
88
|
+
|
|
85
89
|
# Install gopls (Go LSP) - uses go install since it's a Go package
|
|
86
90
|
echo "[lsp-servers] Installing gopls..."
|
|
87
91
|
if command -v go &>/dev/null; then
|
|
@@ -259,11 +259,11 @@ MCP_CONFIG_DIR="${USER_HOME}/.config/mcp"
|
|
|
259
259
|
|
|
260
260
|
**Current Behavior:**
|
|
261
261
|
- Feature creates: `~/.config/mcp/qdrant-config.json`
|
|
262
|
-
- Helper script (`configure-qdrant-mcp`) can update:
|
|
262
|
+
- Helper script (`configure-qdrant-mcp`) can update: `~/.claude/settings.json`
|
|
263
263
|
- User must manually run helper script
|
|
264
264
|
|
|
265
265
|
**Not Implemented (by request):**
|
|
266
|
-
- Automatic injection into
|
|
266
|
+
- Automatic injection into `~/.claude/settings.json` during installation
|
|
267
267
|
- This will be discussed separately
|
|
268
268
|
|
|
269
269
|
---
|
|
@@ -378,7 +378,7 @@ Based on comprehensive review, the following fixes were applied:
|
|
|
378
378
|
2. ✅ Fixed credentials leak - Added cleanup trap, secure temp file handling
|
|
379
379
|
|
|
380
380
|
### High Priority Fixes
|
|
381
|
-
3. ✅ Removed unused config directory (~/.config/mcp) - Target is
|
|
381
|
+
3. ✅ Removed unused config directory (~/.config/mcp) - Target is ~/.claude/settings.json
|
|
382
382
|
4. ✅ Consolidated helper scripts - Removed duplicate manual helper, kept auto-config only
|
|
383
383
|
5. ✅ Fixed redundant redirections - Changed `&>/dev/null 2>&1` to `&>/dev/null`
|
|
384
384
|
6. ✅ Fixed hardcoded workspace paths - Now uses `${WORKSPACE_ROOT:-/workspaces}`
|
|
@@ -154,6 +154,7 @@ The feature will validate these are present and exit with an error if missing.
|
|
|
154
154
|
- ✅ **Cloud or Local**: Supports both Qdrant Cloud and local instances
|
|
155
155
|
- ✅ **Idempotent**: Safe to run multiple times
|
|
156
156
|
- ✅ **Multi-user**: Automatically detects container user
|
|
157
|
+
- ✅ **Config-aware**: Respects `CLAUDE_CONFIG_DIR` environment variable (defaults to `~/.claude`)
|
|
157
158
|
- ✅ **Native mcpServers**: Uses VS Code's native devcontainer mcpServers support (declarative configuration)
|
|
158
159
|
- ✅ **Dynamic Configuration**: Environment variables loaded from `/workspaces/.qdrant-mcp.env` file
|
|
159
160
|
- ✅ **Secure**: API keys protected with 600 permissions on env file
|
|
@@ -39,12 +39,6 @@
|
|
|
39
39
|
"BAAI/bge-small-en-v1.5",
|
|
40
40
|
"sentence-transformers/all-mpnet-base-v2",
|
|
41
41
|
"BAAI/bge-base-en-v1.5"
|
|
42
|
-
],
|
|
43
|
-
"proposals": [
|
|
44
|
-
"all-MiniLM-L6-v2",
|
|
45
|
-
"BAAI/bge-small-en-v1.5",
|
|
46
|
-
"sentence-transformers/all-mpnet-base-v2",
|
|
47
|
-
"BAAI/bge-base-en-v1.5"
|
|
48
42
|
]
|
|
49
43
|
},
|
|
50
44
|
"username": {
|
|
@@ -56,6 +50,6 @@
|
|
|
56
50
|
"installsAfter": [
|
|
57
51
|
"ghcr.io/devcontainers/features/python:1",
|
|
58
52
|
"ghcr.io/devcontainers/features/common-utils:2",
|
|
59
|
-
"
|
|
53
|
+
"./features/claude-code-native"
|
|
60
54
|
]
|
|
61
55
|
}
|
|
@@ -1,4 +1,6 @@
|
|
|
1
1
|
#!/bin/bash
|
|
2
|
+
# SPDX-License-Identifier: GPL-3.0-only
|
|
3
|
+
# Copyright (c) 2026 Marcus Krueger
|
|
2
4
|
set -euo pipefail
|
|
3
5
|
|
|
4
6
|
# Import options from devcontainer-feature.json
|
|
@@ -188,8 +190,13 @@ else
|
|
|
188
190
|
QDRANT_LOCAL_PATH="${QDRANT_LOCAL_PATH:-/workspaces/.qdrant/storage}"
|
|
189
191
|
fi
|
|
190
192
|
|
|
193
|
+
# Resolve target user's home (guards against $HOME=/root during feature install)
|
|
194
|
+
_USERNAME="${SUDO_USER:-${USER:-vscode}}"
|
|
195
|
+
_USER_HOME=$(getent passwd "$_USERNAME" 2>/dev/null | cut -d: -f6)
|
|
196
|
+
_USER_HOME="${_USER_HOME:-/home/$_USERNAME}"
|
|
197
|
+
|
|
191
198
|
# Ensure settings.json exists
|
|
192
|
-
SETTINGS_FILE="
|
|
199
|
+
SETTINGS_FILE="${CLAUDE_CONFIG_DIR:-${_USER_HOME}/.claude}/settings.json"
|
|
193
200
|
if [ ! -f "$SETTINGS_FILE" ]; then
|
|
194
201
|
echo "[mcp-qdrant] ERROR: $SETTINGS_FILE not found"
|
|
195
202
|
exit 1
|
|
@@ -257,7 +264,7 @@ fi
|
|
|
257
264
|
|
|
258
265
|
# Set proper permissions
|
|
259
266
|
chmod 644 "$SETTINGS_FILE"
|
|
260
|
-
chown "$
|
|
267
|
+
chown "${_USERNAME}:${_USERNAME}" "$SETTINGS_FILE" 2>/dev/null || true
|
|
261
268
|
|
|
262
269
|
echo "[mcp-qdrant] ✓ Configuration complete"
|
|
263
270
|
HOOK_EOF
|
|
@@ -1,4 +1,6 @@
|
|
|
1
1
|
#!/bin/bash
|
|
2
|
+
# SPDX-License-Identifier: GPL-3.0-only
|
|
3
|
+
# Copyright (c) 2026 Marcus Krueger
|
|
2
4
|
set -euo pipefail
|
|
3
5
|
|
|
4
6
|
echo "[mcp-qdrant] Registering Qdrant MCP server with Claude Code..."
|
|
@@ -56,8 +58,13 @@ else
|
|
|
56
58
|
QDRANT_LOCAL_PATH="${QDRANT_LOCAL_PATH:-/workspaces/.qdrant/storage}"
|
|
57
59
|
fi
|
|
58
60
|
|
|
61
|
+
# Resolve target user's home (guards against $HOME=/root when hook runs as root)
|
|
62
|
+
_USERNAME="${SUDO_USER:-${USER:-vscode}}"
|
|
63
|
+
_USER_HOME=$(getent passwd "$_USERNAME" 2>/dev/null | cut -d: -f6)
|
|
64
|
+
_USER_HOME="${_USER_HOME:-/home/$_USERNAME}"
|
|
65
|
+
|
|
59
66
|
# Ensure settings.json exists
|
|
60
|
-
SETTINGS_FILE="
|
|
67
|
+
SETTINGS_FILE="${CLAUDE_CONFIG_DIR:-${_USER_HOME}/.claude}/settings.json"
|
|
61
68
|
if [ ! -f "$SETTINGS_FILE" ]; then
|
|
62
69
|
echo "[mcp-qdrant] ERROR: $SETTINGS_FILE not found"
|
|
63
70
|
exit 1
|
|
@@ -125,6 +132,6 @@ fi
|
|
|
125
132
|
|
|
126
133
|
# Set proper permissions
|
|
127
134
|
chmod 644 "$SETTINGS_FILE"
|
|
128
|
-
chown
|
|
135
|
+
chown "${_USERNAME}:${_USERNAME}" "$SETTINGS_FILE" 2>/dev/null || true
|
|
129
136
|
|
|
130
137
|
echo "[mcp-qdrant] ✓ Configuration complete"
|
|
@@ -23,17 +23,17 @@ The VS Code integrated terminal does **not** support tmux split panes. To use sp
|
|
|
23
23
|
|
|
24
24
|
### Option 1: Helper Scripts (Recommended)
|
|
25
25
|
|
|
26
|
-
Use the provided helper scripts in the `.
|
|
26
|
+
Use the provided helper scripts in the `.codeforge/scripts/` folder:
|
|
27
27
|
|
|
28
28
|
**Linux/macOS:**
|
|
29
29
|
```bash
|
|
30
|
-
cd /path/to/your/project/.
|
|
30
|
+
cd /path/to/your/project/.codeforge/scripts
|
|
31
31
|
./connect-external-terminal.sh
|
|
32
32
|
```
|
|
33
33
|
|
|
34
34
|
**Windows (PowerShell):**
|
|
35
35
|
```powershell
|
|
36
|
-
cd C:\path\to\your\project\.
|
|
36
|
+
cd C:\path\to\your\project\.codeforge\scripts
|
|
37
37
|
.\connect-external-terminal.ps1
|
|
38
38
|
```
|
|
39
39
|
|
|
@@ -1,4 +1,6 @@
|
|
|
1
1
|
#!/bin/bash
|
|
2
|
+
# SPDX-License-Identifier: GPL-3.0-only
|
|
3
|
+
# Copyright (c) 2026 Marcus Krueger
|
|
2
4
|
set -euo pipefail
|
|
3
5
|
|
|
4
6
|
# === IMPORT OPTIONS ===
|
|
@@ -168,6 +170,8 @@ if [ "${NEED_PYTHON}" = "true" ]; then
|
|
|
168
170
|
echo "[tree-sitter] Python bindings installed"
|
|
169
171
|
fi
|
|
170
172
|
|
|
173
|
+
npm cache clean --force 2>/dev/null || true
|
|
174
|
+
|
|
171
175
|
# === SUMMARY ===
|
|
172
176
|
echo ""
|
|
173
177
|
echo "[tree-sitter] Installation complete!"
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
"name": "codeforge-lsp",
|
|
15
15
|
"description": "LSP servers for CodeForge (Python, TypeScript, Go)",
|
|
16
16
|
"version": "1.0.0",
|
|
17
|
-
"source": "codeforge-lsp",
|
|
17
|
+
"source": "./plugins/codeforge-lsp",
|
|
18
18
|
"category": "development",
|
|
19
19
|
"keywords": ["lsp", "python", "typescript", "go"]
|
|
20
20
|
},
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
"name": "ticket-workflow",
|
|
23
23
|
"description": "EARS-based ticket workflow with GitHub integration",
|
|
24
24
|
"version": "1.0.0",
|
|
25
|
-
"source": "ticket-workflow",
|
|
25
|
+
"source": "./plugins/ticket-workflow",
|
|
26
26
|
"category": "workflow",
|
|
27
27
|
"keywords": ["tickets", "github", "workflow", "ears", "issues", "pr"]
|
|
28
28
|
},
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
"name": "notify-hook",
|
|
31
31
|
"description": "Desktop notifications and audio chime when Claude finishes responding",
|
|
32
32
|
"version": "1.0.0",
|
|
33
|
-
"source": "notify-hook",
|
|
33
|
+
"source": "./plugins/notify-hook",
|
|
34
34
|
"category": "productivity",
|
|
35
35
|
"keywords": ["notifications", "desktop", "audio"]
|
|
36
36
|
},
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"name": "dangerous-command-blocker",
|
|
39
39
|
"description": "Blocks dangerous bash commands (rm -rf, sudo rm, chmod 777, force push)",
|
|
40
40
|
"version": "1.0.0",
|
|
41
|
-
"source": "dangerous-command-blocker",
|
|
41
|
+
"source": "./plugins/dangerous-command-blocker",
|
|
42
42
|
"category": "safety",
|
|
43
43
|
"keywords": ["safety", "bash", "blocker"]
|
|
44
44
|
},
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
"name": "protected-files-guard",
|
|
47
47
|
"description": "Blocks modifications to .env, lock files, .git/, and credentials",
|
|
48
48
|
"version": "1.0.0",
|
|
49
|
-
"source": "protected-files-guard",
|
|
49
|
+
"source": "./plugins/protected-files-guard",
|
|
50
50
|
"category": "safety",
|
|
51
51
|
"keywords": ["safety", "secrets", "env", "lockfiles"]
|
|
52
52
|
},
|
|
@@ -54,7 +54,7 @@
|
|
|
54
54
|
"name": "agent-system",
|
|
55
55
|
"description": "17 custom agents with built-in agent redirection, CWD injection, and read-only bash enforcement",
|
|
56
56
|
"version": "1.0.0",
|
|
57
|
-
"source": "agent-system",
|
|
57
|
+
"source": "./plugins/agent-system",
|
|
58
58
|
"category": "development",
|
|
59
59
|
"keywords": ["agents", "subagents", "redirection"]
|
|
60
60
|
},
|
|
@@ -62,7 +62,7 @@
|
|
|
62
62
|
"name": "skill-engine",
|
|
63
63
|
"description": "21 coding knowledge packs with auto-suggestion for frameworks, tools, and patterns",
|
|
64
64
|
"version": "1.0.0",
|
|
65
|
-
"source": "skill-engine",
|
|
65
|
+
"source": "./plugins/skill-engine",
|
|
66
66
|
"category": "development",
|
|
67
67
|
"keywords": ["skills", "knowledge", "auto-suggestion"]
|
|
68
68
|
},
|
|
@@ -70,7 +70,7 @@
|
|
|
70
70
|
"name": "spec-workflow",
|
|
71
71
|
"description": "Specification lifecycle management: creation, refinement, building, reviewing, updating, and auditing",
|
|
72
72
|
"version": "1.0.0",
|
|
73
|
-
"source": "spec-workflow",
|
|
73
|
+
"source": "./plugins/spec-workflow",
|
|
74
74
|
"category": "workflow",
|
|
75
75
|
"keywords": ["specifications", "lifecycle", "ears"]
|
|
76
76
|
},
|
|
@@ -78,7 +78,7 @@
|
|
|
78
78
|
"name": "session-context",
|
|
79
79
|
"description": "Session lifecycle hooks: git state injection, TODO harvesting, and commit reminders",
|
|
80
80
|
"version": "1.0.0",
|
|
81
|
-
"source": "session-context",
|
|
81
|
+
"source": "./plugins/session-context",
|
|
82
82
|
"category": "development",
|
|
83
83
|
"keywords": ["session", "git", "todos", "commits"]
|
|
84
84
|
},
|
|
@@ -86,7 +86,7 @@
|
|
|
86
86
|
"name": "auto-code-quality",
|
|
87
87
|
"description": "Self-contained code quality: auto-format + auto-lint edited files (Ruff/Black, Biome, gofmt, shfmt, dprint, rustfmt, Pyright, ShellCheck, go vet, hadolint, clippy)",
|
|
88
88
|
"version": "1.0.0",
|
|
89
|
-
"source": "auto-code-quality",
|
|
89
|
+
"source": "./plugins/auto-code-quality",
|
|
90
90
|
"category": "development",
|
|
91
91
|
"keywords": ["formatting", "linting", "syntax", "quality"]
|
|
92
92
|
},
|
|
@@ -94,9 +94,25 @@
|
|
|
94
94
|
"name": "workspace-scope-guard",
|
|
95
95
|
"description": "Enforces working directory scope — blocks writes and warns on reads outside the project",
|
|
96
96
|
"version": "1.0.0",
|
|
97
|
-
"source": "workspace-scope-guard",
|
|
97
|
+
"source": "./plugins/workspace-scope-guard",
|
|
98
98
|
"category": "safety",
|
|
99
99
|
"keywords": ["safety", "scope", "workspace"]
|
|
100
|
+
},
|
|
101
|
+
{
|
|
102
|
+
"name": "prompt-snippets",
|
|
103
|
+
"description": "Quick behavioral mode switches via /ps command",
|
|
104
|
+
"version": "1.0.0",
|
|
105
|
+
"source": "./plugins/prompt-snippets",
|
|
106
|
+
"category": "productivity",
|
|
107
|
+
"keywords": ["snippets", "prompts", "modes", "shortcuts"]
|
|
108
|
+
},
|
|
109
|
+
{
|
|
110
|
+
"name": "git-workflow",
|
|
111
|
+
"description": "Standalone git workflow: ship (commit/push/PR) and PR review",
|
|
112
|
+
"version": "1.0.0",
|
|
113
|
+
"source": "./plugins/git-workflow",
|
|
114
|
+
"category": "workflow",
|
|
115
|
+
"keywords": ["git", "commit", "push", "pr", "review", "ship"]
|
|
100
116
|
}
|
|
101
117
|
]
|
|
102
118
|
}
|
|
@@ -1,12 +1,24 @@
|
|
|
1
1
|
# agent-system
|
|
2
2
|
|
|
3
|
-
Claude Code plugin that provides
|
|
3
|
+
Claude Code plugin that provides 19 custom agents (3 workhorse + 16 specialist) with automatic built-in agent redirection, working directory injection, read-only bash enforcement, and team quality gates.
|
|
4
4
|
|
|
5
5
|
## What It Does
|
|
6
6
|
|
|
7
7
|
Replaces Claude Code's built-in agents with enhanced custom agents that carry domain-specific instructions, safety hooks, and tailored tool configurations. Also provides team orchestration quality gates.
|
|
8
8
|
|
|
9
|
-
###
|
|
9
|
+
### Workhorse Agents
|
|
10
|
+
|
|
11
|
+
General-purpose agents designed for orchestrator mode (`cc-orc`). Each covers a broad domain, carrying detailed execution discipline, code standards, and a question-surfacing protocol.
|
|
12
|
+
|
|
13
|
+
| Agent | Domain | Access | Model |
|
|
14
|
+
|-------|--------|--------|-------|
|
|
15
|
+
| investigator | Cross-domain research spanning 2+ specialist areas | Read-only | Sonnet |
|
|
16
|
+
| implementer | Code changes, bug fixes, refactoring, migrations | Full access (worktree) | Opus |
|
|
17
|
+
| documenter | Documentation, specs, spec lifecycle, docstrings, architecture docs | Full access (worktree) | Opus |
|
|
18
|
+
|
|
19
|
+
### Specialist Agents
|
|
20
|
+
|
|
21
|
+
Domain-specific agents for targeted tasks. Used by both `cc` (monolithic) and `cc-orc` (orchestrator) modes.
|
|
10
22
|
|
|
11
23
|
| Agent | Specialty | Access |
|
|
12
24
|
|-------|-----------|--------|
|
|
@@ -15,7 +27,6 @@ Replaces Claude Code's built-in agents with enhanced custom agents that carry do
|
|
|
15
27
|
| claude-guide | Claude Code features, configuration, best practices | Read-only |
|
|
16
28
|
| debug-logs | Log investigation and issue diagnosis | Read-only |
|
|
17
29
|
| dependency-analyst | Outdated/vulnerable dependency analysis | Read-only |
|
|
18
|
-
| doc-writer | READMEs, API docs, usage guides | Full access |
|
|
19
30
|
| explorer | Fast codebase search and structure mapping | Read-only |
|
|
20
31
|
| generalist | General-purpose multi-step tasks | Full access |
|
|
21
32
|
| git-archaeologist | Git history, blame, branch analysis | Read-only |
|
|
@@ -52,6 +63,7 @@ Per-agent hooks (registered within agent definitions, not in hooks.json):
|
|
|
52
63
|
|
|
53
64
|
| Agent | Hook | Script | Purpose |
|
|
54
65
|
|-------|------|--------|---------|
|
|
66
|
+
| implementer | PostToolUse (Edit) | `verify-no-regression.py` | Runs tests after each edit to catch regressions |
|
|
55
67
|
| refactorer | PostToolUse (Edit) | `verify-no-regression.py` | Runs tests after each edit to catch regressions |
|
|
56
68
|
| test-writer | Stop | `verify-tests-pass.py` | Verifies written tests actually pass |
|
|
57
69
|
|
|
@@ -156,12 +168,14 @@ agent-system/
|
|
|
156
168
|
+-- .claude-plugin/
|
|
157
169
|
| +-- plugin.json # Plugin metadata
|
|
158
170
|
+-- agents/
|
|
159
|
-
| +--
|
|
171
|
+
| +-- investigator.md # 3 workhorse agents (orchestrator mode)
|
|
172
|
+
| +-- implementer.md
|
|
173
|
+
| +-- documenter.md
|
|
174
|
+
| +-- architect.md # 16 specialist agents
|
|
160
175
|
| +-- bash-exec.md
|
|
161
176
|
| +-- claude-guide.md
|
|
162
177
|
| +-- debug-logs.md
|
|
163
178
|
| +-- dependency-analyst.md
|
|
164
|
-
| +-- doc-writer.md
|
|
165
179
|
| +-- explorer.md
|
|
166
180
|
| +-- generalist.md
|
|
167
181
|
| +-- git-archaeologist.md
|
|
@@ -181,7 +195,7 @@ agent-system/
|
|
|
181
195
|
| +-- redirect-builtin-agents.py # Built-in agent redirection
|
|
182
196
|
| +-- task-completed-check.py # Test suite quality gate
|
|
183
197
|
| +-- teammate-idle-check.py # Incomplete task checker
|
|
184
|
-
| +-- verify-no-regression.py # Post-edit regression tests (refactorer)
|
|
198
|
+
| +-- verify-no-regression.py # Post-edit regression tests (implementer, refactorer)
|
|
185
199
|
| +-- verify-tests-pass.py # Test verification (test-writer)
|
|
186
200
|
+-- skills/
|
|
187
201
|
| +-- debug/
|