clawdcode 0.1.0 → 1.1.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.
Files changed (3) hide show
  1. package/README.md +64 -2
  2. package/dist/main.js +10114 -1018
  3. package/package.json +10 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "clawdcode",
3
- "version": "0.1.0",
3
+ "version": "1.1.1",
4
4
  "description": "A CLI Coding Agent inspired by Claude Code - An AI-powered coding assistant that can read, write, and execute code",
5
5
  "type": "module",
6
6
  "main": "dist/main.js",
@@ -12,6 +12,9 @@
12
12
  "build": "bun build src/main.tsx --outdir dist --target node && chmod +x dist/main.js",
13
13
  "start": "bun dist/main.js",
14
14
  "typecheck": "tsc --noEmit",
15
+ "test:prompts": "bun run src/prompts/test.ts",
16
+ "test:tools": "bun run src/tools/test.ts",
17
+ "test:pipeline": "bun run src/tools/execution/test.ts",
15
18
  "prepublishOnly": "bun run build"
16
19
  },
17
20
  "keywords": [
@@ -47,15 +50,20 @@
47
50
  },
48
51
  "dependencies": {
49
52
  "chalk": "^5.4.1",
53
+ "glob": "^13.0.0",
50
54
  "ink": "^6.0.0",
51
55
  "ink-spinner": "^5.0.0",
52
56
  "ink-text-input": "^6.0.0",
57
+ "minimatch": "^10.1.1",
58
+ "nanoid": "^5.1.6",
53
59
  "openai": "^4.77.0",
54
60
  "react": "^19.0.0",
55
61
  "yargs": "^17.7.2",
56
- "zod": "^3.24.2"
62
+ "zod": "^3.24.2",
63
+ "zod-to-json-schema": "^3.25.1"
57
64
  },
58
65
  "devDependencies": {
66
+ "@types/minimatch": "^6.0.0",
59
67
  "@types/node": "^22.10.2",
60
68
  "@types/react": "^19.0.0",
61
69
  "@types/yargs": "^17.0.33",