hablas-ai 1.3.21 → 2.0.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/CHANGELOG.md +25 -151
- package/README.md +120 -290
- package/dist/index.js +173 -1222
- package/package.json +6 -11
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "hablas-ai",
|
|
3
|
-
"version": "
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "2.0.0",
|
|
4
|
+
"description": "Single-agent terminal AI engineering runtime with full tools, direct execution, and clean UX.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"bin": {
|
|
7
7
|
"hablas": "./bin/hablas-shim.js"
|
|
@@ -25,10 +25,9 @@
|
|
|
25
25
|
"dev": "ts-node src/index.ts",
|
|
26
26
|
"start": "node dist/index.js",
|
|
27
27
|
"lint": "tsc --noEmit",
|
|
28
|
-
"test": "npm run test:
|
|
29
|
-
"test:
|
|
30
|
-
"test:
|
|
31
|
-
"test:runtime": "ts-node --transpile-only src/runtime/__tests__/unified-runtime.test.ts"
|
|
28
|
+
"test": "npm run test:engine && npm run test:analyzer",
|
|
29
|
+
"test:engine": "ts-node --transpile-only src/agents/__tests__/agentic-engine.test.ts",
|
|
30
|
+
"test:analyzer": "ts-node --transpile-only src/core/__tests__/analyzer.test.ts"
|
|
32
31
|
},
|
|
33
32
|
"keywords": [
|
|
34
33
|
"cli",
|
|
@@ -63,11 +62,8 @@
|
|
|
63
62
|
"node": ">=20.0.0"
|
|
64
63
|
},
|
|
65
64
|
"dependencies": {
|
|
66
|
-
"chalk": "^5.3.0",
|
|
67
|
-
"chokidar": "^3.6.0",
|
|
68
65
|
"commander": "^12.1.0",
|
|
69
|
-
"diff": "^5.2.0"
|
|
70
|
-
"ora": "^8.0.1"
|
|
66
|
+
"diff": "^5.2.0"
|
|
71
67
|
},
|
|
72
68
|
"devDependencies": {
|
|
73
69
|
"@types/diff": "^5.2.3",
|
|
@@ -75,7 +71,6 @@
|
|
|
75
71
|
"@types/pino": "^7.0.4",
|
|
76
72
|
"esbuild": "^0.25.0",
|
|
77
73
|
"pino": "^10.3.1",
|
|
78
|
-
"pino-pretty": "^13.1.3",
|
|
79
74
|
"postject": "^1.0.0-alpha.6",
|
|
80
75
|
"ts-node": "^10.9.2",
|
|
81
76
|
"typescript": "5.5"
|