@harperfast/agent 0.13.8 → 0.14.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 +38 -44
- package/dist/agent.js +4811 -1519
- package/package.json +9 -1
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@harperfast/agent",
|
|
3
3
|
"description": "AI to help you with Harper app management",
|
|
4
|
-
"version": "0.
|
|
4
|
+
"version": "0.14.0",
|
|
5
5
|
"main": "dist/agent.js",
|
|
6
6
|
"repository": "github:HarperFast/harper-agent",
|
|
7
7
|
"bugs": {
|
|
@@ -20,6 +20,7 @@
|
|
|
20
20
|
"format": "dprint check",
|
|
21
21
|
"format:fix": "dprint fmt",
|
|
22
22
|
"format:staged": "dprint check --staged --allow-no-files",
|
|
23
|
+
"format-and-lint:fix": "npm run format:fix && npm run lint:fix",
|
|
23
24
|
"test": "vitest --run",
|
|
24
25
|
"test:coverage": "vitest run --coverage",
|
|
25
26
|
"test:watch": "vitest",
|
|
@@ -45,6 +46,7 @@
|
|
|
45
46
|
"@ai-sdk/anthropic": "^3.0.41",
|
|
46
47
|
"@ai-sdk/google": "^3.0.24",
|
|
47
48
|
"@ai-sdk/openai": "^3.0.26",
|
|
49
|
+
"@inkjs/ui": "^2.0.0",
|
|
48
50
|
"@openai/agents": "^0.4.6",
|
|
49
51
|
"@openai/agents-extensions": "^0.4.6",
|
|
50
52
|
"ai": "^6.0.79",
|
|
@@ -52,7 +54,12 @@
|
|
|
52
54
|
"create-harper": "^1.0.0",
|
|
53
55
|
"cross-spawn": "^7.0.6",
|
|
54
56
|
"dotenv": "^17.2.4",
|
|
57
|
+
"ink": "^6.7.0",
|
|
58
|
+
"ink-stepper": "^0.2.1",
|
|
59
|
+
"ink-task-list": "^2.0.0",
|
|
60
|
+
"ink-virtual-list": "^0.2.3",
|
|
55
61
|
"ollama-ai-provider-v2": "^3.3.0",
|
|
62
|
+
"react": "^19.2.4",
|
|
56
63
|
"zod": "^4.3.6"
|
|
57
64
|
},
|
|
58
65
|
"optionalDependencies": {
|
|
@@ -68,6 +75,7 @@
|
|
|
68
75
|
"@semantic-release/release-notes-generator": "^14.1.0",
|
|
69
76
|
"@types/cross-spawn": "^6.0.6",
|
|
70
77
|
"@types/node": "^25.2.0",
|
|
78
|
+
"@types/react": "^19.2.4",
|
|
71
79
|
"@vitest/coverage-v8": "^4.0.18",
|
|
72
80
|
"conventional-changelog-conventionalcommits": "^9.1.0",
|
|
73
81
|
"dprint": "^0.51.1",
|