@patricio0312rev/agentkit 0.2.1 → 0.2.2
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/CHANGELOG.md +13 -0
- package/README.md +11 -0
- package/bin/cli.js +4 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -16,6 +16,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
16
16
|
### Fixed
|
|
17
17
|
- N/A
|
|
18
18
|
|
|
19
|
+
## [0.2.2] - 2025-12-28
|
|
20
|
+
|
|
21
|
+
### Added
|
|
22
|
+
- CLI flag `-m, --model <model>` for specifying Claude Code agent model via command line
|
|
23
|
+
- Documentation for `--model` flag in README configuration options table
|
|
24
|
+
- Usage example showing Claude Code model selection in non-interactive mode
|
|
25
|
+
|
|
26
|
+
### Changed
|
|
27
|
+
- N/A
|
|
28
|
+
|
|
29
|
+
### Fixed
|
|
30
|
+
- N/A
|
|
31
|
+
|
|
19
32
|
## [0.2.1] - 2025-12-28
|
|
20
33
|
|
|
21
34
|
### Added
|
package/README.md
CHANGED
|
@@ -213,6 +213,7 @@ All agents are designed to be:
|
|
|
213
213
|
| -------------------------- | --------------------------------------------------- | -------------------------------------------------------------------------------------------------------- | ------------------------------------ | -------------------------- |
|
|
214
214
|
| `-t, --tool <tool>` | AI tool to generate configuration for | `claude-code`, `cursor`, `copilot`, `aider`, `universal` | `cursor` | ✅ (with `--skip-prompts`) |
|
|
215
215
|
| `-f, --folder <name>` | Custom folder name for agent files | Any valid folder name (no spaces or slashes) | Tool-specific default\* | ❌ |
|
|
216
|
+
| `-m, --model <model>` | Model for Claude Code agents | `sonnet`, `opus`, `haiku`, `inherit` | `sonnet` | ❌ |
|
|
216
217
|
| `-d, --departments <list>` | Comma-separated list of departments to include | `design`, `engineering`, `marketing`, `product`, `project-management`, `studio-operations`, `testing` | - | ✅ (with `--skip-prompts`) |
|
|
217
218
|
| `--agents <list>` | Comma-separated list of specific agents to include | See [agent list](#-available-departments--agents) above. Format: `agent-name` or `department/agent-name` | All agents from selected departments | ❌ |
|
|
218
219
|
| `--skip-prompts` | Skip all interactive prompts (non-interactive mode) | - | `false` | ❌ |
|
|
@@ -266,6 +267,16 @@ agentkit init \
|
|
|
266
267
|
--skip-prompts
|
|
267
268
|
```
|
|
268
269
|
|
|
270
|
+
**Claude Code with specific model:**
|
|
271
|
+
|
|
272
|
+
```bash
|
|
273
|
+
agentkit init \
|
|
274
|
+
--tool claude-code \
|
|
275
|
+
--model opus \
|
|
276
|
+
--departments engineering,design \
|
|
277
|
+
--skip-prompts
|
|
278
|
+
```
|
|
279
|
+
|
|
269
280
|
**All agents from all departments:**
|
|
270
281
|
|
|
271
282
|
```bash
|
package/bin/cli.js
CHANGED
|
@@ -24,6 +24,10 @@ program
|
|
|
24
24
|
"AI tool (claude-code, cursor, copilot, aider, universal)"
|
|
25
25
|
)
|
|
26
26
|
.option("-f, --folder <name>", "Custom folder name")
|
|
27
|
+
.option(
|
|
28
|
+
"-m, --model <model>",
|
|
29
|
+
"Model for Claude Code agents (sonnet, opus, haiku, inherit)"
|
|
30
|
+
)
|
|
27
31
|
.option("-d, --departments <list>", "Comma-separated list of departments")
|
|
28
32
|
.option("--agents <list>", "Comma-separated list of specific agents")
|
|
29
33
|
.option(
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@patricio0312rev/agentkit",
|
|
3
3
|
"displayName": "AgentKit",
|
|
4
|
-
"version": "0.2.
|
|
4
|
+
"version": "0.2.2",
|
|
5
5
|
"description": "CLI tool to scaffold AI agent configurations for Claude Code, Cursor, and other AI coding assistants",
|
|
6
6
|
"main": "src/index.js",
|
|
7
7
|
"bin": {
|