@itz4blitz/agentful 1.5.0 → 1.6.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/lib/presets.js +2 -2
- package/package.json +9 -2
- package/version.json +1 -1
package/lib/presets.js
CHANGED
|
@@ -103,7 +103,7 @@ export const hookConfigurations = {
|
|
|
103
103
|
event: 'SessionStart',
|
|
104
104
|
config: {
|
|
105
105
|
type: 'command',
|
|
106
|
-
command: 'node
|
|
106
|
+
command: 'node bin/hooks/session-start.js',
|
|
107
107
|
timeout: 3,
|
|
108
108
|
description: 'Intelligent context awareness - shows project status and suggests next steps'
|
|
109
109
|
}
|
|
@@ -114,7 +114,7 @@ export const hookConfigurations = {
|
|
|
114
114
|
matcher: 'SlashCommand',
|
|
115
115
|
config: {
|
|
116
116
|
type: 'command',
|
|
117
|
-
command: 'node
|
|
117
|
+
command: 'node bin/hooks/post-action-suggestions.js',
|
|
118
118
|
timeout: 3,
|
|
119
119
|
description: 'Smart suggestions for what to do next after slash commands'
|
|
120
120
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@itz4blitz/agentful",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.6.0",
|
|
4
4
|
"description": "Pre-configured AI toolkit with self-hosted execution - works with any LLM, any tech stack, any platform.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -18,7 +18,14 @@
|
|
|
18
18
|
"release:dry-run": "semantic-release --dry-run",
|
|
19
19
|
"docs:dev": "vocs dev",
|
|
20
20
|
"docs:build": "vocs build",
|
|
21
|
-
"docs:preview": "vocs preview"
|
|
21
|
+
"docs:preview": "vocs preview",
|
|
22
|
+
"build:all": "npm run build:cli && npm run build:studio && npm run build:mcp",
|
|
23
|
+
"build:cli": "cd packages/cli && npm run build",
|
|
24
|
+
"build:studio": "cd packages/studio && npm run build",
|
|
25
|
+
"build:mcp": "cd packages/mcp-server && npm run build",
|
|
26
|
+
"dev:studio": "cd packages/studio && npm run dev",
|
|
27
|
+
"watch:studio": "cd packages/studio && npm run watch",
|
|
28
|
+
"install:all": "npm install && cd packages/cli && npm install && cd ../studio && npm install && cd ../mcp-server && npm install && cd ../shared && npm install"
|
|
22
29
|
},
|
|
23
30
|
"exports": {
|
|
24
31
|
".": {
|
package/version.json
CHANGED