@agenticaiengineer/codingagent 0.0.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.
package/package.json ADDED
@@ -0,0 +1,113 @@
1
+ {
2
+ "name": "@agenticaiengineer/codingagent",
3
+ "version": "0.0.1",
4
+ "description": "An autonomous AI coding agent for your terminal. Read, write, edit files, run commands, search the web, and manage sub-agents.",
5
+ "author": "",
6
+ "license": "MIT",
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "https://github.com/agenticaiengineer/codingagent.git"
10
+ },
11
+ "homepage": "https://github.com/agenticaiengineer/codingagent",
12
+ "bugs": {
13
+ "url": "https://github.com/agenticaiengineer/codingagent/issues"
14
+ },
15
+ "keywords": [
16
+ "ai",
17
+ "coding",
18
+ "agent",
19
+ "llm",
20
+ "anthropic",
21
+ "claude",
22
+ "cli",
23
+ "developer-tools",
24
+ "code-assistant",
25
+ "mcp",
26
+ "terminal",
27
+ "automation",
28
+ "code-generation"
29
+ ],
30
+ "engines": {
31
+ "node": ">=18"
32
+ },
33
+ "type": "module",
34
+ "main": "./dist/index.js",
35
+ "bin": {
36
+ "codingagent": "./dist/index.js",
37
+ "codingagent-gateway": "./dist/gateway.js"
38
+ },
39
+ "files": [
40
+ "dist/index.js",
41
+ "dist/gateway.js",
42
+ "README.md",
43
+ "LICENSE"
44
+ ],
45
+ "publishConfig": {
46
+ "access": "public"
47
+ },
48
+ "scripts": {
49
+ "clean": "node -e \"require('fs').rmSync('dist',{recursive:true,force:true})\"",
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",
55
+ "start": "tsx src/index.ts",
56
+ "dev": "tsx watch src/index.ts",
57
+ "dev:safe": "tsc-watch --onSuccess \"node dist/index.js\"",
58
+ "dev:gateway": "node dist/gateway/gateway.js --auto-reload",
59
+ "dev:gateway:terminal": "node dist/gateway/gateway.js --terminal --auto-reload",
60
+ "dev:gateway:telegram": "node dist/gateway/gateway.js --telegram --auto-reload",
61
+ "dev:gateway:teams": "node dist/gateway/gateway.js --teams --auto-reload",
62
+ "resume": "tsx src/index.ts --resume",
63
+ "telegram": "tsx src/scripts/telegram.ts",
64
+ "teams": "tsx src/scripts/teams.ts",
65
+ "gateway": "tsx src/gateway/gateway.ts",
66
+ "gateway:terminal": "tsx src/gateway/gateway.ts --terminal",
67
+ "gateway:telegram": "tsx src/gateway/gateway.ts --telegram",
68
+ "gateway:teams": "tsx src/gateway/gateway.ts --teams",
69
+ "test:io-port": "tsx src/ports/io-port.test.ts",
70
+ "self-improve": "tsx self-improve.ts",
71
+ "self-improve:dry": "tsx self-improve.ts --dry-run",
72
+ "self-improve:5": "tsx self-improve.ts --rounds 5",
73
+ "self-improve:interactive": "tsx self-improve.ts --interactive --diff-preview",
74
+ "self-improve:bugs": "tsx self-improve.ts --focus bugs",
75
+ "self-improve:perf": "tsx self-improve.ts --focus performance",
76
+ "self-improve:types": "tsx self-improve.ts --focus types",
77
+ "self-improve:quality": "tsx self-improve.ts --focus quality",
78
+ "self-improve:ux": "tsx self-improve.ts --focus ux",
79
+ "self-improve:features": "tsx self-improve.ts --focus features",
80
+ "self-improve:commit": "tsx self-improve.ts --auto-commit --interactive",
81
+ "self-improve:unlimited": "tsx self-improve.ts --rounds 999999 --auto-commit",
82
+ "self-improve:smart": "tsx self-improve.ts --smart-rotate --auto-commit --report",
83
+ "self-improve:report": "tsx self-improve.ts --report",
84
+ "self-improve:evolve": "tsx self-improve.ts --evolve --auto-commit --interactive",
85
+ "self-improve:gap-analysis": "tsx self-improve.ts --gap-analysis",
86
+ "self-improve:plan": "tsx self-improve.ts --plan",
87
+ "self-improve:arch": "tsx self-improve.ts --focus architecture --rounds 5",
88
+ "self-improve:hot": "tsx self-improve.ts --hot-reload",
89
+ "self-improve:hot-evolve": "tsx self-improve.ts --hot-reload --evolve --auto-commit --interactive"
90
+ },
91
+ "dependencies": {
92
+ "@anthropic-ai/sdk": "^0.39.0",
93
+ "@huggingface/transformers": "^3.0.0",
94
+ "@wasm-audio-decoders/flac": "^0.2.10",
95
+ "ansi-diff": "^1.2.0",
96
+ "diff": "^8.0.3",
97
+ "glob": "^11.0.0",
98
+ "marked": "^15.0.12",
99
+ "marked-terminal": "^7.3.0",
100
+ "mpg123-decoder": "^1.0.3",
101
+ "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
+ "tsc-watch": "^7.2.0",
110
+ "tsx": "^4.19.0",
111
+ "typescript": "^5.7.0"
112
+ }
113
+ }