@butlerw/vellum 0.2.10 → 0.2.12
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/dist/index.mjs +18947 -14337
- package/dist/markdown/roles/base.md +2 -6
- package/package.json +5 -4
|
@@ -297,12 +297,8 @@ Plans should be **specific** and **actionable**:
|
|
|
297
297
|
|
|
298
298
|
| Tool | Purpose |
|
|
299
299
|
|------|---------|
|
|
300
|
-
| `
|
|
301
|
-
| `
|
|
302
|
-
|
|
303
|
-
#### Task Management
|
|
304
|
-
|
|
305
|
-
| Tool | Purpose |
|
|
300
|
+
| `shell` | Execute shell commands (cross-platform, preferred) |
|
|
301
|
+
| `bash` | Execute bash commands (Unix/macOS only - NOT available on Windows) |
|
|
306
302
|
|------|---------|
|
|
307
303
|
| `todo_manage` | Create/update/complete TODO items |
|
|
308
304
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@butlerw/vellum",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.12",
|
|
4
4
|
"description": "Next-generation AI coding assistant CLI",
|
|
5
5
|
"private": false,
|
|
6
6
|
"publishConfig": {
|
|
@@ -58,18 +58,19 @@
|
|
|
58
58
|
"typescript": "^5.9.3",
|
|
59
59
|
"@vellum/core": "0.1.15",
|
|
60
60
|
"@vellum/eval": "0.1.0",
|
|
61
|
+
"@vellum/lsp": "0.1.0",
|
|
61
62
|
"@vellum/mcp": "0.1.3",
|
|
62
63
|
"@vellum/plugin": "0.1.3",
|
|
63
|
-
"@vellum/lsp": "0.1.0",
|
|
64
64
|
"@vellum/provider": "0.2.0",
|
|
65
|
-
"@vellum/
|
|
66
|
-
"@vellum/
|
|
65
|
+
"@vellum/sandbox": "0.1.0",
|
|
66
|
+
"@vellum/shared": "0.1.0"
|
|
67
67
|
},
|
|
68
68
|
"scripts": {
|
|
69
69
|
"build": "tsup",
|
|
70
70
|
"dev": "tsx src/index.tsx --banner",
|
|
71
71
|
"dev:blessed": "tsx src/tui-blessed/test.ts",
|
|
72
72
|
"start": "node dist/index.mjs",
|
|
73
|
+
"test": "vitest",
|
|
73
74
|
"typecheck": "tsc --noEmit",
|
|
74
75
|
"clean": "rimraf dist"
|
|
75
76
|
}
|