@lambdacurry/arbor 0.6.4 → 0.6.6

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.
Files changed (2) hide show
  1. package/dist/arbor.js +66 -64
  2. package/package.json +1 -1
package/dist/arbor.js CHANGED
@@ -1573,6 +1573,7 @@ var requests = sqliteTable("requests", {
1573
1573
  kind: text("kind").$type().notNull(),
1574
1574
  requestedAction: text("requested_action"),
1575
1575
  aboutContributionId: text("about_contribution_id"),
1576
+ requestedType: text("requested_type").$type(),
1576
1577
  audience: text("audience", { mode: "json" }).$type().notNull(),
1577
1578
  completionPolicy: text("completion_policy", { mode: "json" }).$type().notNull(),
1578
1579
  status: text("status").$type().notNull().default("open"),
@@ -16049,7 +16050,7 @@ var ACTIONS = [
16049
16050
  includeHistorical: exports_external.boolean().optional().describe("include superseded/archived knowledge (default false)")
16050
16051
  },
16051
16052
  surfaces: ["mcp", "cli"],
16052
- tier: "core",
16053
+ toolset: "loop",
16053
16054
  run: forward("knowledge.recall")
16054
16055
  },
16055
16056
  {
@@ -16070,7 +16071,7 @@ var ACTIONS = [
16070
16071
  links: exports_external.array(exports_external.object({ rel: exports_external.enum(CONTRIBUTION_LINK_RELS), targetId: exports_external.string() })).optional().describe("internal typed links: { rel, targetId } (same-space). External refs go IN THE BODY as URLs.")
16071
16072
  },
16072
16073
  surfaces: ["mcp", "cli"],
16073
- tier: "core",
16074
+ toolset: "loop",
16074
16075
  run: forward("contribution.add")
16075
16076
  },
16076
16077
  {
@@ -16083,7 +16084,7 @@ var ACTIONS = [
16083
16084
  summary: exports_external.string().max(300).optional().describe("optional ≤300-char gist — omit to leave unchanged, empty string to clear")
16084
16085
  },
16085
16086
  surfaces: ["mcp", "cli"],
16086
- tier: "core",
16087
+ toolset: "loop",
16087
16088
  run: forward("contribution.update")
16088
16089
  },
16089
16090
  {
@@ -16102,7 +16103,7 @@ var ACTIONS = [
16102
16103
  })).optional().describe("inline @-mentions in the note; person mentions notify")
16103
16104
  },
16104
16105
  surfaces: ["mcp", "cli"],
16105
- tier: "core",
16106
+ toolset: "loop",
16106
16107
  run: forward("review.add")
16107
16108
  },
16108
16109
  {
@@ -16115,7 +16116,7 @@ var ACTIONS = [
16115
16116
  emoji: exports_external.string().min(1)
16116
16117
  },
16117
16118
  surfaces: ["mcp", "cli"],
16118
- tier: "extended",
16119
+ toolset: "loop",
16119
16120
  run: forward("reaction.toggle")
16120
16121
  },
16121
16122
  {
@@ -16128,7 +16129,7 @@ var ACTIONS = [
16128
16129
  purpose: exports_external.string().optional().describe("one line on what belongs here")
16129
16130
  },
16130
16131
  surfaces: ["mcp", "cli"],
16131
- tier: "extended",
16132
+ toolset: "structure",
16132
16133
  run: forward("topic.create")
16133
16134
  },
16134
16135
  {
@@ -16140,7 +16141,7 @@ var ACTIONS = [
16140
16141
  guidance: exports_external.array(exports_external.string()).describe("the full guidance list — replaces the existing one; [] clears it")
16141
16142
  },
16142
16143
  surfaces: ["cli"],
16143
- tier: "extended",
16144
+ toolset: "spaces",
16144
16145
  run: forward("topic.update")
16145
16146
  },
16146
16147
  {
@@ -16154,7 +16155,7 @@ var ACTIONS = [
16154
16155
  objective: exports_external.string().min(1).describe("what settled/done looks like for this thread")
16155
16156
  },
16156
16157
  surfaces: ["mcp", "cli"],
16157
- tier: "core",
16158
+ toolset: "loop",
16158
16159
  run: forward("thread.create")
16159
16160
  },
16160
16161
  {
@@ -16166,7 +16167,7 @@ var ACTIONS = [
16166
16167
  waysToHelp: exports_external.array(exports_external.string()).describe("the full ways-to-help list — replaces the existing one; [] clears it")
16167
16168
  },
16168
16169
  surfaces: ["cli"],
16169
- tier: "extended",
16170
+ toolset: "spaces",
16170
16171
  run: forward("thread.update")
16171
16172
  },
16172
16173
  {
@@ -16179,7 +16180,7 @@ var ACTIONS = [
16179
16180
  reason: exports_external.string().optional().describe("optional one-line why, recorded on the event")
16180
16181
  },
16181
16182
  surfaces: ["mcp", "cli"],
16182
- tier: "core",
16183
+ toolset: "loop",
16183
16184
  run: forward("thread.transition")
16184
16185
  },
16185
16186
  {
@@ -16195,7 +16196,7 @@ var ACTIONS = [
16195
16196
  sourceContributionIds: exports_external.array(exports_external.string()).optional()
16196
16197
  },
16197
16198
  surfaces: ["cli"],
16198
- tier: "extended",
16199
+ toolset: "artifacts",
16199
16200
  run: forward("artifact.create")
16200
16201
  },
16201
16202
  {
@@ -16208,7 +16209,7 @@ var ACTIONS = [
16208
16209
  reason: exports_external.string().optional()
16209
16210
  },
16210
16211
  surfaces: ["cli"],
16211
- tier: "extended",
16212
+ toolset: "artifacts",
16212
16213
  run: forward("artifact.transition")
16213
16214
  },
16214
16215
  {
@@ -16220,7 +16221,7 @@ var ACTIONS = [
16220
16221
  sourceContributionId: exports_external.string().describe("the contribution it's produced by, con_… (must share the attachment's thread)")
16221
16222
  },
16222
16223
  surfaces: ["cli"],
16223
- tier: "extended",
16224
+ toolset: "artifacts",
16224
16225
  run: forward("attachment.promote")
16225
16226
  },
16226
16227
  {
@@ -16231,7 +16232,7 @@ var ACTIONS = [
16231
16232
  contributionId: exports_external.string().describe("the contribution to promote, con_… (its thread + author are derived)")
16232
16233
  },
16233
16234
  surfaces: ["cli"],
16234
- tier: "extended",
16235
+ toolset: "curation",
16235
16236
  run: forward("contribution.promote")
16236
16237
  },
16237
16238
  {
@@ -16242,7 +16243,7 @@ var ACTIONS = [
16242
16243
  contributionId: exports_external.string().describe("the standout contribution to demote, con_…")
16243
16244
  },
16244
16245
  surfaces: ["cli"],
16245
- tier: "extended",
16246
+ toolset: "curation",
16246
16247
  run: forward("contribution.demote")
16247
16248
  },
16248
16249
  {
@@ -16253,7 +16254,7 @@ var ACTIONS = [
16253
16254
  contributionId: exports_external.string().describe("the contribution to remove, con_…")
16254
16255
  },
16255
16256
  surfaces: ["cli"],
16256
- tier: "extended",
16257
+ toolset: "curation",
16257
16258
  run: forward("contribution.delete")
16258
16259
  },
16259
16260
  {
@@ -16264,7 +16265,7 @@ var ACTIONS = [
16264
16265
  contributionId: exports_external.string().describe("the removed contribution to restore, con_…")
16265
16266
  },
16266
16267
  surfaces: ["cli"],
16267
- tier: "extended",
16268
+ toolset: "curation",
16268
16269
  run: forward("contribution.restore")
16269
16270
  },
16270
16271
  {
@@ -16274,6 +16275,7 @@ var ACTIONS = [
16274
16275
  inputSchema: {
16275
16276
  threadId: exports_external.string().describe("the thread the request is in, thr_…"),
16276
16277
  requestedAction: exports_external.string().optional().describe("a one-line 'what you're requesting'"),
16278
+ requestedType: exports_external.enum(CONTRIBUTION_TYPES).optional().describe("the contribution type you're HOPING for (e.g. evidence, decision) — a soft default on the responder's picker, never a constraint; omit for 'any contribution welcome'. Contribution asks only"),
16277
16279
  aboutContributionId: exports_external.string().optional().describe("PASS to request a REVIEW of this contribution (con_…, in the thread; met by a stamp, badges that card). OMIT to request a CONTRIBUTION on the thread (met by a respond)."),
16278
16280
  targetProfileIds: exports_external.array(exports_external.string()).optional().describe("targeted recipients (omit → open board)"),
16279
16281
  completion: exports_external.enum(["first", "quorum", "all-targets", "deadline", "explicit"]),
@@ -16281,7 +16283,7 @@ var ACTIONS = [
16281
16283
  expiresAt: exports_external.string().optional().describe("ISO-8601 deadline (default: 14 days from creation, AD-167)")
16282
16284
  },
16283
16285
  surfaces: ["mcp", "cli"],
16284
- tier: "core",
16286
+ toolset: "loop",
16285
16287
  run: forward("request.create")
16286
16288
  },
16287
16289
  {
@@ -16295,7 +16297,7 @@ var ACTIONS = [
16295
16297
  confidence: exports_external.number().int().min(0).max(100).optional()
16296
16298
  },
16297
16299
  surfaces: ["mcp", "cli"],
16298
- tier: "core",
16300
+ toolset: "loop",
16299
16301
  run: forward("request.respond")
16300
16302
  },
16301
16303
  {
@@ -16307,7 +16309,7 @@ var ACTIONS = [
16307
16309
  contributionId: exports_external.string().describe("the existing contribution that responds to it, con_…")
16308
16310
  },
16309
16311
  surfaces: ["mcp", "cli"],
16310
- tier: "core",
16312
+ toolset: "loop",
16311
16313
  run: forward("request.bind")
16312
16314
  },
16313
16315
  {
@@ -16318,7 +16320,7 @@ var ACTIONS = [
16318
16320
  requestId: exports_external.string().describe("the open request to cancel, req_…")
16319
16321
  },
16320
16322
  surfaces: ["mcp", "cli"],
16321
- tier: "core",
16323
+ toolset: "loop",
16322
16324
  run: forward("request.cancel")
16323
16325
  },
16324
16326
  {
@@ -16330,7 +16332,7 @@ var ACTIONS = [
16330
16332
  ...PAGINATION_INPUT
16331
16333
  },
16332
16334
  surfaces: ["mcp", "cli"],
16333
- tier: "core",
16335
+ toolset: "loop",
16334
16336
  run: forward("inbox.list")
16335
16337
  },
16336
16338
  {
@@ -16341,7 +16343,7 @@ var ACTIONS = [
16341
16343
  inboxItemId: exports_external.string().describe("the inbox item to dismiss, inb_…")
16342
16344
  },
16343
16345
  surfaces: ["mcp", "cli"],
16344
- tier: "core",
16346
+ toolset: "loop",
16345
16347
  run: forward("inbox.dismiss")
16346
16348
  },
16347
16349
  {
@@ -16350,7 +16352,7 @@ var ACTIONS = [
16350
16352
  description: "List the awareness feed of activity involving you — stamps on your work, replies in your threads, @-mentions, and your completed requests — newest first, with an unseen count. Each item carries a triage `class` (AD-182) derived from thread state: `settled-context` (thread resolved — durable context, never live work), `owed-by-me` (an open ask targets you — go to `inbox`, this row is just a pointer), `judgment-available` (your work was engaged in a live thread — an invitation, not an obligation), `closed-loop` (your ask completed), `room-motion` (ambient activity, safely skippable). This is FYI (no response owed); `inbox` remains the only obligation surface.",
16351
16353
  inputSchema: { ...PAGINATION_INPUT },
16352
16354
  surfaces: ["cli"],
16353
- tier: "extended",
16355
+ toolset: "loop",
16354
16356
  run: forward("notification.list")
16355
16357
  },
16356
16358
  {
@@ -16361,7 +16363,7 @@ var ACTIONS = [
16361
16363
  notificationId: exports_external.string().describe("the notification id, ntf_…")
16362
16364
  },
16363
16365
  surfaces: ["cli"],
16364
- tier: "extended",
16366
+ toolset: "loop",
16365
16367
  run: forward("notification.markRead")
16366
16368
  },
16367
16369
  {
@@ -16370,7 +16372,7 @@ var ACTIONS = [
16370
16372
  description: "Mark every unread notification in your feed read in one call; returns how many were cleared. Reach for this to zero out your awareness feed after a catch-up.",
16371
16373
  inputSchema: {},
16372
16374
  surfaces: ["cli"],
16373
- tier: "extended",
16375
+ toolset: "loop",
16374
16376
  run: forward("notification.markAllRead")
16375
16377
  },
16376
16378
  {
@@ -16379,7 +16381,7 @@ var ACTIONS = [
16379
16381
  description: "Return your own Arbor identity (profile + source client) as resolved from your credential. Reach for this to confirm which profile and org you're acting as before you write.",
16380
16382
  inputSchema: {},
16381
16383
  surfaces: ["mcp", "cli"],
16382
- tier: "core",
16384
+ toolset: "loop",
16383
16385
  run: forward("me.get")
16384
16386
  },
16385
16387
  {
@@ -16393,7 +16395,7 @@ var ACTIONS = [
16393
16395
  capabilities: exports_external.array(exports_external.string()).optional().describe("free-form skill tags (≤20, each ≤60 chars) for what you can do — e.g. ['market-research','data-viz']; how teammates route work to you. An empty array clears them.")
16394
16396
  },
16395
16397
  surfaces: ["mcp", "cli"],
16396
- tier: "extended",
16398
+ toolset: "spaces",
16397
16399
  run: forward("me.update")
16398
16400
  },
16399
16401
  {
@@ -16406,7 +16408,7 @@ var ACTIONS = [
16406
16408
  profileId: exports_external.string().optional().describe("admin override — set THIS member's charter instead of your own (org owner/admin only)")
16407
16409
  },
16408
16410
  surfaces: ["cli"],
16409
- tier: "extended",
16411
+ toolset: "spaces",
16410
16412
  run: forward("space.setCharter")
16411
16413
  },
16412
16414
  {
@@ -16419,7 +16421,7 @@ var ACTIONS = [
16419
16421
  contribCursor: exports_external.string().optional().describe("continuation cursor from a previous page's contributionPage.nextCursor")
16420
16422
  },
16421
16423
  surfaces: ["mcp", "cli"],
16422
- tier: "core",
16424
+ toolset: "loop",
16423
16425
  run: forward("thread.get")
16424
16426
  },
16425
16427
  {
@@ -16432,7 +16434,7 @@ var ACTIONS = [
16432
16434
  depth: exports_external.enum(["spaces", "topics", "threads"]).optional().describe("how deep to expand: spaces (just spaces) | topics (default: + topics + light roster) | threads (+ each topic's threads). For one topic's threads or one thread's contributions, prefer topic_get / thread_get.")
16433
16435
  },
16434
16436
  surfaces: ["mcp", "cli"],
16435
- tier: "core",
16437
+ toolset: "loop",
16436
16438
  run: forward("navigation.tree")
16437
16439
  },
16438
16440
  {
@@ -16441,7 +16443,7 @@ var ACTIONS = [
16441
16443
  description: "List everyone in your org — humans and agents — with their profile id, identity, role, and self-declared capabilities. Reach for this to find WHO to route work to: the profile id to @-mention in a contribution, or to target a `request` at a specific person (e.g. request a review from Meg). Read-only.",
16442
16444
  inputSchema: {},
16443
16445
  surfaces: ["mcp", "cli"],
16444
- tier: "core",
16446
+ toolset: "loop",
16445
16447
  run: forward("org.members")
16446
16448
  },
16447
16449
  {
@@ -16452,7 +16454,7 @@ var ACTIONS = [
16452
16454
  spaceId: exports_external.string().describe("the space id to join, e.g. spc_…")
16453
16455
  },
16454
16456
  surfaces: ["cli"],
16455
- tier: "extended",
16457
+ toolset: "spaces",
16456
16458
  run: forward("space.join")
16457
16459
  },
16458
16460
  {
@@ -16463,7 +16465,7 @@ var ACTIONS = [
16463
16465
  spaceId: exports_external.string().describe("the space id to leave, e.g. spc_…")
16464
16466
  },
16465
16467
  surfaces: ["cli"],
16466
- tier: "extended",
16468
+ toolset: "spaces",
16467
16469
  run: forward("space.leave")
16468
16470
  },
16469
16471
  {
@@ -16475,7 +16477,7 @@ var ACTIONS = [
16475
16477
  profileId: exports_external.string().describe("the profile id to add, e.g. prof_… (agent → granted, human → invited)")
16476
16478
  },
16477
16479
  surfaces: ["cli"],
16478
- tier: "extended",
16480
+ toolset: "spaces",
16479
16481
  run: forward("space.addMember")
16480
16482
  },
16481
16483
  {
@@ -16486,7 +16488,7 @@ var ACTIONS = [
16486
16488
  invitationId: exports_external.string().describe("the space invitation id, e.g. sinv_…")
16487
16489
  },
16488
16490
  surfaces: ["cli"],
16489
- tier: "extended",
16491
+ toolset: "spaces",
16490
16492
  run: forward("space.acceptInvite")
16491
16493
  },
16492
16494
  {
@@ -16495,7 +16497,7 @@ var ACTIONS = [
16495
16497
  description: "Discover the OPEN spaces in your org you could join. Each is flagged with whether you're already a member; private spaces are never listed.",
16496
16498
  inputSchema: { ...PAGINATION_INPUT },
16497
16499
  surfaces: ["cli"],
16498
- tier: "extended",
16500
+ toolset: "spaces",
16499
16501
  run: forward("space.listOpen")
16500
16502
  },
16501
16503
  {
@@ -16504,7 +16506,7 @@ var ACTIONS = [
16504
16506
  description: "List your pending space invitations to accept. Reach for this to find an invite, then `accept_space_invite` it.",
16505
16507
  inputSchema: { ...PAGINATION_INPUT },
16506
16508
  surfaces: ["cli"],
16507
- tier: "extended",
16509
+ toolset: "spaces",
16508
16510
  run: forward("space.invites")
16509
16511
  },
16510
16512
  {
@@ -16518,7 +16520,7 @@ var ACTIONS = [
16518
16520
  threadIds: exports_external.array(exports_external.string()).optional().describe("optional threads IN THIS SPACE to link at creation (others are ignored)")
16519
16521
  },
16520
16522
  surfaces: ["cli"],
16521
- tier: "extended",
16523
+ toolset: "goals",
16522
16524
  run: forward("initiative.create")
16523
16525
  },
16524
16526
  {
@@ -16530,7 +16532,7 @@ var ACTIONS = [
16530
16532
  spaceId: exports_external.string().describe("the space to surface it in, spc_… (you must be a member)")
16531
16533
  },
16532
16534
  surfaces: ["cli"],
16533
- tier: "extended",
16535
+ toolset: "goals",
16534
16536
  run: forward("initiative.attachSpace")
16535
16537
  },
16536
16538
  {
@@ -16542,7 +16544,7 @@ var ACTIONS = [
16542
16544
  spaceId: exports_external.string().describe("the space to stop surfacing it in, spc_…")
16543
16545
  },
16544
16546
  surfaces: ["cli"],
16545
- tier: "extended",
16547
+ toolset: "goals",
16546
16548
  run: forward("initiative.detachSpace")
16547
16549
  },
16548
16550
  {
@@ -16554,7 +16556,7 @@ var ACTIONS = [
16554
16556
  initiativeId: exports_external.string().describe("the goal it serves, ini_…")
16555
16557
  },
16556
16558
  surfaces: ["cli"],
16557
- tier: "extended",
16559
+ toolset: "goals",
16558
16560
  run: forward("initiative.linkThread")
16559
16561
  },
16560
16562
  {
@@ -16566,7 +16568,7 @@ var ACTIONS = [
16566
16568
  initiativeId: exports_external.string().describe("the goal to unlink it from, ini_…")
16567
16569
  },
16568
16570
  surfaces: ["cli"],
16569
- tier: "extended",
16571
+ toolset: "goals",
16570
16572
  run: forward("initiative.unlinkThread")
16571
16573
  },
16572
16574
  {
@@ -16577,7 +16579,7 @@ var ACTIONS = [
16577
16579
  id: exports_external.string().describe("the goal, ini_…")
16578
16580
  },
16579
16581
  surfaces: ["cli"],
16580
- tier: "extended",
16582
+ toolset: "goals",
16581
16583
  run: forward("initiative.get")
16582
16584
  },
16583
16585
  {
@@ -16588,7 +16590,7 @@ var ACTIONS = [
16588
16590
  threadId: exports_external.string().describe("the thread to read goals for, thr_…")
16589
16591
  },
16590
16592
  surfaces: ["cli"],
16591
- tier: "extended",
16593
+ toolset: "goals",
16592
16594
  run: forward("initiative.forThread")
16593
16595
  },
16594
16596
  {
@@ -16601,7 +16603,7 @@ var ACTIONS = [
16601
16603
  purpose: exports_external.string().optional().describe("a new one-or-two-line purpose")
16602
16604
  },
16603
16605
  surfaces: ["cli"],
16604
- tier: "extended",
16606
+ toolset: "goals",
16605
16607
  run: forward("initiative.update")
16606
16608
  },
16607
16609
  {
@@ -16613,7 +16615,7 @@ var ACTIONS = [
16613
16615
  status: exports_external.enum(["active", "paused", "completed", "archived"]).describe("the new lifecycle state")
16614
16616
  },
16615
16617
  surfaces: ["cli"],
16616
- tier: "extended",
16618
+ toolset: "goals",
16617
16619
  run: forward("initiative.setStatus")
16618
16620
  },
16619
16621
  {
@@ -16624,7 +16626,7 @@ var ACTIONS = [
16624
16626
  id: exports_external.string().describe("the goal to delete, ini_…")
16625
16627
  },
16626
16628
  surfaces: ["cli"],
16627
- tier: "extended",
16629
+ toolset: "goals",
16628
16630
  run: forward("initiative.delete")
16629
16631
  },
16630
16632
  {
@@ -16638,7 +16640,7 @@ var ACTIONS = [
16638
16640
  memberProfileIds: exports_external.array(exports_external.string()).optional().describe("org profile ids to seed as members — agents added directly, humans get a pending invite")
16639
16641
  },
16640
16642
  surfaces: ["mcp", "cli"],
16641
- tier: "extended",
16643
+ toolset: "structure",
16642
16644
  run: forward("space.create")
16643
16645
  },
16644
16646
  {
@@ -16649,7 +16651,7 @@ var ACTIONS = [
16649
16651
  displayName: exports_external.string().min(1).describe("the agent's display name")
16650
16652
  },
16651
16653
  surfaces: ["cli"],
16652
- tier: "extended",
16654
+ toolset: "admin",
16653
16655
  run: forward("agent.register")
16654
16656
  },
16655
16657
  {
@@ -16662,7 +16664,7 @@ var ACTIONS = [
16662
16664
  orgRole: exports_external.enum(["member", "admin"]).optional().describe("org role (default member)")
16663
16665
  },
16664
16666
  surfaces: ["cli"],
16665
- tier: "extended",
16667
+ toolset: "admin",
16666
16668
  run: forward("human.invite")
16667
16669
  },
16668
16670
  {
@@ -16673,7 +16675,7 @@ var ACTIONS = [
16673
16675
  spaceId: exports_external.string().min(1).describe("the space id")
16674
16676
  },
16675
16677
  surfaces: ["mcp", "cli"],
16676
- tier: "core",
16678
+ toolset: "loop",
16677
16679
  run: forward("space.get")
16678
16680
  },
16679
16681
  {
@@ -16684,7 +16686,7 @@ var ACTIONS = [
16684
16686
  topicId: exports_external.string().min(1).describe("the topic id")
16685
16687
  },
16686
16688
  surfaces: ["mcp", "cli"],
16687
- tier: "core",
16689
+ toolset: "loop",
16688
16690
  run: forward("topic.get")
16689
16691
  },
16690
16692
  {
@@ -16693,7 +16695,7 @@ var ACTIONS = [
16693
16695
  description: "Platform-operator only: list EVERY org on the instance with member + space counts. The entry point for cross-org oversight — start here, then dive into one with `admin org`.",
16694
16696
  inputSchema: { ...PAGINATION_INPUT },
16695
16697
  surfaces: ["cli"],
16696
- tier: "extended",
16698
+ toolset: "admin",
16697
16699
  run: forward("admin.listOrgs")
16698
16700
  },
16699
16701
  {
@@ -16704,7 +16706,7 @@ var ACTIONS = [
16704
16706
  orgId: exports_external.string().min(1).describe("the org id, e.g. org_…")
16705
16707
  },
16706
16708
  surfaces: ["cli"],
16707
- tier: "extended",
16709
+ toolset: "admin",
16708
16710
  run: forward("admin.getOrg")
16709
16711
  },
16710
16712
  {
@@ -16715,7 +16717,7 @@ var ACTIONS = [
16715
16717
  spaceId: exports_external.string().min(1).describe("the space id, e.g. spc_…")
16716
16718
  },
16717
16719
  surfaces: ["cli"],
16718
- tier: "extended",
16720
+ toolset: "admin",
16719
16721
  run: forward("admin.getSpace")
16720
16722
  },
16721
16723
  {
@@ -16726,7 +16728,7 @@ var ACTIONS = [
16726
16728
  topicId: exports_external.string().min(1).describe("the topic id, e.g. top_…")
16727
16729
  },
16728
16730
  surfaces: ["cli"],
16729
- tier: "extended",
16731
+ toolset: "admin",
16730
16732
  run: forward("admin.getTopic")
16731
16733
  },
16732
16734
  {
@@ -16737,7 +16739,7 @@ var ACTIONS = [
16737
16739
  threadId: exports_external.string().min(1).describe("the thread id, e.g. thr_…")
16738
16740
  },
16739
16741
  surfaces: ["cli"],
16740
- tier: "extended",
16742
+ toolset: "admin",
16741
16743
  run: forward("admin.getThread")
16742
16744
  },
16743
16745
  {
@@ -16766,7 +16768,7 @@ var ACTIONS = [
16766
16768
  initiativeId: exports_external.string().optional().describe("link/unlink/attach/detach: the goal, ini_…")
16767
16769
  },
16768
16770
  surfaces: ["mcp"],
16769
- tier: "extended",
16771
+ toolset: "goals",
16770
16772
  run: dispatch({
16771
16773
  get: "initiative.get",
16772
16774
  create: "initiative.create",
@@ -16791,7 +16793,7 @@ var ACTIONS = [
16791
16793
  invitationId: exports_external.string().optional().describe("accept_invite: the invitation, sinv_…")
16792
16794
  },
16793
16795
  surfaces: ["mcp"],
16794
- tier: "extended",
16796
+ toolset: "spaces",
16795
16797
  run: dispatch({
16796
16798
  join: "space.join",
16797
16799
  leave: "space.leave",
@@ -16811,7 +16813,7 @@ var ACTIONS = [
16811
16813
  ...PAGINATION_INPUT
16812
16814
  },
16813
16815
  surfaces: ["mcp"],
16814
- tier: "core",
16816
+ toolset: "loop",
16815
16817
  run: dispatch({
16816
16818
  list: "notification.list",
16817
16819
  read: "notification.markRead",
@@ -16827,7 +16829,7 @@ var ACTIONS = [
16827
16829
  contributionId: exports_external.string().describe("the contribution, con_…")
16828
16830
  },
16829
16831
  surfaces: ["mcp"],
16830
- tier: "extended",
16832
+ toolset: "curation",
16831
16833
  run: dispatch({
16832
16834
  promote: "contribution.promote",
16833
16835
  demote: "contribution.demote",
@@ -16852,7 +16854,7 @@ var ACTIONS = [
16852
16854
  attachmentId: exports_external.string().optional().describe("promote_attachment: the upload, att_…")
16853
16855
  },
16854
16856
  surfaces: ["mcp"],
16855
- tier: "extended",
16857
+ toolset: "artifacts",
16856
16858
  run: dispatch({
16857
16859
  create: "artifact.create",
16858
16860
  transition: "artifact.transition",
@@ -16874,7 +16876,7 @@ var ACTIONS = [
16874
16876
  waysToHelp: exports_external.array(exports_external.string()).optional().describe("ways_to_help: full list, replaces; [] clears")
16875
16877
  },
16876
16878
  surfaces: ["mcp"],
16877
- tier: "extended",
16879
+ toolset: "spaces",
16878
16880
  run: dispatch({
16879
16881
  space_charter: "space.setCharter",
16880
16882
  topic_guidance: "topic.update",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lambdacurry/arbor",
3
- "version": "0.6.4",
3
+ "version": "0.6.6",
4
4
  "description": "The Arbor CLI — a shared workspace for people and agents. The human + headless-agent write path over Arbor's guarded operation surface.",
5
5
  "keywords": [
6
6
  "agents",