@agent-native/core 0.168.7 → 0.168.9
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/corpus/README.md +1 -1
- package/corpus/templates/analytics/actions/mutate-dashboard.ts +8 -1
- package/corpus/templates/calendar/actions/delete-event.ts +34 -18
- package/corpus/templates/calendar/actions/delete-events.ts +13 -1
- package/corpus/templates/calendar/app/components/calendar/EventDetailPanel.tsx +22 -3
- package/corpus/templates/calendar/app/lib/calendar-timezone.ts +19 -0
- package/corpus/templates/calendar/server/lib/google-api.ts +18 -1
- package/corpus/templates/clips/actions/finalize-meeting.ts +16 -0
- package/corpus/templates/clips/actions/list-meetings.ts +1 -0
- package/corpus/templates/clips/actions/sync-calendars.ts +10 -29
- package/corpus/templates/clips/desktop/src/hooks/useMeetingTranscription.ts +28 -12
- package/corpus/templates/clips/desktop/src/lib/meeting-stop.ts +16 -0
- package/corpus/templates/clips/server/lib/calendar-event-meetings.ts +19 -9
- package/corpus/templates/factory/.agents/skills/factory-graphs/SKILL.md +5 -0
- package/corpus/templates/factory/AGENTS.md +12 -22
- package/corpus/templates/factory/README.md +11 -8
- package/corpus/templates/factory/actions/approve-factory-item.ts +35 -8
- package/corpus/templates/factory/actions/babysit-agent-native-pull-request.ts +24 -9
- package/corpus/templates/factory/actions/create-factory.ts +211 -0
- package/corpus/templates/factory/actions/evaluate-triage-item.ts +29 -5
- package/corpus/templates/factory/actions/get-factory-graph.ts +1 -1
- package/corpus/templates/factory/actions/get-slack-feedback-context.ts +20 -11
- package/corpus/templates/factory/actions/get-triage-config.ts +13 -12
- package/corpus/templates/factory/actions/get-triage-item.ts +28 -6
- package/corpus/templates/factory/actions/govern-agent-native-pull-request.ts +33 -17
- package/corpus/templates/factory/actions/ingest-github-observation.ts +10 -4
- package/corpus/templates/factory/actions/list-factory-audit.ts +11 -4
- package/corpus/templates/factory/actions/list-factory-automations.ts +34 -12
- package/corpus/templates/factory/actions/list-triage-items.ts +11 -3
- package/corpus/templates/factory/actions/list-triage-rules.ts +11 -4
- package/corpus/templates/factory/actions/poll-github-sources.ts +24 -10
- package/corpus/templates/factory/actions/poll-sentry-errors.ts +26 -11
- package/corpus/templates/factory/actions/poll-slack-channel.ts +31 -13
- package/corpus/templates/factory/actions/reconcile-triage-run.ts +59 -9
- package/corpus/templates/factory/actions/record-triage-feedback.ts +14 -3
- package/corpus/templates/factory/actions/run-factory-automation.ts +12 -2
- package/corpus/templates/factory/actions/save-factory-automation.ts +82 -21
- package/corpus/templates/factory/actions/save-factory-graph.ts +10 -1
- package/corpus/templates/factory/actions/save-triage-config.ts +90 -36
- package/corpus/templates/factory/actions/save-triage-rule.ts +16 -3
- package/corpus/templates/factory/actions/start-builder-for-item.ts +28 -20
- package/corpus/templates/factory/actions/suggest-factory-rules.ts +11 -4
- package/corpus/templates/factory/actions/view-screen.ts +22 -30
- package/corpus/templates/factory/app/components/factory/FactorySettingsView.tsx +7 -2
- package/corpus/templates/factory/app/components/factory/FactoryWorkspaceActions.tsx +7 -22
- package/corpus/templates/factory/app/components/factory/NewFactoryForm.tsx +260 -0
- package/corpus/templates/factory/app/components/layout/Layout.tsx +1 -1
- package/corpus/templates/factory/app/components/layout/Sidebar.tsx +2 -1
- package/corpus/templates/factory/app/hooks/use-navigation-state.ts +3 -3
- package/corpus/templates/factory/app/i18n/en-US.ts +18 -1
- package/corpus/templates/factory/app/routes/factory.tsx +78 -62
- package/corpus/templates/factory/app/routes/{factory-settings.tsx → new-factory.tsx} +12 -9
- package/corpus/templates/factory/server/db/schema.ts +18 -3
- package/corpus/templates/factory/server/factory-graph/contracts.ts +24 -0
- package/corpus/templates/factory/server/factory-graph/store.ts +16 -9
- package/corpus/templates/factory/server/lib/factory-automation-plan.ts +136 -0
- package/corpus/templates/factory/server/lib/factory-automation-repair.ts +31 -0
- package/corpus/templates/factory/server/lib/factory-scope.ts +416 -0
- package/corpus/templates/factory/server/lib/require-factory-automation.ts +11 -0
- package/corpus/templates/factory/server/plugins/agent-chat.ts +4 -2
- package/corpus/templates/factory/server/plugins/factory-migrations.ts +80 -0
- package/corpus/templates/factory/server/plugins/factory-scheduler-job.ts +142 -43
- package/corpus/templates/factory/server/triage/audit.ts +4 -0
- package/corpus/templates/factory/server/triage/ids.ts +4 -0
- package/dist/cli/native-dependencies.js +4 -1
- package/dist/client/AgentPanel.d.ts +5 -1
- package/dist/client/AgentPanel.js +9 -4
- package/dist/client/agent-chat/index.d.ts +1 -1
- package/dist/client/agent-chat/index.js +1 -1
- package/dist/client/chat-first/apps-rail.js +6 -6
- package/dist/client/chat-first/primary-nav.js +14 -6
- package/dist/client/integrations/IntegrationsPanel.d.ts +15 -0
- package/dist/client/integrations/IntegrationsPanel.js +29 -21
- package/dist/client/integrations/index.d.ts +1 -1
- package/dist/client/integrations/index.js +1 -1
- package/dist/client/resources/McpIntegrationDialog.js +1 -1
- package/dist/collab/struct-routes.d.ts +1 -1
- package/dist/file-upload/actions/upload-image.d.ts +1 -1
- package/dist/observability/routes.d.ts +3 -3
- package/dist/progress/routes.d.ts +1 -1
- package/dist/secrets/routes.d.ts +6 -6
- package/dist/server/realtime-token.d.ts +1 -1
- package/dist/server/transcribe-voice.d.ts +1 -1
- package/package.json +1 -1
|
@@ -1,20 +1,38 @@
|
|
|
1
1
|
import { defineAction } from "@agent-native/core/action";
|
|
2
|
-
import { and, eq } from "drizzle-orm";
|
|
3
2
|
import { z } from "zod";
|
|
4
3
|
|
|
5
4
|
import { getDb } from "../server/db/index.js";
|
|
6
5
|
import { triageConfig } from "../server/db/schema.js";
|
|
6
|
+
import {
|
|
7
|
+
readFactoryDefinition,
|
|
8
|
+
DEFAULT_FACTORY_ID,
|
|
9
|
+
} from "../server/factory-graph/store.js";
|
|
10
|
+
import {
|
|
11
|
+
isFactorySlackChannelConflict,
|
|
12
|
+
resolveEnabledAutomationsFromSavedConfig,
|
|
13
|
+
} from "../server/lib/factory-automation-plan.js";
|
|
14
|
+
import {
|
|
15
|
+
assertUniqueSlackChannelForFactory,
|
|
16
|
+
factoryConfigRowId,
|
|
17
|
+
factoryIdSchema,
|
|
18
|
+
readTriageConfigRow,
|
|
19
|
+
} from "../server/lib/factory-scope.js";
|
|
7
20
|
import {
|
|
8
21
|
requireWorkspaceMember,
|
|
9
22
|
workspaceMemberIdentityFromContext,
|
|
10
23
|
} from "../server/lib/require-workspace-member.js";
|
|
24
|
+
import {
|
|
25
|
+
ensureFactoryAutomations,
|
|
26
|
+
syncFactoryAutomationEnabledStates,
|
|
27
|
+
} from "../server/plugins/factory-scheduler-job.js";
|
|
11
28
|
|
|
12
29
|
const workspaceSchema = z.enum(["primary", "secondary"]);
|
|
13
30
|
|
|
14
31
|
export default defineAction({
|
|
15
32
|
description:
|
|
16
|
-
"Save Factory observation and automation alert settings. Provider credentials live in shared workspace integrations; source routing metadata including the Builder Slack member id is stored on Factory config.",
|
|
33
|
+
"Save Factory observation and automation alert settings for the selected factory. Provider credentials live in shared workspace integrations; source routing metadata including the Builder Slack member id is stored on Factory config.",
|
|
17
34
|
schema: z.object({
|
|
35
|
+
factoryId: factoryIdSchema.default(DEFAULT_FACTORY_ID),
|
|
18
36
|
slackWorkspace: workspaceSchema.optional(),
|
|
19
37
|
slackChannelId: z.string().trim().max(128).optional(),
|
|
20
38
|
slackChannelName: z.string().trim().max(200).optional(),
|
|
@@ -41,6 +59,7 @@ export default defineAction({
|
|
|
41
59
|
http: { method: "POST" },
|
|
42
60
|
run: async (
|
|
43
61
|
{
|
|
62
|
+
factoryId,
|
|
44
63
|
slackWorkspace,
|
|
45
64
|
slackChannelId,
|
|
46
65
|
slackChannelName,
|
|
@@ -62,13 +81,11 @@ export default defineAction({
|
|
|
62
81
|
);
|
|
63
82
|
const now = new Date().toISOString();
|
|
64
83
|
const db = getDb();
|
|
65
|
-
|
|
66
|
-
await
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
.limit(1)
|
|
71
|
-
)[0];
|
|
84
|
+
if (factoryId !== DEFAULT_FACTORY_ID) {
|
|
85
|
+
const factory = await readFactoryDefinition(orgId, factoryId);
|
|
86
|
+
if (!factory) throw new Error("Factory not found.");
|
|
87
|
+
}
|
|
88
|
+
const existing = await readTriageConfigRow(db, orgId, factoryId);
|
|
72
89
|
const persistText = (
|
|
73
90
|
next: string | undefined,
|
|
74
91
|
previous: string | null | undefined,
|
|
@@ -79,6 +96,12 @@ export default defineAction({
|
|
|
79
96
|
slackChannelId,
|
|
80
97
|
existing?.slackChannelId,
|
|
81
98
|
);
|
|
99
|
+
await assertUniqueSlackChannelForFactory(
|
|
100
|
+
db,
|
|
101
|
+
orgId,
|
|
102
|
+
factoryId,
|
|
103
|
+
persistedSlackChannelId,
|
|
104
|
+
);
|
|
82
105
|
const persistedSlackChannelName = persistText(
|
|
83
106
|
slackChannelName,
|
|
84
107
|
existing?.slackChannelName,
|
|
@@ -130,31 +153,13 @@ export default defineAction({
|
|
|
130
153
|
automationFailureAlertEmail,
|
|
131
154
|
existing?.automationFailureAlertEmail,
|
|
132
155
|
);
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
builderSlackUserId: persistedBuilderSlackUserId,
|
|
141
|
-
pollingEnabled: persistedPollingEnabled,
|
|
142
|
-
githubPollingEnabled: persistedGithubPollingEnabled,
|
|
143
|
-
sentryPollingEnabled: persistedSentryPollingEnabled,
|
|
144
|
-
sentryOrgSlug: persistedSentryOrgSlug,
|
|
145
|
-
sentryProjectSlug: persistedSentryProjectSlug,
|
|
146
|
-
sentryEnvironment: persistedSentryEnvironment,
|
|
147
|
-
repository: persistedRepository,
|
|
148
|
-
automationFailureAlertsEnabled: persistedAutomationFailureAlertsEnabled,
|
|
149
|
-
automationFailureAlertEmail: persistedAutomationFailureAlertEmail,
|
|
150
|
-
createdAt: now,
|
|
151
|
-
updatedAt: now,
|
|
152
|
-
ownerEmail: userEmail,
|
|
153
|
-
orgId,
|
|
154
|
-
})
|
|
155
|
-
.onConflictDoUpdate({
|
|
156
|
-
target: triageConfig.id,
|
|
157
|
-
set: {
|
|
156
|
+
const configId = factoryConfigRowId(orgId, factoryId);
|
|
157
|
+
try {
|
|
158
|
+
await db
|
|
159
|
+
.insert(triageConfig)
|
|
160
|
+
.values({
|
|
161
|
+
id: configId,
|
|
162
|
+
factoryId,
|
|
158
163
|
slackWorkspace: persistedSlackWorkspace,
|
|
159
164
|
slackChannelId: persistedSlackChannelId,
|
|
160
165
|
slackChannelName: persistedSlackChannelName,
|
|
@@ -169,12 +174,61 @@ export default defineAction({
|
|
|
169
174
|
automationFailureAlertsEnabled:
|
|
170
175
|
persistedAutomationFailureAlertsEnabled,
|
|
171
176
|
automationFailureAlertEmail: persistedAutomationFailureAlertEmail,
|
|
177
|
+
createdAt: now,
|
|
172
178
|
updatedAt: now,
|
|
173
179
|
ownerEmail: userEmail,
|
|
174
|
-
|
|
175
|
-
|
|
180
|
+
orgId,
|
|
181
|
+
})
|
|
182
|
+
.onConflictDoUpdate({
|
|
183
|
+
target: triageConfig.id,
|
|
184
|
+
set: {
|
|
185
|
+
factoryId,
|
|
186
|
+
slackWorkspace: persistedSlackWorkspace,
|
|
187
|
+
slackChannelId: persistedSlackChannelId,
|
|
188
|
+
slackChannelName: persistedSlackChannelName,
|
|
189
|
+
builderSlackUserId: persistedBuilderSlackUserId,
|
|
190
|
+
pollingEnabled: persistedPollingEnabled,
|
|
191
|
+
githubPollingEnabled: persistedGithubPollingEnabled,
|
|
192
|
+
sentryPollingEnabled: persistedSentryPollingEnabled,
|
|
193
|
+
sentryOrgSlug: persistedSentryOrgSlug,
|
|
194
|
+
sentryProjectSlug: persistedSentryProjectSlug,
|
|
195
|
+
sentryEnvironment: persistedSentryEnvironment,
|
|
196
|
+
repository: persistedRepository,
|
|
197
|
+
automationFailureAlertsEnabled:
|
|
198
|
+
persistedAutomationFailureAlertsEnabled,
|
|
199
|
+
automationFailureAlertEmail: persistedAutomationFailureAlertEmail,
|
|
200
|
+
updatedAt: now,
|
|
201
|
+
ownerEmail: userEmail,
|
|
202
|
+
},
|
|
203
|
+
});
|
|
204
|
+
} catch (error) {
|
|
205
|
+
if (isFactorySlackChannelConflict(error)) {
|
|
206
|
+
throw new Error(
|
|
207
|
+
"That Slack channel is already used by another Factory in this workspace.",
|
|
208
|
+
);
|
|
209
|
+
}
|
|
210
|
+
throw error;
|
|
211
|
+
}
|
|
212
|
+
|
|
213
|
+
const enabledNames = resolveEnabledAutomationsFromSavedConfig({
|
|
214
|
+
pollingEnabled: persistedPollingEnabled,
|
|
215
|
+
githubPollingEnabled: persistedGithubPollingEnabled,
|
|
216
|
+
sentryPollingEnabled: persistedSentryPollingEnabled,
|
|
217
|
+
slackChannelId: persistedSlackChannelId,
|
|
218
|
+
repository: persistedRepository,
|
|
219
|
+
sentryOrgSlug: persistedSentryOrgSlug,
|
|
220
|
+
sentryProjectSlug: persistedSentryProjectSlug,
|
|
221
|
+
});
|
|
222
|
+
await ensureFactoryAutomations(userEmail, orgId, factoryId, {
|
|
223
|
+
enabledNames,
|
|
224
|
+
});
|
|
225
|
+
await syncFactoryAutomationEnabledStates(userEmail, orgId, factoryId, [
|
|
226
|
+
...enabledNames,
|
|
227
|
+
]);
|
|
228
|
+
|
|
176
229
|
return {
|
|
177
230
|
ok: true,
|
|
231
|
+
factoryId,
|
|
178
232
|
pollingEnabled: persistedPollingEnabled === 1,
|
|
179
233
|
githubPollingEnabled: persistedGithubPollingEnabled === 1,
|
|
180
234
|
sentryPollingEnabled: persistedSentryPollingEnabled === 1,
|
|
@@ -4,6 +4,11 @@ import { z } from "zod";
|
|
|
4
4
|
|
|
5
5
|
import { getDb } from "../server/db/index.js";
|
|
6
6
|
import { triageRules } from "../server/db/schema.js";
|
|
7
|
+
import { DEFAULT_FACTORY_ID } from "../server/factory-graph/store.js";
|
|
8
|
+
import {
|
|
9
|
+
factoryIdSchema,
|
|
10
|
+
orgFactoryRuleFilter,
|
|
11
|
+
} from "../server/lib/factory-scope.js";
|
|
7
12
|
import {
|
|
8
13
|
requireWorkspaceMember,
|
|
9
14
|
workspaceMemberIdentityFromContext,
|
|
@@ -20,6 +25,7 @@ export default defineAction({
|
|
|
20
25
|
description:
|
|
21
26
|
"Create or update a Factory rule. Disabled and shadow modes are accepted; execution still requires an explicit approval action.",
|
|
22
27
|
schema: z.object({
|
|
28
|
+
factoryId: factoryIdSchema.default(DEFAULT_FACTORY_ID),
|
|
23
29
|
id: z.string().min(1).optional(),
|
|
24
30
|
name: z.string().trim().min(1).max(120),
|
|
25
31
|
description: z.string().trim().max(500).default(""),
|
|
@@ -30,19 +36,24 @@ export default defineAction({
|
|
|
30
36
|
}),
|
|
31
37
|
http: { method: "POST" },
|
|
32
38
|
run: async (
|
|
33
|
-
{ id, name, description, promptText, mode, enabled, guards },
|
|
39
|
+
{ factoryId, id, name, description, promptText, mode, enabled, guards },
|
|
34
40
|
context,
|
|
35
41
|
) => {
|
|
36
42
|
const { userEmail, orgId } = await requireWorkspaceMember(
|
|
37
43
|
workspaceMemberIdentityFromContext(context),
|
|
38
44
|
);
|
|
39
45
|
const now = new Date().toISOString();
|
|
40
|
-
const ruleId = id ?? stableId("rule", orgId, name);
|
|
46
|
+
const ruleId = id ?? stableId("rule", orgId, factoryId, name);
|
|
41
47
|
const existing = (
|
|
42
48
|
await getDb()
|
|
43
49
|
.select({ promptVersion: triageRules.promptVersion })
|
|
44
50
|
.from(triageRules)
|
|
45
|
-
.where(
|
|
51
|
+
.where(
|
|
52
|
+
and(
|
|
53
|
+
eq(triageRules.id, ruleId),
|
|
54
|
+
orgFactoryRuleFilter(orgId, factoryId),
|
|
55
|
+
),
|
|
56
|
+
)
|
|
46
57
|
.limit(1)
|
|
47
58
|
)[0];
|
|
48
59
|
if (id && !existing) {
|
|
@@ -68,6 +79,7 @@ export default defineAction({
|
|
|
68
79
|
updatedAt: now,
|
|
69
80
|
ownerEmail: userEmail,
|
|
70
81
|
orgId,
|
|
82
|
+
factoryId,
|
|
71
83
|
})
|
|
72
84
|
.onConflictDoUpdate({
|
|
73
85
|
target: triageRules.id,
|
|
@@ -81,6 +93,7 @@ export default defineAction({
|
|
|
81
93
|
promptVersion: nextPromptVersion,
|
|
82
94
|
updatedAt: now,
|
|
83
95
|
ownerEmail: userEmail,
|
|
96
|
+
factoryId,
|
|
84
97
|
},
|
|
85
98
|
});
|
|
86
99
|
|
|
@@ -4,11 +4,16 @@ import { z } from "zod";
|
|
|
4
4
|
|
|
5
5
|
import { getDb } from "../server/db/index.js";
|
|
6
6
|
import {
|
|
7
|
-
triageConfig,
|
|
8
7
|
triageDecisions,
|
|
9
8
|
triageItems,
|
|
10
9
|
triageRuns,
|
|
11
10
|
} from "../server/db/schema.js";
|
|
11
|
+
import {
|
|
12
|
+
DEFAULT_FACTORY_ID,
|
|
13
|
+
orgFactoryItemFilter,
|
|
14
|
+
orgFactoryRunFilter,
|
|
15
|
+
} from "../server/lib/factory-scope.js";
|
|
16
|
+
import { readTriageConfigRow } from "../server/lib/factory-scope.js";
|
|
12
17
|
import { requireFactoryAutomation } from "../server/lib/require-factory-automation.js";
|
|
13
18
|
import {
|
|
14
19
|
requireWorkspaceMember,
|
|
@@ -188,6 +193,7 @@ export async function recordAutomaticBuilderDecision(input: {
|
|
|
188
193
|
itemId: string;
|
|
189
194
|
userEmail: string;
|
|
190
195
|
orgId: string;
|
|
196
|
+
factoryId: string;
|
|
191
197
|
outcome: "propose_fix" | "needs_manual";
|
|
192
198
|
reason: string;
|
|
193
199
|
guardResults: Array<{ code: string; passed: boolean; reason: string }>;
|
|
@@ -214,6 +220,7 @@ export async function recordAutomaticBuilderDecision(input: {
|
|
|
214
220
|
createdAt: now,
|
|
215
221
|
ownerEmail: input.userEmail,
|
|
216
222
|
orgId: input.orgId,
|
|
223
|
+
factoryId: input.factoryId,
|
|
217
224
|
})
|
|
218
225
|
.onConflictDoUpdate({
|
|
219
226
|
target: triageDecisions.id,
|
|
@@ -260,11 +267,6 @@ export default defineAction({
|
|
|
260
267
|
const { userEmail, orgId } = await requireWorkspaceMember(
|
|
261
268
|
workspaceMemberIdentityFromContext(context),
|
|
262
269
|
);
|
|
263
|
-
await requireFactoryAutomation(
|
|
264
|
-
context,
|
|
265
|
-
{ userEmail, orgId },
|
|
266
|
-
"builderDispatch",
|
|
267
|
-
);
|
|
268
270
|
const db = getDb();
|
|
269
271
|
const item = (
|
|
270
272
|
await db
|
|
@@ -274,6 +276,13 @@ export default defineAction({
|
|
|
274
276
|
.limit(1)
|
|
275
277
|
)[0];
|
|
276
278
|
if (!item) throw new Error("Factory item not found.");
|
|
279
|
+
const factoryId = item.factoryId ?? DEFAULT_FACTORY_ID;
|
|
280
|
+
await requireFactoryAutomation(
|
|
281
|
+
context,
|
|
282
|
+
{ userEmail, orgId },
|
|
283
|
+
"builderDispatch",
|
|
284
|
+
factoryId,
|
|
285
|
+
);
|
|
277
286
|
const metadata = parseTriageMetadata(item.metadataJson);
|
|
278
287
|
const relatedIds = [...new Set(relatedItemIds)].filter(
|
|
279
288
|
(relatedId) => relatedId !== itemId,
|
|
@@ -285,7 +294,7 @@ export default defineAction({
|
|
|
285
294
|
.from(triageItems)
|
|
286
295
|
.where(
|
|
287
296
|
and(
|
|
288
|
-
|
|
297
|
+
orgFactoryItemFilter(orgId, factoryId),
|
|
289
298
|
inArray(triageItems.id, relatedIds),
|
|
290
299
|
),
|
|
291
300
|
)
|
|
@@ -319,7 +328,7 @@ export default defineAction({
|
|
|
319
328
|
.from(triageRuns)
|
|
320
329
|
.where(
|
|
321
330
|
and(
|
|
322
|
-
|
|
331
|
+
orgFactoryRunFilter(orgId, factoryId),
|
|
323
332
|
inArray(triageRuns.itemId, relatedIds),
|
|
324
333
|
),
|
|
325
334
|
)
|
|
@@ -385,6 +394,7 @@ export default defineAction({
|
|
|
385
394
|
itemId,
|
|
386
395
|
userEmail,
|
|
387
396
|
orgId,
|
|
397
|
+
factoryId,
|
|
388
398
|
outcome: blocked ? "needs_manual" : "propose_fix",
|
|
389
399
|
reason,
|
|
390
400
|
guardResults,
|
|
@@ -395,6 +405,7 @@ export default defineAction({
|
|
|
395
405
|
{
|
|
396
406
|
action: "start-builder-for-item",
|
|
397
407
|
kind: "decision",
|
|
408
|
+
factoryId,
|
|
398
409
|
itemId,
|
|
399
410
|
source: item.source,
|
|
400
411
|
sourceUrl: item.sourceUrl,
|
|
@@ -483,6 +494,7 @@ export default defineAction({
|
|
|
483
494
|
error: null,
|
|
484
495
|
ownerEmail: item.ownerEmail,
|
|
485
496
|
orgId,
|
|
497
|
+
factoryId: item.factoryId ?? DEFAULT_FACTORY_ID,
|
|
486
498
|
});
|
|
487
499
|
}
|
|
488
500
|
|
|
@@ -493,18 +505,11 @@ export default defineAction({
|
|
|
493
505
|
"Slack feedback is missing its channel or thread identity.",
|
|
494
506
|
);
|
|
495
507
|
}
|
|
496
|
-
const config = (
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
})
|
|
502
|
-
.from(triageConfig)
|
|
503
|
-
.where(
|
|
504
|
-
and(eq(triageConfig.id, orgId), eq(triageConfig.orgId, orgId)),
|
|
505
|
-
)
|
|
506
|
-
.limit(1)
|
|
507
|
-
)[0];
|
|
508
|
+
const config = await readTriageConfigRow(
|
|
509
|
+
db,
|
|
510
|
+
orgId,
|
|
511
|
+
item.factoryId ?? DEFAULT_FACTORY_ID,
|
|
512
|
+
);
|
|
508
513
|
const workspace =
|
|
509
514
|
config?.slackWorkspace === "secondary" ? "secondary" : "primary";
|
|
510
515
|
const builderSlackUserId = requireBuilderSlackUserId(
|
|
@@ -638,6 +643,7 @@ export default defineAction({
|
|
|
638
643
|
itemId: related.id,
|
|
639
644
|
userEmail,
|
|
640
645
|
orgId,
|
|
646
|
+
factoryId: related.factoryId ?? factoryId,
|
|
641
647
|
outcome: "propose_fix",
|
|
642
648
|
reason: `Grouped with Factory item ${itemId}: ${reason}`,
|
|
643
649
|
guardResults,
|
|
@@ -656,6 +662,7 @@ export default defineAction({
|
|
|
656
662
|
{
|
|
657
663
|
action: "start-builder-for-item",
|
|
658
664
|
kind: "external_action",
|
|
665
|
+
factoryId,
|
|
659
666
|
itemId,
|
|
660
667
|
source: item.source,
|
|
661
668
|
sourceUrl: item.sourceUrl,
|
|
@@ -728,6 +735,7 @@ export default defineAction({
|
|
|
728
735
|
{
|
|
729
736
|
action: "start-builder-for-item",
|
|
730
737
|
kind: "external_action",
|
|
738
|
+
factoryId,
|
|
731
739
|
itemId,
|
|
732
740
|
source: item.source,
|
|
733
741
|
sourceUrl: item.sourceUrl,
|
|
@@ -1,9 +1,15 @@
|
|
|
1
1
|
import { defineAction } from "@agent-native/core/action";
|
|
2
|
-
import { desc
|
|
2
|
+
import { desc } from "drizzle-orm";
|
|
3
3
|
import { z } from "zod";
|
|
4
4
|
|
|
5
5
|
import { getDb } from "../server/db/index.js";
|
|
6
6
|
import { triageDecisions, triageFeedback } from "../server/db/schema.js";
|
|
7
|
+
import { DEFAULT_FACTORY_ID } from "../server/factory-graph/store.js";
|
|
8
|
+
import {
|
|
9
|
+
factoryIdSchema,
|
|
10
|
+
orgFactoryDecisionFilter,
|
|
11
|
+
orgFactoryFeedbackFilter,
|
|
12
|
+
} from "../server/lib/factory-scope.js";
|
|
7
13
|
import {
|
|
8
14
|
requireWorkspaceMember,
|
|
9
15
|
workspaceMemberIdentityFromContext,
|
|
@@ -13,11 +19,12 @@ export default defineAction({
|
|
|
13
19
|
description:
|
|
14
20
|
"Mine human feedback on Factory decisions into inspectable rule proposals. This never edits a rule or enables execution.",
|
|
15
21
|
schema: z.object({
|
|
22
|
+
factoryId: factoryIdSchema.default(DEFAULT_FACTORY_ID),
|
|
16
23
|
limit: z.coerce.number().int().min(1).max(50).default(10),
|
|
17
24
|
}),
|
|
18
25
|
http: { method: "GET" },
|
|
19
26
|
readOnly: true,
|
|
20
|
-
run: async ({ limit }, context) => {
|
|
27
|
+
run: async ({ factoryId, limit }, context) => {
|
|
21
28
|
const { orgId } = await requireWorkspaceMember(
|
|
22
29
|
workspaceMemberIdentityFromContext(context),
|
|
23
30
|
);
|
|
@@ -25,13 +32,13 @@ export default defineAction({
|
|
|
25
32
|
const decisions = await db
|
|
26
33
|
.select()
|
|
27
34
|
.from(triageDecisions)
|
|
28
|
-
.where(
|
|
35
|
+
.where(orgFactoryDecisionFilter(orgId, factoryId))
|
|
29
36
|
.orderBy(desc(triageDecisions.createdAt))
|
|
30
37
|
.limit(500);
|
|
31
38
|
const feedback = await db
|
|
32
39
|
.select()
|
|
33
40
|
.from(triageFeedback)
|
|
34
|
-
.where(
|
|
41
|
+
.where(orgFactoryFeedbackFilter(orgId, factoryId))
|
|
35
42
|
.orderBy(desc(triageFeedback.createdAt))
|
|
36
43
|
.limit(500);
|
|
37
44
|
const decisionsById = new Map(
|
|
@@ -41,18 +41,6 @@ export default defineAction({
|
|
|
41
41
|
const screen: Record<string, unknown> = {};
|
|
42
42
|
if (navigation) screen.navigation = navigation;
|
|
43
43
|
|
|
44
|
-
if (
|
|
45
|
-
navigation &&
|
|
46
|
-
typeof navigation === "object" &&
|
|
47
|
-
"view" in navigation &&
|
|
48
|
-
navigation.view === "factory-settings"
|
|
49
|
-
) {
|
|
50
|
-
screen.factorySettings = {
|
|
51
|
-
scope: "workspace",
|
|
52
|
-
path: "/factory-settings",
|
|
53
|
-
};
|
|
54
|
-
}
|
|
55
|
-
|
|
56
44
|
if (
|
|
57
45
|
navigation &&
|
|
58
46
|
typeof navigation === "object" &&
|
|
@@ -63,25 +51,29 @@ export default defineAction({
|
|
|
63
51
|
workspaceMemberIdentityFromContext(context),
|
|
64
52
|
);
|
|
65
53
|
const state = navigation as Record<string, unknown>;
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
54
|
+
if (state.creatingFactory === true) {
|
|
55
|
+
screen.factory = { creating: true };
|
|
56
|
+
} else {
|
|
57
|
+
const factoryId =
|
|
58
|
+
typeof state.factoryId === "string" && state.factoryId.trim()
|
|
59
|
+
? state.factoryId
|
|
60
|
+
: DEFAULT_FACTORY_ID;
|
|
61
|
+
const row = await readFactoryDefinition(orgId, factoryId);
|
|
62
|
+
const fallback = defaultFactoryDefinition();
|
|
63
|
+
const graph = row ? parseFactoryGraph(row.graphJson) : fallback.graph;
|
|
64
|
+
const selectedNodeId =
|
|
65
|
+
typeof state.factoryNodeId === "string" ? state.factoryNodeId : null;
|
|
66
|
+
const selectedEdgeId =
|
|
67
|
+
typeof state.factoryEdgeId === "string" ? state.factoryEdgeId : null;
|
|
77
68
|
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
69
|
+
screen.factory = {
|
|
70
|
+
id: factoryId,
|
|
71
|
+
name: row?.name ?? fallback.name,
|
|
72
|
+
graphVersion: row?.graphVersion ?? graph.version,
|
|
73
|
+
selectedNode: graph.nodes.find((node) => node.id === selectedNodeId),
|
|
74
|
+
selectedEdge: graph.edges.find((edge) => edge.id === selectedEdgeId),
|
|
75
|
+
};
|
|
76
|
+
}
|
|
85
77
|
|
|
86
78
|
if (state.factoryTab === "agents") {
|
|
87
79
|
const [apps, agents] = await Promise.all([
|
|
@@ -49,7 +49,11 @@ function formatAutomationDate(value: string | number | null | undefined) {
|
|
|
49
49
|
return Number.isNaN(date.getTime()) ? String(value) : date.toLocaleString();
|
|
50
50
|
}
|
|
51
51
|
|
|
52
|
-
export function FactorySettingsView(
|
|
52
|
+
export function FactorySettingsView({
|
|
53
|
+
factoryId = "product-feedback",
|
|
54
|
+
}: {
|
|
55
|
+
factoryId?: string;
|
|
56
|
+
}) {
|
|
53
57
|
const t = useT();
|
|
54
58
|
const [workspace, setWorkspace] = useState<"primary" | "secondary">(
|
|
55
59
|
"primary",
|
|
@@ -68,7 +72,7 @@ export function FactorySettingsView() {
|
|
|
68
72
|
useState(true);
|
|
69
73
|
const [automationFailureAlertEmail, setAutomationFailureAlertEmail] =
|
|
70
74
|
useState("");
|
|
71
|
-
const query = useActionQuery("get-triage-config", {});
|
|
75
|
+
const query = useActionQuery("get-triage-config", { factoryId });
|
|
72
76
|
const schedulerHealthQuery = useActionQuery<FactoryAutomationHealth>(
|
|
73
77
|
"get-factory-automation-health",
|
|
74
78
|
{},
|
|
@@ -105,6 +109,7 @@ export function FactorySettingsView() {
|
|
|
105
109
|
}
|
|
106
110
|
try {
|
|
107
111
|
await mutation.mutateAsync({
|
|
112
|
+
factoryId,
|
|
108
113
|
slackWorkspace: workspace,
|
|
109
114
|
slackChannelId: channelId,
|
|
110
115
|
slackChannelName: channelName,
|
|
@@ -6,14 +6,9 @@ import { Link, useLocation, useSearchParams } from "react-router";
|
|
|
6
6
|
import { Button } from "@/components/ui/button";
|
|
7
7
|
|
|
8
8
|
export const FACTORY_AGENTS_HREF = "/factory?tab=agents";
|
|
9
|
-
export const
|
|
10
|
-
export const FACTORY_NEW_HREF = "/factory?new=1";
|
|
9
|
+
export const NEW_FACTORY_HREF = "/new-factory";
|
|
11
10
|
|
|
12
|
-
export function FactoryWorkspaceActions({
|
|
13
|
-
onNewFactory,
|
|
14
|
-
}: {
|
|
15
|
-
onNewFactory?: () => void;
|
|
16
|
-
}) {
|
|
11
|
+
export function FactoryWorkspaceActions() {
|
|
17
12
|
const t = useT();
|
|
18
13
|
const location = useLocation();
|
|
19
14
|
const [searchParams] = useSearchParams();
|
|
@@ -22,31 +17,21 @@ export function FactoryWorkspaceActions({
|
|
|
22
17
|
(location.pathname === "/factory" &&
|
|
23
18
|
searchParams.get("tab") === "agents" &&
|
|
24
19
|
!searchParams.get("factoryId"));
|
|
25
|
-
const
|
|
20
|
+
const onNewFactoryPage = location.pathname === "/new-factory";
|
|
26
21
|
|
|
27
22
|
return (
|
|
28
23
|
<div className="flex items-center gap-2">
|
|
29
24
|
<Button asChild variant={onAgents ? "default" : "outline"} size="sm">
|
|
30
25
|
<Link to={FACTORY_AGENTS_HREF}>{t("factoryRoute.agentsTab")}</Link>
|
|
31
26
|
</Button>
|
|
32
|
-
|
|
33
|
-
<
|
|
34
|
-
{
|
|
35
|
-
</Link>
|
|
36
|
-
</Button>
|
|
37
|
-
{onNewFactory ? (
|
|
38
|
-
<Button type="button" size="sm" onClick={onNewFactory}>
|
|
39
|
-
<IconPlus className="size-4" />
|
|
40
|
-
{t("factoryRoute.newFactory")}
|
|
41
|
-
</Button>
|
|
42
|
-
) : (
|
|
43
|
-
<Button asChild size="sm">
|
|
44
|
-
<Link to={FACTORY_NEW_HREF}>
|
|
27
|
+
{!onNewFactoryPage ? (
|
|
28
|
+
<Button asChild variant="outline" size="sm">
|
|
29
|
+
<Link to={NEW_FACTORY_HREF}>
|
|
45
30
|
<IconPlus className="size-4" />
|
|
46
31
|
{t("factoryRoute.newFactory")}
|
|
47
32
|
</Link>
|
|
48
33
|
</Button>
|
|
49
|
-
)}
|
|
34
|
+
) : null}
|
|
50
35
|
<AgentToggleButton />
|
|
51
36
|
</div>
|
|
52
37
|
);
|