@contractspec/example.agent-console 3.7.5 → 3.7.7
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/.turbo/turbo-build.log +18 -18
- package/AGENTS.md +50 -31
- package/CHANGELOG.md +12 -0
- package/README.md +69 -77
- package/dist/agent/agent.event.js +1 -1
- package/dist/agent/agent.operation.js +1 -1
- package/dist/agent/index.d.ts +5 -5
- package/dist/agent/index.js +1 -1
- package/dist/browser/agent/agent.event.js +1 -1
- package/dist/browser/agent/agent.operation.js +1 -1
- package/dist/browser/agent/index.js +1 -1
- package/dist/browser/index.js +2145 -2145
- package/dist/browser/presentations/index.js +4 -4
- package/dist/browser/run/index.js +536 -536
- package/dist/browser/run/run.event.js +2 -2
- package/dist/browser/run/run.presentation.js +2 -2
- package/dist/browser/tool/index.js +260 -260
- package/dist/browser/tool/tool.event.js +1 -1
- package/dist/browser/tool/tool.presentation.js +2 -2
- package/dist/browser/ui/AgentDashboard.js +956 -956
- package/dist/browser/ui/AgentRunList.js +16 -16
- package/dist/browser/ui/AgentToolRegistry.js +9 -9
- package/dist/browser/ui/hooks/index.js +153 -153
- package/dist/browser/ui/hooks/useAgentList.js +1 -1
- package/dist/browser/ui/hooks/useAgentMutations.js +1 -1
- package/dist/browser/ui/hooks/useRunList.js +1 -1
- package/dist/browser/ui/hooks/useToolList.js +1 -1
- package/dist/browser/ui/index.js +1222 -1222
- package/dist/browser/ui/modals/AgentActionsModal.js +13 -13
- package/dist/browser/ui/modals/CreateAgentModal.js +15 -15
- package/dist/browser/ui/modals/index.js +297 -297
- package/dist/browser/ui/renderers/agent-list.renderer.js +7 -7
- package/dist/browser/ui/renderers/index.js +157 -157
- package/dist/browser/ui/views/AgentListView.js +7 -7
- package/dist/browser/ui/views/RunListView.js +16 -16
- package/dist/browser/ui/views/ToolRegistryView.js +9 -9
- package/dist/browser/ui/views/index.js +97 -97
- package/dist/handlers/index.d.ts +1 -1
- package/dist/index.d.ts +4 -4
- package/dist/index.js +2145 -2145
- package/dist/node/agent/agent.event.js +1 -1
- package/dist/node/agent/agent.operation.js +1 -1
- package/dist/node/agent/index.js +1 -1
- package/dist/node/index.js +2145 -2145
- package/dist/node/presentations/index.js +4 -4
- package/dist/node/run/index.js +536 -536
- package/dist/node/run/run.event.js +2 -2
- package/dist/node/run/run.presentation.js +2 -2
- package/dist/node/tool/index.js +260 -260
- package/dist/node/tool/tool.event.js +1 -1
- package/dist/node/tool/tool.presentation.js +2 -2
- package/dist/node/ui/AgentDashboard.js +956 -956
- package/dist/node/ui/AgentRunList.js +16 -16
- package/dist/node/ui/AgentToolRegistry.js +9 -9
- package/dist/node/ui/hooks/index.js +153 -153
- package/dist/node/ui/hooks/useAgentList.js +1 -1
- package/dist/node/ui/hooks/useAgentMutations.js +1 -1
- package/dist/node/ui/hooks/useRunList.js +1 -1
- package/dist/node/ui/hooks/useToolList.js +1 -1
- package/dist/node/ui/index.js +1222 -1222
- package/dist/node/ui/modals/AgentActionsModal.js +13 -13
- package/dist/node/ui/modals/CreateAgentModal.js +15 -15
- package/dist/node/ui/modals/index.js +297 -297
- package/dist/node/ui/renderers/agent-list.renderer.js +7 -7
- package/dist/node/ui/renderers/index.js +157 -157
- package/dist/node/ui/views/AgentListView.js +7 -7
- package/dist/node/ui/views/RunListView.js +16 -16
- package/dist/node/ui/views/ToolRegistryView.js +9 -9
- package/dist/node/ui/views/index.js +97 -97
- package/dist/presentations/index.d.ts +3 -5
- package/dist/presentations/index.js +4 -4
- package/dist/run/index.d.ts +7 -7
- package/dist/run/index.js +536 -536
- package/dist/run/run.event.js +2 -2
- package/dist/run/run.handler.d.ts +3 -0
- package/dist/run/run.presentation.js +2 -2
- package/dist/shared/index.d.ts +1 -1
- package/dist/tool/index.d.ts +7 -7
- package/dist/tool/index.js +260 -260
- package/dist/tool/tool.event.js +1 -1
- package/dist/tool/tool.handler.d.ts +1 -1
- package/dist/tool/tool.presentation.js +2 -2
- package/dist/ui/AgentDashboard.js +956 -956
- package/dist/ui/AgentRunList.js +16 -16
- package/dist/ui/AgentToolRegistry.js +9 -9
- package/dist/ui/hooks/index.d.ts +4 -4
- package/dist/ui/hooks/index.js +153 -153
- package/dist/ui/hooks/useAgentList.d.ts +5 -0
- package/dist/ui/hooks/useAgentList.js +1 -1
- package/dist/ui/hooks/useAgentMutations.d.ts +9 -2
- package/dist/ui/hooks/useAgentMutations.js +1 -1
- package/dist/ui/hooks/useRunList.d.ts +5 -0
- package/dist/ui/hooks/useRunList.js +1 -1
- package/dist/ui/hooks/useToolList.d.ts +5 -0
- package/dist/ui/hooks/useToolList.js +1 -1
- package/dist/ui/index.d.ts +3 -3
- package/dist/ui/index.js +1222 -1222
- package/dist/ui/modals/AgentActionsModal.js +13 -13
- package/dist/ui/modals/CreateAgentModal.js +15 -15
- package/dist/ui/modals/index.d.ts +1 -1
- package/dist/ui/modals/index.js +297 -297
- package/dist/ui/renderers/agent-list.markdown.d.ts +5 -0
- package/dist/ui/renderers/agent-list.renderer.js +7 -7
- package/dist/ui/renderers/dashboard.markdown.d.ts +5 -0
- package/dist/ui/renderers/index.d.ts +2 -2
- package/dist/ui/renderers/index.js +157 -157
- package/dist/ui/renderers/run-list.markdown.d.ts +5 -0
- package/dist/ui/renderers/tool-registry.markdown.d.ts +5 -0
- package/dist/ui/views/AgentListView.js +7 -7
- package/dist/ui/views/RunListView.js +16 -16
- package/dist/ui/views/ToolRegistryView.js +9 -9
- package/dist/ui/views/index.js +97 -97
- package/package.json +10 -10
- package/src/agent/agent.entity.ts +111 -111
- package/src/agent/agent.enum.ts +12 -12
- package/src/agent/agent.event.ts +91 -91
- package/src/agent/agent.handler.ts +123 -123
- package/src/agent/agent.operation.ts +400 -400
- package/src/agent/agent.presentation.ts +62 -62
- package/src/agent/agent.schema.ts +175 -175
- package/src/agent/agent.test-spec.ts +48 -48
- package/src/agent/index.ts +46 -51
- package/src/agent.capability.ts +11 -11
- package/src/agent.feature.ts +131 -131
- package/src/docs/agent-console.docblock.ts +42 -42
- package/src/example.ts +35 -35
- package/src/handlers/agent.handlers.ts +522 -521
- package/src/handlers/index.ts +12 -12
- package/src/index.ts +8 -9
- package/src/presentations/index.ts +11 -13
- package/src/run/index.ts +49 -54
- package/src/run/run.entity.ts +137 -137
- package/src/run/run.enum.ts +18 -18
- package/src/run/run.event.ts +174 -174
- package/src/run/run.handler.ts +92 -91
- package/src/run/run.operation.ts +474 -474
- package/src/run/run.presentation.ts +42 -42
- package/src/run/run.schema.ts +126 -126
- package/src/run/run.test-spec.ts +48 -48
- package/src/seeders/index.ts +21 -21
- package/src/shared/index.ts +1 -1
- package/src/shared/mock-agents.ts +76 -76
- package/src/shared/mock-runs.ts +102 -102
- package/src/shared/mock-tools.ts +140 -140
- package/src/shared/overlay-types.ts +23 -23
- package/src/tool/index.ts +39 -44
- package/src/tool/tool.entity.ts +73 -73
- package/src/tool/tool.enum.ts +13 -13
- package/src/tool/tool.event.ts +80 -80
- package/src/tool/tool.handler.ts +102 -102
- package/src/tool/tool.operation.ts +328 -328
- package/src/tool/tool.presentation.ts +43 -43
- package/src/tool/tool.schema.ts +106 -106
- package/src/tool/tool.test-spec.ts +48 -48
- package/src/ui/AgentDashboard.tsx +348 -348
- package/src/ui/hooks/index.ts +7 -7
- package/src/ui/hooks/useAgentList.ts +57 -56
- package/src/ui/hooks/useAgentMutations.ts +160 -159
- package/src/ui/hooks/useRunList.ts +58 -57
- package/src/ui/hooks/useToolList.ts +102 -101
- package/src/ui/index.ts +6 -9
- package/src/ui/modals/AgentActionsModal.tsx +262 -262
- package/src/ui/modals/CreateAgentModal.tsx +232 -232
- package/src/ui/modals/index.ts +1 -1
- package/src/ui/overlays/demo-overlays.ts +52 -52
- package/src/ui/renderers/agent-list.markdown.ts +61 -60
- package/src/ui/renderers/agent-list.renderer.tsx +14 -14
- package/src/ui/renderers/dashboard.markdown.ts +140 -139
- package/src/ui/renderers/index.ts +3 -4
- package/src/ui/renderers/run-list.markdown.ts +48 -47
- package/src/ui/renderers/tool-registry.markdown.ts +66 -65
- package/src/ui/views/AgentListView.tsx +90 -90
- package/src/ui/views/RunListView.tsx +141 -141
- package/src/ui/views/ToolRegistryView.tsx +113 -113
- package/tsconfig.json +7 -8
- package/tsdown.config.js +7 -3
package/src/ui/hooks/index.ts
CHANGED
|
@@ -3,12 +3,12 @@
|
|
|
3
3
|
/**
|
|
4
4
|
* Data hooks for agent-console template
|
|
5
5
|
*/
|
|
6
|
-
export {
|
|
7
|
-
export { useRunList, type UseRunListOptions } from './useRunList';
|
|
8
|
-
export { useToolList, type UseToolListOptions } from './useToolList';
|
|
6
|
+
export { type UseAgentListOptions, useAgentList } from './useAgentList';
|
|
9
7
|
export {
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
8
|
+
type CreateAgentInput,
|
|
9
|
+
type UpdateAgentInput,
|
|
10
|
+
type UseAgentMutationsOptions,
|
|
11
|
+
useAgentMutations,
|
|
14
12
|
} from './useAgentMutations';
|
|
13
|
+
export { type UseRunListOptions, useRunList } from './useRunList';
|
|
14
|
+
export { type UseToolListOptions, useToolList } from './useToolList';
|
|
@@ -3,78 +3,79 @@
|
|
|
3
3
|
*
|
|
4
4
|
* Uses runtime-local database-backed handlers.
|
|
5
5
|
*/
|
|
6
|
-
|
|
6
|
+
|
|
7
7
|
import { useTemplateRuntime } from '@contractspec/lib.example-shared-ui';
|
|
8
|
+
import { useCallback, useEffect, useMemo, useState } from 'react';
|
|
8
9
|
import type {
|
|
9
|
-
|
|
10
|
-
|
|
10
|
+
AgentHandlers,
|
|
11
|
+
Agent as RuntimeAgent,
|
|
12
|
+
ListAgentsOutput as RuntimeListAgentsOutput,
|
|
11
13
|
} from '../../handlers/agent.handlers';
|
|
12
|
-
import type { AgentHandlers } from '../../handlers/agent.handlers';
|
|
13
14
|
|
|
14
15
|
// Re-export types for convenience
|
|
15
16
|
export type Agent = RuntimeAgent;
|
|
16
17
|
export type ListAgentsOutput = RuntimeListAgentsOutput;
|
|
17
18
|
|
|
18
19
|
export interface UseAgentListOptions {
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
20
|
+
search?: string;
|
|
21
|
+
status?: 'DRAFT' | 'ACTIVE' | 'PAUSED' | 'ARCHIVED' | 'all';
|
|
22
|
+
limit?: number;
|
|
22
23
|
}
|
|
23
24
|
|
|
24
25
|
export function useAgentList(options: UseAgentListOptions = {}) {
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
26
|
+
const { handlers, projectId } = useTemplateRuntime<{
|
|
27
|
+
agent: AgentHandlers;
|
|
28
|
+
}>();
|
|
29
|
+
const { agent } = handlers;
|
|
29
30
|
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
31
|
+
const [data, setData] = useState<ListAgentsOutput | null>(null);
|
|
32
|
+
const [loading, setLoading] = useState(true);
|
|
33
|
+
const [error, setError] = useState<Error | null>(null);
|
|
34
|
+
const [page, setPage] = useState(1);
|
|
34
35
|
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
36
|
+
const fetchData = useCallback(async () => {
|
|
37
|
+
setLoading(true);
|
|
38
|
+
setError(null);
|
|
38
39
|
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
40
|
+
try {
|
|
41
|
+
const result = await agent.listAgents({
|
|
42
|
+
projectId,
|
|
43
|
+
search: options.search,
|
|
44
|
+
status: options.status === 'all' ? undefined : options.status,
|
|
45
|
+
limit: options.limit ?? 20,
|
|
46
|
+
offset: (page - 1) * (options.limit ?? 20),
|
|
47
|
+
});
|
|
48
|
+
setData(result);
|
|
49
|
+
} catch (err) {
|
|
50
|
+
setError(err instanceof Error ? err : new Error('Unknown error'));
|
|
51
|
+
} finally {
|
|
52
|
+
setLoading(false);
|
|
53
|
+
}
|
|
54
|
+
}, [agent, projectId, options.search, options.status, options.limit, page]);
|
|
54
55
|
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
56
|
+
useEffect(() => {
|
|
57
|
+
fetchData();
|
|
58
|
+
}, [fetchData]);
|
|
58
59
|
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
60
|
+
// Calculate stats
|
|
61
|
+
const stats = useMemo(() => {
|
|
62
|
+
if (!data) return null;
|
|
63
|
+
return {
|
|
64
|
+
total: data.total,
|
|
65
|
+
active: data.items.filter((a) => a.status === 'ACTIVE').length,
|
|
66
|
+
paused: data.items.filter((a) => a.status === 'PAUSED').length,
|
|
67
|
+
draft: data.items.filter((a) => a.status === 'DRAFT').length,
|
|
68
|
+
};
|
|
69
|
+
}, [data]);
|
|
69
70
|
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
71
|
+
return {
|
|
72
|
+
data,
|
|
73
|
+
loading,
|
|
74
|
+
error,
|
|
75
|
+
stats,
|
|
76
|
+
page,
|
|
77
|
+
refetch: fetchData,
|
|
78
|
+
nextPage: () => setPage((p) => p + 1),
|
|
79
|
+
prevPage: () => page > 1 && setPage((p) => p - 1),
|
|
80
|
+
};
|
|
80
81
|
}
|
|
@@ -5,176 +5,177 @@
|
|
|
5
5
|
* - CreateAgentCommand
|
|
6
6
|
* - UpdateAgentCommand
|
|
7
7
|
*/
|
|
8
|
-
|
|
8
|
+
|
|
9
9
|
import { useTemplateRuntime } from '@contractspec/lib.example-shared-ui';
|
|
10
|
+
import { useCallback, useState } from 'react';
|
|
10
11
|
import type {
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
12
|
+
Agent,
|
|
13
|
+
AgentHandlers,
|
|
14
|
+
CreateAgentInput,
|
|
15
|
+
Run,
|
|
16
|
+
UpdateAgentInput,
|
|
16
17
|
} from '../../handlers/agent.handlers';
|
|
17
18
|
|
|
18
19
|
export interface MutationState<T> {
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
20
|
+
loading: boolean;
|
|
21
|
+
error: Error | null;
|
|
22
|
+
data: T | null;
|
|
22
23
|
}
|
|
23
24
|
|
|
24
25
|
export interface UseAgentMutationsOptions {
|
|
25
|
-
|
|
26
|
-
|
|
26
|
+
onSuccess?: () => void;
|
|
27
|
+
onError?: (error: Error) => void;
|
|
27
28
|
}
|
|
28
29
|
|
|
29
30
|
export function useAgentMutations(options: UseAgentMutationsOptions = {}) {
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
31
|
+
const { handlers, projectId } = useTemplateRuntime<{
|
|
32
|
+
agent: AgentHandlers;
|
|
33
|
+
}>();
|
|
34
|
+
const { agent } = handlers;
|
|
35
|
+
|
|
36
|
+
const [createState, setCreateState] = useState<MutationState<Agent>>({
|
|
37
|
+
loading: false,
|
|
38
|
+
error: null,
|
|
39
|
+
data: null,
|
|
40
|
+
});
|
|
41
|
+
|
|
42
|
+
const [updateState, setUpdateState] = useState<MutationState<Agent>>({
|
|
43
|
+
loading: false,
|
|
44
|
+
error: null,
|
|
45
|
+
data: null,
|
|
46
|
+
});
|
|
47
|
+
|
|
48
|
+
const [executeState, setExecuteState] = useState<MutationState<Run>>({
|
|
49
|
+
loading: false,
|
|
50
|
+
error: null,
|
|
51
|
+
data: null,
|
|
52
|
+
});
|
|
53
|
+
|
|
54
|
+
/**
|
|
55
|
+
* Create a new agent
|
|
56
|
+
*/
|
|
57
|
+
const createAgent = useCallback(
|
|
58
|
+
async (input: CreateAgentInput): Promise<Agent | null> => {
|
|
59
|
+
setCreateState({ loading: true, error: null, data: null });
|
|
60
|
+
try {
|
|
61
|
+
const result = await agent.createAgent(input, {
|
|
62
|
+
projectId,
|
|
63
|
+
organizationId: 'demo-org',
|
|
64
|
+
});
|
|
65
|
+
setCreateState({ loading: false, error: null, data: result });
|
|
66
|
+
options.onSuccess?.();
|
|
67
|
+
return result;
|
|
68
|
+
} catch (err) {
|
|
69
|
+
const error =
|
|
70
|
+
err instanceof Error ? err : new Error('Failed to create agent');
|
|
71
|
+
setCreateState({ loading: false, error, data: null });
|
|
72
|
+
options.onError?.(error);
|
|
73
|
+
return null;
|
|
74
|
+
}
|
|
75
|
+
},
|
|
76
|
+
[agent, projectId, options]
|
|
77
|
+
);
|
|
78
|
+
|
|
79
|
+
/**
|
|
80
|
+
* Update an agent (name, status)
|
|
81
|
+
*/
|
|
82
|
+
const updateAgent = useCallback(
|
|
83
|
+
async (input: UpdateAgentInput): Promise<Agent | null> => {
|
|
84
|
+
setUpdateState({ loading: true, error: null, data: null });
|
|
85
|
+
try {
|
|
86
|
+
const result = await agent.updateAgent(input);
|
|
87
|
+
setUpdateState({ loading: false, error: null, data: result });
|
|
88
|
+
options.onSuccess?.();
|
|
89
|
+
return result;
|
|
90
|
+
} catch (err) {
|
|
91
|
+
const error =
|
|
92
|
+
err instanceof Error ? err : new Error('Failed to update agent');
|
|
93
|
+
setUpdateState({ loading: false, error, data: null });
|
|
94
|
+
options.onError?.(error);
|
|
95
|
+
return null;
|
|
96
|
+
}
|
|
97
|
+
},
|
|
98
|
+
[agent, options]
|
|
99
|
+
);
|
|
100
|
+
|
|
101
|
+
/**
|
|
102
|
+
* Activate an agent
|
|
103
|
+
*/
|
|
104
|
+
const activateAgent = useCallback(
|
|
105
|
+
async (agentId: string): Promise<Agent | null> => {
|
|
106
|
+
return updateAgent({ id: agentId, status: 'ACTIVE' });
|
|
107
|
+
},
|
|
108
|
+
[updateAgent]
|
|
109
|
+
);
|
|
110
|
+
|
|
111
|
+
/**
|
|
112
|
+
* Pause an agent
|
|
113
|
+
*/
|
|
114
|
+
const pauseAgent = useCallback(
|
|
115
|
+
async (agentId: string): Promise<Agent | null> => {
|
|
116
|
+
return updateAgent({ id: agentId, status: 'PAUSED' });
|
|
117
|
+
},
|
|
118
|
+
[updateAgent]
|
|
119
|
+
);
|
|
120
|
+
|
|
121
|
+
/**
|
|
122
|
+
* Archive an agent
|
|
123
|
+
*/
|
|
124
|
+
const archiveAgent = useCallback(
|
|
125
|
+
async (agentId: string): Promise<Agent | null> => {
|
|
126
|
+
return updateAgent({ id: agentId, status: 'ARCHIVED' });
|
|
127
|
+
},
|
|
128
|
+
[updateAgent]
|
|
129
|
+
);
|
|
130
|
+
|
|
131
|
+
/**
|
|
132
|
+
* Execute an agent (creates a queued run).
|
|
133
|
+
*/
|
|
134
|
+
const executeAgent = useCallback(
|
|
135
|
+
async (input: {
|
|
136
|
+
agentId: string;
|
|
137
|
+
message: string;
|
|
138
|
+
}): Promise<Run | null> => {
|
|
139
|
+
setExecuteState({ loading: true, error: null, data: null });
|
|
140
|
+
try {
|
|
141
|
+
const result = await agent.executeAgent({
|
|
142
|
+
agentId: input.agentId,
|
|
143
|
+
message: input.message,
|
|
144
|
+
context: { projectId, organizationId: 'demo-org' },
|
|
145
|
+
});
|
|
146
|
+
setExecuteState({ loading: false, error: null, data: result });
|
|
147
|
+
options.onSuccess?.();
|
|
148
|
+
return result;
|
|
149
|
+
} catch (err) {
|
|
150
|
+
const error =
|
|
151
|
+
err instanceof Error ? err : new Error('Failed to execute agent');
|
|
152
|
+
setExecuteState({ loading: false, error, data: null });
|
|
153
|
+
options.onError?.(error);
|
|
154
|
+
return null;
|
|
155
|
+
}
|
|
156
|
+
},
|
|
157
|
+
[agent, projectId, options]
|
|
158
|
+
);
|
|
159
|
+
|
|
160
|
+
return {
|
|
161
|
+
// Mutations
|
|
162
|
+
createAgent,
|
|
163
|
+
updateAgent,
|
|
164
|
+
activateAgent,
|
|
165
|
+
pauseAgent,
|
|
166
|
+
archiveAgent,
|
|
167
|
+
executeAgent,
|
|
168
|
+
|
|
169
|
+
// State
|
|
170
|
+
createState,
|
|
171
|
+
updateState,
|
|
172
|
+
executeState,
|
|
173
|
+
|
|
174
|
+
// Convenience
|
|
175
|
+
isLoading:
|
|
176
|
+
createState.loading || updateState.loading || executeState.loading,
|
|
177
|
+
};
|
|
177
178
|
}
|
|
178
179
|
|
|
179
180
|
// Re-export types for convenience
|
|
180
|
-
export type {
|
|
181
|
+
export type { Agent, CreateAgentInput, Run, UpdateAgentInput };
|
|
@@ -3,13 +3,14 @@
|
|
|
3
3
|
*
|
|
4
4
|
* Uses runtime-local database-backed handlers.
|
|
5
5
|
*/
|
|
6
|
-
|
|
6
|
+
|
|
7
7
|
import { useTemplateRuntime } from '@contractspec/lib.example-shared-ui';
|
|
8
|
+
import { useCallback, useEffect, useState } from 'react';
|
|
8
9
|
import type {
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
10
|
+
AgentHandlers,
|
|
11
|
+
ListRunsOutput as RuntimeListRunsOutput,
|
|
12
|
+
Run as RuntimeRun,
|
|
13
|
+
RunMetrics as RuntimeRunMetrics,
|
|
13
14
|
} from '../../handlers/agent.handlers';
|
|
14
15
|
|
|
15
16
|
// Re-export types for convenience
|
|
@@ -18,64 +19,64 @@ export type ListRunsOutput = RuntimeListRunsOutput;
|
|
|
18
19
|
export type RunMetrics = RuntimeRunMetrics;
|
|
19
20
|
|
|
20
21
|
export interface UseRunListOptions {
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
22
|
+
agentId?: string;
|
|
23
|
+
status?: Run['status'] | 'all';
|
|
24
|
+
limit?: number;
|
|
24
25
|
}
|
|
25
26
|
|
|
26
27
|
export function useRunList(options: UseRunListOptions = {}) {
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
28
|
+
const { handlers, projectId } = useTemplateRuntime<{
|
|
29
|
+
agent: AgentHandlers;
|
|
30
|
+
}>();
|
|
31
|
+
const { agent } = handlers;
|
|
31
32
|
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
33
|
+
const [data, setData] = useState<ListRunsOutput | null>(null);
|
|
34
|
+
const [metrics, setMetrics] = useState<RunMetrics | null>(null);
|
|
35
|
+
const [loading, setLoading] = useState(true);
|
|
36
|
+
const [error, setError] = useState<Error | null>(null);
|
|
37
|
+
const [page, setPage] = useState(1);
|
|
37
38
|
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
39
|
+
const fetchData = useCallback(async () => {
|
|
40
|
+
setLoading(true);
|
|
41
|
+
setError(null);
|
|
41
42
|
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
43
|
+
try {
|
|
44
|
+
const [runsResult, metricsResult] = await Promise.all([
|
|
45
|
+
agent.listRuns({
|
|
46
|
+
projectId,
|
|
47
|
+
agentId: options.agentId,
|
|
48
|
+
status: options.status === 'all' ? undefined : options.status,
|
|
49
|
+
limit: options.limit ?? 20,
|
|
50
|
+
offset: (page - 1) * (options.limit ?? 20),
|
|
51
|
+
}),
|
|
52
|
+
agent.getRunMetrics({
|
|
53
|
+
projectId,
|
|
54
|
+
agentId: options.agentId,
|
|
55
|
+
startDate: new Date(Date.now() - 30 * 24 * 60 * 60 * 1000), // 30 days ago
|
|
56
|
+
endDate: new Date(),
|
|
57
|
+
}),
|
|
58
|
+
]);
|
|
59
|
+
setData(runsResult);
|
|
60
|
+
setMetrics(metricsResult);
|
|
61
|
+
} catch (err) {
|
|
62
|
+
setError(err instanceof Error ? err : new Error('Unknown error'));
|
|
63
|
+
} finally {
|
|
64
|
+
setLoading(false);
|
|
65
|
+
}
|
|
66
|
+
}, [agent, projectId, options.agentId, options.status, options.limit, page]);
|
|
66
67
|
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
68
|
+
useEffect(() => {
|
|
69
|
+
fetchData();
|
|
70
|
+
}, [fetchData]);
|
|
70
71
|
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
72
|
+
return {
|
|
73
|
+
data,
|
|
74
|
+
metrics,
|
|
75
|
+
loading,
|
|
76
|
+
error,
|
|
77
|
+
page,
|
|
78
|
+
refetch: fetchData,
|
|
79
|
+
nextPage: () => setPage((p) => p + 1),
|
|
80
|
+
prevPage: () => page > 1 && setPage((p) => p - 1),
|
|
81
|
+
};
|
|
81
82
|
}
|