@a5c-ai/krate 5.0.1-staging.660d2b90f → 5.0.1-staging.efc2092bb

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/Dockerfile CHANGED
@@ -1,29 +1,31 @@
1
- FROM node:20-alpine AS deps
2
- WORKDIR /app
3
- COPY package.json package-lock.json ./
4
- RUN npm ci
5
-
6
- FROM deps AS build
7
- COPY . .
8
- RUN npm run build
9
- RUN npm run ui:build
10
- RUN npm prune --omit=dev
11
-
12
- FROM node:20-alpine AS runtime
13
- WORKDIR /app
14
- RUN apk add --no-cache ca-certificates curl && curl -fsSL -o /usr/local/bin/kubectl https://dl.k8s.io/release/v1.32.2/bin/linux/amd64/kubectl && chmod +x /usr/local/bin/kubectl
15
- ENV NODE_ENV=production
16
- ENV PORT=3080
17
- COPY --from=build /app/package.json /app/package-lock.json ./
18
- COPY --from=build /app/node_modules ./node_modules
19
- COPY --from=build /app/apps/web/.next/standalone ./
20
- COPY --from=build /app/apps/web/.next/static ./apps/web/.next/static
21
- RUN printf '{"type":"commonjs"}\n' > apps/web/package.json
22
- COPY --from=build /app/bin ./bin
23
- COPY --from=build /app/src ./src
24
- COPY --from=build /app/dist ./dist
25
- COPY --from=build /app/charts ./charts
26
- COPY --from=build /app/examples ./examples
27
- EXPOSE 3080
28
- HEALTHCHECK --interval=30s --timeout=3s --start-period=5s --retries=3 CMD node -e "fetch('http://127.0.0.1:'+(process.env.PORT||3080)+'/healthz').then(r=>process.exit(r.ok?0:1)).catch(()=>process.exit(1))"
29
- CMD ["node", "bin/krate-server.mjs"]
1
+ FROM node:20-alpine AS build
2
+ WORKDIR /app
3
+ COPY packages/krate/core/package.json ./
4
+ RUN printf '{"type":"module"}\n' > /tmp/pkg-type.json
5
+ RUN npm install --omit=dev --ignore-scripts 2>/dev/null; exit 0
6
+ COPY packages/krate/core/src ./src
7
+ COPY packages/krate/core/bin ./bin
8
+ COPY packages/krate/core/scripts ./scripts
9
+ COPY packages/krate/core/dist ./dist
10
+ COPY packages/krate/core/docs ./docs
11
+ COPY packages/krate/core/examples ./examples
12
+ COPY packages/krate/core/tests ./tests
13
+
14
+ FROM node:20-alpine AS runtime
15
+ WORKDIR /app
16
+ RUN apk add --no-cache ca-certificates curl \
17
+ && curl -fsSL -o /usr/local/bin/kubectl \
18
+ https://dl.k8s.io/release/v1.32.2/bin/linux/amd64/kubectl \
19
+ && chmod +x /usr/local/bin/kubectl
20
+ ENV NODE_ENV=production
21
+ ENV PORT=3080
22
+ COPY --from=build /app/package.json ./
23
+ COPY --from=build /app/src ./src
24
+ COPY --from=build /app/bin ./bin
25
+ COPY --from=build /app/dist ./dist
26
+ COPY --from=build /app/docs ./docs
27
+ COPY --from=build /app/examples ./examples
28
+ EXPOSE 3080
29
+ HEALTHCHECK --interval=30s --timeout=3s --start-period=5s --retries=3 \
30
+ CMD node -e "fetch('http://127.0.0.1:'+(process.env.PORT||3080)+'/healthz').then(r=>process.exit(r.ok?0:1)).catch(()=>process.exit(1))"
31
+ CMD ["node", "bin/krate-server.mjs"]
@@ -19,7 +19,7 @@
19
19
  "platformNamespace": "krate-org-default"
20
20
  }
21
21
  ],
22
- "generatedAt": "2026-05-11T21:34:10.417Z",
22
+ "generatedAt": "2026-05-12T11:17:34.828Z",
23
23
  "correlationId": null,
24
24
  "controller": {
25
25
  "mode": "krate-workspace",
@@ -173,6 +173,41 @@
173
173
  "method": "POST",
174
174
  "path": "/api/orgs/:org/agents/triggers/process",
175
175
  "purpose": "evaluate an event against trigger rules and dispatch matching agents"
176
+ },
177
+ {
178
+ "method": "POST",
179
+ "path": "/api/orgs/:org/agents/workspaces",
180
+ "purpose": "provision a new agent workspace with worktree and runtime"
181
+ },
182
+ {
183
+ "method": "POST",
184
+ "path": "/api/orgs/:org/agents/workspaces/:name/archive",
185
+ "purpose": "archive an agent workspace and mark it for cleanup"
186
+ },
187
+ {
188
+ "method": "POST",
189
+ "path": "/api/orgs/:org/agents/workspaces/:name/link",
190
+ "purpose": "link a work item to an agent workspace"
191
+ },
192
+ {
193
+ "method": "POST",
194
+ "path": "/api/orgs/:org/agents/memory/query",
195
+ "purpose": "query Company Brain memory with graph and grep search"
196
+ },
197
+ {
198
+ "method": "POST",
199
+ "path": "/api/orgs/:org/agents/memory/imports",
200
+ "purpose": "create a memory import from a babysitter run"
201
+ },
202
+ {
203
+ "method": "GET",
204
+ "path": "/api/orgs/:org/agents/memory/snapshots",
205
+ "purpose": "list memory snapshots for an organization"
206
+ },
207
+ {
208
+ "method": "GET",
209
+ "path": "/api/orgs/:org/agents/memory/repositories",
210
+ "purpose": "list memory repositories for an organization"
176
211
  }
177
212
  ],
178
213
  "architecture": {
@@ -544,7 +579,7 @@
544
579
  "maintainers"
545
580
  ],
546
581
  "invitedBy": "admin",
547
- "expiresAt": "2026-05-18T21:34:10.414Z"
582
+ "expiresAt": "2026-05-19T11:17:34.825Z"
548
583
  },
549
584
  "status": {
550
585
  "phase": "Pending",
@@ -556,7 +591,7 @@
556
591
  "Pending": 1
557
592
  },
558
593
  "storage": "etcd",
559
- "yaml": "apiVersion: krate.a5c.ai/v1alpha1\nkind: Invite\nmetadata:\n namespace: krate-org-default\n labels:\n role: member\n annotations:\n name: new-user-example-com\n resourceVersion: 1\nspec:\n organizationRef: default\n email: new-user@example.com\n role: member\n teams:\n - maintainers\n invitedBy: admin\n expiresAt: 2026-05-18T21:34:10.414Z\nstatus:\n phase: Pending\n storage: etcd\n",
594
+ "yaml": "apiVersion: krate.a5c.ai/v1alpha1\nkind: Invite\nmetadata:\n namespace: krate-org-default\n labels:\n role: member\n annotations:\n name: new-user-example-com\n resourceVersion: 1\nspec:\n organizationRef: default\n email: new-user@example.com\n role: member\n teams:\n - maintainers\n invitedBy: admin\n expiresAt: 2026-05-19T11:17:34.825Z\nstatus:\n phase: Pending\n storage: etcd\n",
560
595
  "action": {
561
596
  "list": "Open Invite records in krate-org-default",
562
597
  "watch": "Watch Invite updates in krate-org-default",
@@ -1711,6 +1746,19 @@
1711
1746
  "transcripts": {
1712
1747
  "count": 0,
1713
1748
  "items": []
1749
+ },
1750
+ "memoryRepositories": {
1751
+ "count": 0,
1752
+ "items": []
1753
+ },
1754
+ "memorySnapshots": {
1755
+ "count": 0,
1756
+ "items": []
1757
+ },
1758
+ "memoryImports": {
1759
+ "count": 0,
1760
+ "items": [],
1761
+ "pending": []
1714
1762
  }
1715
1763
  },
1716
1764
  "identity": {
@@ -1778,7 +1826,7 @@
1778
1826
  "maintainers"
1779
1827
  ],
1780
1828
  "phase": "Pending",
1781
- "expiresAt": "2026-05-18T21:34:10.414Z"
1829
+ "expiresAt": "2026-05-19T11:17:34.825Z"
1782
1830
  }
1783
1831
  ],
1784
1832
  "mappings": [
@@ -2284,7 +2332,7 @@
2284
2332
  "maintainers"
2285
2333
  ],
2286
2334
  "phase": "Pending",
2287
- "expiresAt": "2026-05-18T21:34:10.414Z"
2335
+ "expiresAt": "2026-05-19T11:17:34.825Z"
2288
2336
  }
2289
2337
  ],
2290
2338
  "mappings": [
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "project": "Krate",
3
3
  "version": "0.1.0",
4
- "generatedAt": "2026-05-11T21:34:10.424Z",
4
+ "generatedAt": "2026-05-12T11:17:34.835Z",
5
5
  "status": "ready-for-local-development",
6
6
  "components": [
7
7
  {
@@ -431,7 +431,7 @@
431
431
  "maintainers"
432
432
  ],
433
433
  "invitedBy": "admin",
434
- "expiresAt": "2026-05-18T21:34:10.414Z"
434
+ "expiresAt": "2026-05-19T11:17:34.825Z"
435
435
  },
436
436
  "status": {
437
437
  "phase": "Pending",
@@ -513,7 +513,7 @@
513
513
  },
514
514
  "auditLog": [
515
515
  {
516
- "at": "2026-05-11T21:34:10.413Z",
516
+ "at": "2026-05-12T11:17:34.824Z",
517
517
  "operation": "create",
518
518
  "user": "admin@example.com",
519
519
  "groups": [
@@ -525,7 +525,7 @@
525
525
  "allowed": true
526
526
  },
527
527
  {
528
- "at": "2026-05-11T21:34:10.413Z",
528
+ "at": "2026-05-12T11:17:34.824Z",
529
529
  "operation": "create",
530
530
  "user": "admin@example.com",
531
531
  "groups": [
@@ -537,7 +537,7 @@
537
537
  "allowed": true
538
538
  },
539
539
  {
540
- "at": "2026-05-11T21:34:10.413Z",
540
+ "at": "2026-05-12T11:17:34.824Z",
541
541
  "operation": "create",
542
542
  "user": "admin@example.com",
543
543
  "groups": [
@@ -549,7 +549,7 @@
549
549
  "allowed": true
550
550
  },
551
551
  {
552
- "at": "2026-05-11T21:34:10.413Z",
552
+ "at": "2026-05-12T11:17:34.825Z",
553
553
  "operation": "create",
554
554
  "user": "platform@example.com",
555
555
  "groups": [
@@ -561,7 +561,7 @@
561
561
  "allowed": true
562
562
  },
563
563
  {
564
- "at": "2026-05-11T21:34:10.413Z",
564
+ "at": "2026-05-12T11:17:34.825Z",
565
565
  "operation": "create",
566
566
  "user": "admin@example.com",
567
567
  "groups": [
@@ -573,7 +573,7 @@
573
573
  "allowed": true
574
574
  },
575
575
  {
576
- "at": "2026-05-11T21:34:10.414Z",
576
+ "at": "2026-05-12T11:17:34.825Z",
577
577
  "operation": "create",
578
578
  "user": "platform@example.com",
579
579
  "groups": [
@@ -585,7 +585,7 @@
585
585
  "allowed": true
586
586
  },
587
587
  {
588
- "at": "2026-05-11T21:34:10.414Z",
588
+ "at": "2026-05-12T11:17:34.825Z",
589
589
  "operation": "create",
590
590
  "user": "platform@example.com",
591
591
  "groups": [
@@ -597,7 +597,7 @@
597
597
  "allowed": true
598
598
  },
599
599
  {
600
- "at": "2026-05-11T21:34:10.414Z",
600
+ "at": "2026-05-12T11:17:34.825Z",
601
601
  "operation": "create",
602
602
  "user": "platform@example.com",
603
603
  "groups": [
@@ -609,7 +609,7 @@
609
609
  "allowed": true
610
610
  },
611
611
  {
612
- "at": "2026-05-11T21:34:10.414Z",
612
+ "at": "2026-05-12T11:17:34.825Z",
613
613
  "operation": "create",
614
614
  "user": "admin@example.com",
615
615
  "groups": [
@@ -621,7 +621,7 @@
621
621
  "allowed": true
622
622
  },
623
623
  {
624
- "at": "2026-05-11T21:34:10.415Z",
624
+ "at": "2026-05-12T11:17:34.826Z",
625
625
  "operation": "create",
626
626
  "user": "platform@example.com",
627
627
  "groups": [
@@ -633,7 +633,7 @@
633
633
  "allowed": true
634
634
  },
635
635
  {
636
- "at": "2026-05-11T21:34:10.415Z",
636
+ "at": "2026-05-12T11:17:34.826Z",
637
637
  "operation": "create",
638
638
  "user": "platform@example.com",
639
639
  "groups": [
@@ -847,7 +847,7 @@
847
847
  }
848
848
  },
849
849
  "audit": {
850
- "at": "2026-05-11T21:34:10.413Z",
850
+ "at": "2026-05-12T11:17:34.824Z",
851
851
  "operation": "create",
852
852
  "user": "admin@example.com",
853
853
  "groups": [
@@ -888,7 +888,7 @@
888
888
  }
889
889
  },
890
890
  "audit": {
891
- "at": "2026-05-11T21:34:10.413Z",
891
+ "at": "2026-05-12T11:17:34.824Z",
892
892
  "operation": "create",
893
893
  "user": "admin@example.com",
894
894
  "groups": [
@@ -924,7 +924,7 @@
924
924
  }
925
925
  },
926
926
  "audit": {
927
- "at": "2026-05-11T21:34:10.413Z",
927
+ "at": "2026-05-12T11:17:34.824Z",
928
928
  "operation": "create",
929
929
  "user": "admin@example.com",
930
930
  "groups": [
@@ -969,7 +969,7 @@
969
969
  }
970
970
  },
971
971
  "audit": {
972
- "at": "2026-05-11T21:34:10.413Z",
972
+ "at": "2026-05-12T11:17:34.825Z",
973
973
  "operation": "create",
974
974
  "user": "platform@example.com",
975
975
  "groups": [
@@ -1013,7 +1013,7 @@
1013
1013
  }
1014
1014
  },
1015
1015
  "audit": {
1016
- "at": "2026-05-11T21:34:10.413Z",
1016
+ "at": "2026-05-12T11:17:34.825Z",
1017
1017
  "operation": "create",
1018
1018
  "user": "admin@example.com",
1019
1019
  "groups": [
@@ -1061,7 +1061,7 @@
1061
1061
  }
1062
1062
  },
1063
1063
  "audit": {
1064
- "at": "2026-05-11T21:34:10.414Z",
1064
+ "at": "2026-05-12T11:17:34.825Z",
1065
1065
  "operation": "create",
1066
1066
  "user": "platform@example.com",
1067
1067
  "groups": [
@@ -1111,7 +1111,7 @@
1111
1111
  }
1112
1112
  },
1113
1113
  "audit": {
1114
- "at": "2026-05-11T21:34:10.414Z",
1114
+ "at": "2026-05-12T11:17:34.825Z",
1115
1115
  "operation": "create",
1116
1116
  "user": "platform@example.com",
1117
1117
  "groups": [
@@ -1162,7 +1162,7 @@
1162
1162
  }
1163
1163
  },
1164
1164
  "audit": {
1165
- "at": "2026-05-11T21:34:10.414Z",
1165
+ "at": "2026-05-12T11:17:34.825Z",
1166
1166
  "operation": "create",
1167
1167
  "user": "platform@example.com",
1168
1168
  "groups": [
@@ -1197,7 +1197,7 @@
1197
1197
  "maintainers"
1198
1198
  ],
1199
1199
  "invitedBy": "admin",
1200
- "expiresAt": "2026-05-18T21:34:10.414Z"
1200
+ "expiresAt": "2026-05-19T11:17:34.825Z"
1201
1201
  },
1202
1202
  "status": {
1203
1203
  "phase": "Pending",
@@ -1205,7 +1205,7 @@
1205
1205
  }
1206
1206
  },
1207
1207
  "audit": {
1208
- "at": "2026-05-11T21:34:10.414Z",
1208
+ "at": "2026-05-12T11:17:34.825Z",
1209
1209
  "operation": "create",
1210
1210
  "user": "admin@example.com",
1211
1211
  "groups": [
@@ -1256,7 +1256,7 @@
1256
1256
  }
1257
1257
  },
1258
1258
  "audit": {
1259
- "at": "2026-05-11T21:34:10.415Z",
1259
+ "at": "2026-05-12T11:17:34.826Z",
1260
1260
  "operation": "create",
1261
1261
  "user": "platform@example.com",
1262
1262
  "groups": [
@@ -1307,7 +1307,7 @@
1307
1307
  }
1308
1308
  },
1309
1309
  "audit": {
1310
- "at": "2026-05-11T21:34:10.415Z",
1310
+ "at": "2026-05-12T11:17:34.826Z",
1311
1311
  "operation": "create",
1312
1312
  "user": "platform@example.com",
1313
1313
  "groups": [
@@ -1708,7 +1708,7 @@
1708
1708
  "maintainers"
1709
1709
  ],
1710
1710
  "invitedBy": "admin",
1711
- "expiresAt": "2026-05-18T21:34:10.414Z"
1711
+ "expiresAt": "2026-05-19T11:17:34.825Z"
1712
1712
  },
1713
1713
  "status": {
1714
1714
  "phase": "Pending",
@@ -2345,7 +2345,7 @@
2345
2345
  }
2346
2346
  },
2347
2347
  "audit": {
2348
- "at": "2026-05-11T21:34:10.413Z",
2348
+ "at": "2026-05-12T11:17:34.824Z",
2349
2349
  "operation": "create",
2350
2350
  "user": "admin@example.com",
2351
2351
  "groups": [
@@ -2386,7 +2386,7 @@
2386
2386
  }
2387
2387
  },
2388
2388
  "audit": {
2389
- "at": "2026-05-11T21:34:10.413Z",
2389
+ "at": "2026-05-12T11:17:34.824Z",
2390
2390
  "operation": "create",
2391
2391
  "user": "admin@example.com",
2392
2392
  "groups": [
@@ -2422,7 +2422,7 @@
2422
2422
  }
2423
2423
  },
2424
2424
  "audit": {
2425
- "at": "2026-05-11T21:34:10.413Z",
2425
+ "at": "2026-05-12T11:17:34.824Z",
2426
2426
  "operation": "create",
2427
2427
  "user": "admin@example.com",
2428
2428
  "groups": [
@@ -2467,7 +2467,7 @@
2467
2467
  }
2468
2468
  },
2469
2469
  "audit": {
2470
- "at": "2026-05-11T21:34:10.413Z",
2470
+ "at": "2026-05-12T11:17:34.825Z",
2471
2471
  "operation": "create",
2472
2472
  "user": "platform@example.com",
2473
2473
  "groups": [
@@ -2511,7 +2511,7 @@
2511
2511
  }
2512
2512
  },
2513
2513
  "audit": {
2514
- "at": "2026-05-11T21:34:10.413Z",
2514
+ "at": "2026-05-12T11:17:34.825Z",
2515
2515
  "operation": "create",
2516
2516
  "user": "admin@example.com",
2517
2517
  "groups": [
@@ -2559,7 +2559,7 @@
2559
2559
  }
2560
2560
  },
2561
2561
  "audit": {
2562
- "at": "2026-05-11T21:34:10.414Z",
2562
+ "at": "2026-05-12T11:17:34.825Z",
2563
2563
  "operation": "create",
2564
2564
  "user": "platform@example.com",
2565
2565
  "groups": [
@@ -2609,7 +2609,7 @@
2609
2609
  }
2610
2610
  },
2611
2611
  "audit": {
2612
- "at": "2026-05-11T21:34:10.414Z",
2612
+ "at": "2026-05-12T11:17:34.825Z",
2613
2613
  "operation": "create",
2614
2614
  "user": "platform@example.com",
2615
2615
  "groups": [
@@ -2660,7 +2660,7 @@
2660
2660
  }
2661
2661
  },
2662
2662
  "audit": {
2663
- "at": "2026-05-11T21:34:10.414Z",
2663
+ "at": "2026-05-12T11:17:34.825Z",
2664
2664
  "operation": "create",
2665
2665
  "user": "platform@example.com",
2666
2666
  "groups": [
@@ -2695,7 +2695,7 @@
2695
2695
  "maintainers"
2696
2696
  ],
2697
2697
  "invitedBy": "admin",
2698
- "expiresAt": "2026-05-18T21:34:10.414Z"
2698
+ "expiresAt": "2026-05-19T11:17:34.825Z"
2699
2699
  },
2700
2700
  "status": {
2701
2701
  "phase": "Pending",
@@ -2703,7 +2703,7 @@
2703
2703
  }
2704
2704
  },
2705
2705
  "audit": {
2706
- "at": "2026-05-11T21:34:10.414Z",
2706
+ "at": "2026-05-12T11:17:34.825Z",
2707
2707
  "operation": "create",
2708
2708
  "user": "admin@example.com",
2709
2709
  "groups": [
@@ -2754,7 +2754,7 @@
2754
2754
  }
2755
2755
  },
2756
2756
  "audit": {
2757
- "at": "2026-05-11T21:34:10.415Z",
2757
+ "at": "2026-05-12T11:17:34.826Z",
2758
2758
  "operation": "create",
2759
2759
  "user": "platform@example.com",
2760
2760
  "groups": [
@@ -2805,7 +2805,7 @@
2805
2805
  }
2806
2806
  },
2807
2807
  "audit": {
2808
- "at": "2026-05-11T21:34:10.415Z",
2808
+ "at": "2026-05-12T11:17:34.826Z",
2809
2809
  "operation": "create",
2810
2810
  "user": "platform@example.com",
2811
2811
  "groups": [
@@ -2820,7 +2820,7 @@
2820
2820
  ],
2821
2821
  "auditLog": [
2822
2822
  {
2823
- "at": "2026-05-11T21:34:10.413Z",
2823
+ "at": "2026-05-12T11:17:34.824Z",
2824
2824
  "operation": "create",
2825
2825
  "user": "admin@example.com",
2826
2826
  "groups": [
@@ -2832,7 +2832,7 @@
2832
2832
  "allowed": true
2833
2833
  },
2834
2834
  {
2835
- "at": "2026-05-11T21:34:10.413Z",
2835
+ "at": "2026-05-12T11:17:34.824Z",
2836
2836
  "operation": "create",
2837
2837
  "user": "admin@example.com",
2838
2838
  "groups": [
@@ -2844,7 +2844,7 @@
2844
2844
  "allowed": true
2845
2845
  },
2846
2846
  {
2847
- "at": "2026-05-11T21:34:10.413Z",
2847
+ "at": "2026-05-12T11:17:34.824Z",
2848
2848
  "operation": "create",
2849
2849
  "user": "admin@example.com",
2850
2850
  "groups": [
@@ -2856,7 +2856,7 @@
2856
2856
  "allowed": true
2857
2857
  },
2858
2858
  {
2859
- "at": "2026-05-11T21:34:10.413Z",
2859
+ "at": "2026-05-12T11:17:34.825Z",
2860
2860
  "operation": "create",
2861
2861
  "user": "platform@example.com",
2862
2862
  "groups": [
@@ -2868,7 +2868,7 @@
2868
2868
  "allowed": true
2869
2869
  },
2870
2870
  {
2871
- "at": "2026-05-11T21:34:10.413Z",
2871
+ "at": "2026-05-12T11:17:34.825Z",
2872
2872
  "operation": "create",
2873
2873
  "user": "admin@example.com",
2874
2874
  "groups": [
@@ -2880,7 +2880,7 @@
2880
2880
  "allowed": true
2881
2881
  },
2882
2882
  {
2883
- "at": "2026-05-11T21:34:10.414Z",
2883
+ "at": "2026-05-12T11:17:34.825Z",
2884
2884
  "operation": "create",
2885
2885
  "user": "platform@example.com",
2886
2886
  "groups": [
@@ -2892,7 +2892,7 @@
2892
2892
  "allowed": true
2893
2893
  },
2894
2894
  {
2895
- "at": "2026-05-11T21:34:10.414Z",
2895
+ "at": "2026-05-12T11:17:34.825Z",
2896
2896
  "operation": "create",
2897
2897
  "user": "platform@example.com",
2898
2898
  "groups": [
@@ -2904,7 +2904,7 @@
2904
2904
  "allowed": true
2905
2905
  },
2906
2906
  {
2907
- "at": "2026-05-11T21:34:10.414Z",
2907
+ "at": "2026-05-12T11:17:34.825Z",
2908
2908
  "operation": "create",
2909
2909
  "user": "platform@example.com",
2910
2910
  "groups": [
@@ -2916,7 +2916,7 @@
2916
2916
  "allowed": true
2917
2917
  },
2918
2918
  {
2919
- "at": "2026-05-11T21:34:10.414Z",
2919
+ "at": "2026-05-12T11:17:34.825Z",
2920
2920
  "operation": "create",
2921
2921
  "user": "admin@example.com",
2922
2922
  "groups": [
@@ -2928,7 +2928,7 @@
2928
2928
  "allowed": true
2929
2929
  },
2930
2930
  {
2931
- "at": "2026-05-11T21:34:10.415Z",
2931
+ "at": "2026-05-12T11:17:34.826Z",
2932
2932
  "operation": "create",
2933
2933
  "user": "platform@example.com",
2934
2934
  "groups": [
@@ -2940,7 +2940,7 @@
2940
2940
  "allowed": true
2941
2941
  },
2942
2942
  {
2943
- "at": "2026-05-11T21:34:10.415Z",
2943
+ "at": "2026-05-12T11:17:34.826Z",
2944
2944
  "operation": "create",
2945
2945
  "user": "platform@example.com",
2946
2946
  "groups": [
@@ -3,7 +3,7 @@
3
3
  "description": "Kubernetes-native forge runtime with Argo CD and Krate-managed repository hosting",
4
4
  "package": {
5
5
  "name": "@a5c-ai/krate",
6
- "version": "5.0.1-staging.660d2b90f",
6
+ "version": "5.0.1-staging.efc2092bb",
7
7
  "private": true
8
8
  },
9
9
  "entrypoints": {
@@ -162,7 +162,7 @@
162
162
  "lifecycle": {
163
163
  "project": "Krate",
164
164
  "version": "0.1.0",
165
- "generatedAt": "2026-05-11T21:34:10.424Z",
165
+ "generatedAt": "2026-05-12T11:17:34.835Z",
166
166
  "status": "ready-for-local-development",
167
167
  "components": [
168
168
  {
@@ -464,7 +464,7 @@
464
464
  "ok": true,
465
465
  "assertions": []
466
466
  },
467
- "generatedAt": "2026-05-11T21:34:10.424Z",
467
+ "generatedAt": "2026-05-12T11:17:34.835Z",
468
468
  "controller": {
469
469
  "status": "degraded",
470
470
  "namespace": "krate-org-default",
@@ -618,6 +618,41 @@
618
618
  "method": "POST",
619
619
  "path": "/api/orgs/:org/agents/triggers/process",
620
620
  "purpose": "evaluate an event against trigger rules and dispatch matching agents"
621
+ },
622
+ {
623
+ "method": "POST",
624
+ "path": "/api/orgs/:org/agents/workspaces",
625
+ "purpose": "provision a new agent workspace with worktree and runtime"
626
+ },
627
+ {
628
+ "method": "POST",
629
+ "path": "/api/orgs/:org/agents/workspaces/:name/archive",
630
+ "purpose": "archive an agent workspace and mark it for cleanup"
631
+ },
632
+ {
633
+ "method": "POST",
634
+ "path": "/api/orgs/:org/agents/workspaces/:name/link",
635
+ "purpose": "link a work item to an agent workspace"
636
+ },
637
+ {
638
+ "method": "POST",
639
+ "path": "/api/orgs/:org/agents/memory/query",
640
+ "purpose": "query Company Brain memory with graph and grep search"
641
+ },
642
+ {
643
+ "method": "POST",
644
+ "path": "/api/orgs/:org/agents/memory/imports",
645
+ "purpose": "create a memory import from a babysitter run"
646
+ },
647
+ {
648
+ "method": "GET",
649
+ "path": "/api/orgs/:org/agents/memory/snapshots",
650
+ "purpose": "list memory snapshots for an organization"
651
+ },
652
+ {
653
+ "method": "GET",
654
+ "path": "/api/orgs/:org/agents/memory/repositories",
655
+ "purpose": "list memory repositories for an organization"
621
656
  }
622
657
  ],
623
658
  "metrics": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@a5c-ai/krate",
3
- "version": "5.0.1-staging.660d2b90f",
3
+ "version": "5.0.1-staging.efc2092bb",
4
4
  "description": "a5c.ai Krate: Kubernetes-native forge runtime with Argo CD GitOps and Gitea-backed Git hosting.",
5
5
  "type": "module",
6
6
  "main": "./src/index.js",