autohand-cli 0.2.0
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/README.md +134 -0
- package/dist/agents-RB34F4XE.js +9 -0
- package/dist/agents-new-5I3B2W2I.js +9 -0
- package/dist/chunk-2EPIFDFM.js +68 -0
- package/dist/chunk-2NUX2RAI.js +145 -0
- package/dist/chunk-2QAL3HH4.js +79 -0
- package/dist/chunk-4UISIRMD.js +288 -0
- package/dist/chunk-55DQY6B5.js +49 -0
- package/dist/chunk-A7HRTONQ.js +382 -0
- package/dist/chunk-ALMJANSA.js +197 -0
- package/dist/chunk-GSOEIEOU.js +19 -0
- package/dist/chunk-I4HVBWYF.js +55 -0
- package/dist/chunk-KZ7VMQTC.js +20 -0
- package/dist/chunk-OC5YDNFC.js +373 -0
- package/dist/chunk-PQJIQBQ5.js +57 -0
- package/dist/chunk-PX5AGAEX.js +105 -0
- package/dist/chunk-QJ53OSGF.js +60 -0
- package/dist/chunk-SVLBJMYO.js +33 -0
- package/dist/chunk-TAZJSKFD.js +57 -0
- package/dist/chunk-TVWTD63Y.js +50 -0
- package/dist/chunk-UW2LYWIM.js +131 -0
- package/dist/chunk-VRI7EXV6.js +20 -0
- package/dist/chunk-XDVG3NM4.js +339 -0
- package/dist/chunk-YWKZF2SA.js +364 -0
- package/dist/chunk-ZWS3KSMK.js +30 -0
- package/dist/completion-Y42FKDT3.js +10 -0
- package/dist/export-WJ5P6E5Z.js +8 -0
- package/dist/feedback-NEDFOKMA.js +9 -0
- package/dist/formatters-UG6VZJJ5.js +8 -0
- package/dist/help-CNOV6OXY.js +10 -0
- package/dist/index.cjs +13418 -0
- package/dist/index.d.cts +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +10450 -0
- package/dist/init-DML7AOII.js +8 -0
- package/dist/lint-TA2ZHVLM.js +8 -0
- package/dist/login-GPXDNB2F.js +10 -0
- package/dist/logout-43W7N6JU.js +10 -0
- package/dist/memory-4GSP7NKV.js +8 -0
- package/dist/model-HKEFSH5E.js +8 -0
- package/dist/new-EEZC4XXV.js +8 -0
- package/dist/quit-RSYIERO5.js +8 -0
- package/dist/resume-2NERFSTD.js +8 -0
- package/dist/session-H5QWKE5E.js +8 -0
- package/dist/sessions-4KXIT76T.js +8 -0
- package/dist/status-XAJH67SE.js +8 -0
- package/dist/undo-7QJBXARS.js +8 -0
- package/package.json +69 -0
package/package.json
ADDED
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "autohand-cli",
|
|
3
|
+
"version": "0.2.0",
|
|
4
|
+
"description": "Autohand interactive coding agent CLI powered by LLMs.",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"bin": {
|
|
7
|
+
"autohand": "dist/index.js"
|
|
8
|
+
},
|
|
9
|
+
"main": "dist/index.js",
|
|
10
|
+
"files": [
|
|
11
|
+
"dist"
|
|
12
|
+
],
|
|
13
|
+
"scripts": {
|
|
14
|
+
"go": "bun run build && ./install-local.sh && echo \"COMPLETED\"",
|
|
15
|
+
"build": "tsup src/index.ts --format esm,cjs --dts",
|
|
16
|
+
"dev": "tsx src/index.ts",
|
|
17
|
+
"typecheck": "tsc --noEmit",
|
|
18
|
+
"lint": "eslint .",
|
|
19
|
+
"test": "vitest run",
|
|
20
|
+
"start": "node dist/index.js",
|
|
21
|
+
"compile:macos-arm64": "bun build ./src/index.ts --compile --target=bun-darwin-arm64 --outfile ./binaries/autohand-macos-arm64",
|
|
22
|
+
"compile:macos-x64": "bun build ./src/index.ts --compile --target=bun-darwin-x64 --outfile ./binaries/autohand-macos-x64",
|
|
23
|
+
"compile:linux-x64": "bun build ./src/index.ts --compile --target=bun-linux-x64 --outfile ./binaries/autohand-linux-x64",
|
|
24
|
+
"compile:linux-arm64": "bun build ./src/index.ts --compile --target=bun-linux-arm64 --outfile ./binaries/autohand-linux-arm64",
|
|
25
|
+
"compile:windows-x64": "bun build ./src/index.ts --compile --target=bun-windows-x64 --outfile ./binaries/autohand-windows-x64.exe",
|
|
26
|
+
"compile:all": "bun run compile:macos-arm64 && bun run compile:macos-x64 && bun run compile:linux-x64 && bun run compile:linux-arm64 && bun run compile:windows-x64",
|
|
27
|
+
"link": "bun link"
|
|
28
|
+
},
|
|
29
|
+
"keywords": [
|
|
30
|
+
"cli",
|
|
31
|
+
"llm",
|
|
32
|
+
"agent",
|
|
33
|
+
"autohand"
|
|
34
|
+
],
|
|
35
|
+
"engines": {
|
|
36
|
+
"node": ">=18.17.0"
|
|
37
|
+
},
|
|
38
|
+
"dependencies": {
|
|
39
|
+
"chalk": "^5.6.2",
|
|
40
|
+
"commander": "^14.0.2",
|
|
41
|
+
"diff": "^8.0.2",
|
|
42
|
+
"dotenv": "^17.2.3",
|
|
43
|
+
"enquirer": "^2.4.1",
|
|
44
|
+
"fs-extra": "^11.3.2",
|
|
45
|
+
"ignore": "^5.3.1",
|
|
46
|
+
"ink": "^4.4.1",
|
|
47
|
+
"open": "^10.1.0",
|
|
48
|
+
"ora": "^9.0.0",
|
|
49
|
+
"react": "^18.2.0",
|
|
50
|
+
"terminal-link": "^3.0.0",
|
|
51
|
+
"yaml": "^2.8.2",
|
|
52
|
+
"zod": "^4.1.12"
|
|
53
|
+
},
|
|
54
|
+
"devDependencies": {
|
|
55
|
+
"@types/diff": "^8.0.0",
|
|
56
|
+
"@types/fs-extra": "^11.0.4",
|
|
57
|
+
"@types/node": "^24.10.1",
|
|
58
|
+
"@types/react": "^18.3.3",
|
|
59
|
+
"@types/terminal-link": "^1.2.0",
|
|
60
|
+
"@typescript-eslint/eslint-plugin": "^8.48.1",
|
|
61
|
+
"@typescript-eslint/parser": "^8.48.1",
|
|
62
|
+
"eslint": "^9.39.1",
|
|
63
|
+
"react-devtools-core": "^7.0.1",
|
|
64
|
+
"tsup": "^8.5.1",
|
|
65
|
+
"tsx": "^4.20.6",
|
|
66
|
+
"typescript": "^5.9.3",
|
|
67
|
+
"vitest": "^1.6.0"
|
|
68
|
+
}
|
|
69
|
+
}
|