@impulselab/hepha 0.2.180 → 0.2.182
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/dist/index.js +1129 -860
- package/dist/index.js.map +1 -1
- package/package.json +5 -4
- package/skills/cli/SKILL.md +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@impulselab/hepha",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.182",
|
|
4
4
|
"description": "Command-line interface for the Hepha platform.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"repository": {
|
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
],
|
|
36
36
|
"scripts": {
|
|
37
37
|
"build": "tsup",
|
|
38
|
-
"dev": "tsx src/
|
|
38
|
+
"dev": "tsx src/cli-entry.ts",
|
|
39
39
|
"types:check": "pnpm --filter @repo/ui run build && tsc --noEmit",
|
|
40
40
|
"test": "find src -name '*.test.ts' -type f -exec tsx --test {} +",
|
|
41
41
|
"skills:validate": "intent validate skills",
|
|
@@ -44,18 +44,19 @@
|
|
|
44
44
|
"prepack": "tsup"
|
|
45
45
|
},
|
|
46
46
|
"dependencies": {
|
|
47
|
+
"@repo/core": "workspace:*",
|
|
48
|
+
"@repo/database": "workspace:*",
|
|
47
49
|
"better-auth": "^1.4.6"
|
|
48
50
|
},
|
|
49
51
|
"devDependencies": {
|
|
50
52
|
"@orpc/server": "^1.13.14",
|
|
51
|
-
"@repo/core": "workspace:*",
|
|
52
|
-
"@repo/database": "workspace:*",
|
|
53
53
|
"@repo/server": "workspace:*",
|
|
54
54
|
"@repo/typescript-config": "workspace:*",
|
|
55
55
|
"@tanstack/intent": "0.3.6",
|
|
56
56
|
"@types/node": "^22.15.3",
|
|
57
57
|
"tsup": "^8.4.0",
|
|
58
58
|
"tsx": "^4.19.4",
|
|
59
|
+
"type-fest": "^5.4.4",
|
|
59
60
|
"typescript": "5.9.2"
|
|
60
61
|
},
|
|
61
62
|
"engines": {
|
package/skills/cli/SKILL.md
CHANGED
|
@@ -261,7 +261,7 @@ The aligned text is padded and coloured for a terminal. Under `--json` stdout
|
|
|
261
261
|
is one parseable document, including failures — `{"ok":false,"error":{…}}`,
|
|
262
262
|
with the exit code unchanged.
|
|
263
263
|
|
|
264
|
-
Source: apps/cli/src/lib/output.ts
|
|
264
|
+
Source: apps/cli/src/lib/cli-output.ts
|
|
265
265
|
|
|
266
266
|
### [HIGH] Re-reading the whole transcript on every poll
|
|
267
267
|
|