cc-claw 0.21.0 → 0.22.0
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/README.md +3 -3
- package/dist/cli.js +2328 -826
- package/package.json +1 -1
- package/skills/agent-claude.md +2 -0
- package/skills/agent-codex.md +5 -1
- package/skills/agent-cursor.md +14 -7
- package/skills/agent-gemini.md +5 -1
package/package.json
CHANGED
package/skills/agent-claude.md
CHANGED
package/skills/agent-codex.md
CHANGED
|
@@ -1,13 +1,15 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: agent-codex
|
|
3
3
|
description: Capability manifest for Codex CLI as a CC-Claw sub-agent
|
|
4
|
+
type: tool
|
|
5
|
+
status: approved
|
|
4
6
|
compatible_backends: all
|
|
5
7
|
---
|
|
6
8
|
|
|
7
9
|
# Codex CLI Sub-Agent
|
|
8
10
|
|
|
9
11
|
## Strengths
|
|
10
|
-
- GPT-5.x model family (5.4, 5.3 Codex, 5.2 Codex)
|
|
12
|
+
- GPT-5.x model family (5.4, 5.3 Codex, 5.2 Codex, 5.1 Codex Max, 5.4 Mini)
|
|
11
13
|
- Strong code generation and refactoring
|
|
12
14
|
- Session resume via exec resume subcommand
|
|
13
15
|
- Sandbox mode for safe execution
|
|
@@ -27,6 +29,8 @@ compatible_backends: all
|
|
|
27
29
|
- **gpt-5.4**: Most capable — deep reasoning tasks
|
|
28
30
|
- **gpt-5.3-codex**: Balanced — general coding tasks
|
|
29
31
|
- **gpt-5.2-codex**: Fast — simple implementations
|
|
32
|
+
- **gpt-5.1-codex-max**: Legacy max-context — large codebase tasks
|
|
33
|
+
- **gpt-5.4-mini**: Lightweight — quick, focused tasks
|
|
30
34
|
|
|
31
35
|
## MCP Support
|
|
32
36
|
Full MCP support. Add via: `codex mcp add <name> -- <command> [args...]`
|
package/skills/agent-cursor.md
CHANGED
|
@@ -1,13 +1,15 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: agent-cursor
|
|
3
3
|
description: Cursor CLI agent capabilities for sub-agent tasks
|
|
4
|
+
type: tool
|
|
5
|
+
status: approved
|
|
4
6
|
compatible_backends: all
|
|
5
7
|
---
|
|
6
8
|
|
|
7
9
|
# Cursor CLI Sub-Agent
|
|
8
10
|
|
|
9
11
|
## Strengths
|
|
10
|
-
- Access to
|
|
12
|
+
- Access to models from Anthropic, OpenAI, Google, and xAI (default: auto)
|
|
11
13
|
- File read/write/edit tools
|
|
12
14
|
- Shell/terminal execution
|
|
13
15
|
- Web search and browsing
|
|
@@ -27,14 +29,19 @@ compatible_backends: all
|
|
|
27
29
|
- Debugging with built-in code-reviewer agent type
|
|
28
30
|
|
|
29
31
|
## Models
|
|
30
|
-
- **
|
|
32
|
+
- **auto** (default): Cursor picks the optimal model per task
|
|
33
|
+
- **claude-4.6-opus-max-thinking**: Most capable — deep reasoning with extended thinking
|
|
34
|
+
- **claude-4.6-opus-high**: Strong reasoning without thinking overhead
|
|
35
|
+
- **claude-4.6-sonnet-high-thinking**: Balanced — general tasks with thinking
|
|
31
36
|
- **gpt-5.4-high**: Flagship reasoning from OpenAI
|
|
32
|
-
- **
|
|
33
|
-
- **
|
|
37
|
+
- **gpt-5.3-codex**: Codex-optimized coding model
|
|
38
|
+
- **grok-4.20**: xAI reasoning model
|
|
39
|
+
- **grok-4.20-thinking**: xAI with extended thinking
|
|
34
40
|
- **gemini-3.1-pro**: 1M context window
|
|
35
|
-
- **
|
|
36
|
-
- **gpt-5.4-
|
|
37
|
-
- **
|
|
41
|
+
- **gemini-3-flash**: Fast Google model (free tier)
|
|
42
|
+
- **gpt-5.4-mini**: Fast and affordable
|
|
43
|
+
- **gpt-5.4-nano**: Cheapest
|
|
44
|
+
- **composer-2**: Cursor's own routing model
|
|
38
45
|
|
|
39
46
|
## MCP Support
|
|
40
47
|
Full MCP support via `.cursor/mcp.json` in the workspace directory.
|
package/skills/agent-gemini.md
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: agent-gemini
|
|
3
3
|
description: Capability manifest for Gemini CLI as a CC-Claw sub-agent
|
|
4
|
+
type: tool
|
|
5
|
+
status: approved
|
|
4
6
|
compatible_backends: all
|
|
5
7
|
---
|
|
6
8
|
|
|
@@ -27,7 +29,9 @@ compatible_backends: all
|
|
|
27
29
|
|
|
28
30
|
## Models
|
|
29
31
|
- **gemini-3.1-pro-preview**: Most capable — use for complex multimodal tasks
|
|
30
|
-
- **gemini-
|
|
32
|
+
- **gemini-2.5-pro**: Stable with 1M context — use for large codebases and deep analysis
|
|
33
|
+
- **gemini-3-flash-preview**: Fast and efficient — use for quick tasks
|
|
34
|
+
- **gemini-3.1-flash-lite-preview**: Lightest — use for simple, high-volume tasks
|
|
31
35
|
|
|
32
36
|
## MCP Support
|
|
33
37
|
Full MCP support. Add via: `gemini mcp add <name> -- <command> [args...]`
|