@agenticaiengineer/codingagent 0.0.1 → 0.0.3

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agenticaiengineer/codingagent",
3
- "version": "0.0.1",
3
+ "version": "0.0.3",
4
4
  "description": "An autonomous AI coding agent for your terminal. Read, write, edit files, run commands, search the web, and manage sub-agents.",
5
5
  "author": "",
6
6
  "license": "MIT",
@@ -48,12 +48,17 @@
48
48
  "scripts": {
49
49
  "clean": "node -e \"require('fs').rmSync('dist',{recursive:true,force:true})\"",
50
50
  "build": "tsc",
51
- "bundle": "node scripts/bundle.mjs",
52
- "obfuscate": "node scripts/obfuscate.mjs",
53
- "build:publish": "tsc && npm run obfuscate",
54
- "prepublishOnly": "npm run clean && npm run bundle",
51
+ "bundle": "node publish/bundle.mjs",
52
+ "bundle:fast": "node publish/bundle.mjs --no-obfuscate",
53
+ "obfuscate": "node publish/obfuscate.mjs",
54
+ "test": "npm run bundle:fast && node tests/integration-test.mjs --agent",
55
+ "test:bundle": "node publish/smoke-test.mjs",
56
+ "test:integration": "node tests/integration-test.mjs",
57
+ "test:agent": "node tests/integration-test.mjs --agent",
58
+ "test:all": "node tests/integration-test.mjs --all",
59
+ "prepublishOnly": "npm run clean && npm run bundle && npm run test:bundle && npm run test:integration",
55
60
  "start": "tsx src/index.ts",
56
- "dev": "tsx watch src/index.ts",
61
+ "dev": "tsx src/index.ts",
57
62
  "dev:safe": "tsc-watch --onSuccess \"node dist/index.js\"",
58
63
  "dev:gateway": "node dist/gateway/gateway.js --auto-reload",
59
64
  "dev:gateway:terminal": "node dist/gateway/gateway.js --terminal --auto-reload",
@@ -89,23 +94,26 @@
89
94
  "self-improve:hot-evolve": "tsx self-improve.ts --hot-reload --evolve --auto-commit --interactive"
90
95
  },
91
96
  "dependencies": {
92
- "@anthropic-ai/sdk": "^0.39.0",
97
+ "playwright": "^1.58.2"
98
+ },
99
+ "optionalDependencies": {
100
+ "onnxruntime-node": "^1.21.0"
101
+ },
102
+ "devDependencies": {
103
+ "@anthropic-ai/sdk": "^0.78.0",
93
104
  "@huggingface/transformers": "^3.0.0",
105
+ "@types/diff": "^6.0.0",
106
+ "@types/node": "^22.0.0",
94
107
  "@wasm-audio-decoders/flac": "^0.2.10",
95
108
  "ansi-diff": "^1.2.0",
96
109
  "diff": "^8.0.3",
110
+ "esbuild": "^0.27.3",
97
111
  "glob": "^11.0.0",
112
+ "javascript-obfuscator": "^5.3.0",
98
113
  "marked": "^15.0.12",
99
114
  "marked-terminal": "^7.3.0",
100
115
  "mpg123-decoder": "^1.0.3",
101
116
  "ogg-opus-decoder": "^1.7.3",
102
- "playwright": "^1.58.2"
103
- },
104
- "devDependencies": {
105
- "@types/diff": "^6.0.0",
106
- "@types/node": "^22.0.0",
107
- "esbuild": "^0.27.3",
108
- "javascript-obfuscator": "^5.3.0",
109
117
  "tsc-watch": "^7.2.0",
110
118
  "tsx": "^4.19.0",
111
119
  "typescript": "^5.7.0"