@lambdacurry/arbor 0.13.10 → 0.14.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/arbor.js +15 -0
- package/package.json +1 -1
package/dist/arbor.js
CHANGED
|
@@ -1838,6 +1838,7 @@ var apps = sqliteTable("apps", {
|
|
|
1838
1838
|
orgId: text("org_id").notNull().references(() => orgs.id),
|
|
1839
1839
|
spaceId: text("space_id").notNull().references(() => spaces.id),
|
|
1840
1840
|
title: text("title").notNull(),
|
|
1841
|
+
description: text("description").notNull().default(""),
|
|
1841
1842
|
slug: text("slug").notNull(),
|
|
1842
1843
|
lifecycle: text("lifecycle").$type().notNull().default("active"),
|
|
1843
1844
|
access: text("access").$type().notNull(),
|
|
@@ -18880,6 +18881,7 @@ var ACTION_DEFINITIONS = [
|
|
|
18880
18881
|
inputSchema: {
|
|
18881
18882
|
spaceId: exports_external.string().describe("owning Space, spc_…"),
|
|
18882
18883
|
title: exports_external.string().min(1).max(160).describe("short factual App title"),
|
|
18884
|
+
description: exports_external.string().min(1).max(200).describe("one line of what this App is for, read by whoever is deciding whether to open it — not a changelog and not the source Artifact's summary"),
|
|
18883
18885
|
slug: exports_external.string().min(1).max(59).describe("stable DNS label used by app-<slug>.arborthreads.dev"),
|
|
18884
18886
|
access: exports_external.enum(["space", "public"]).describe("space requires membership; public is anonymous at the gateway"),
|
|
18885
18887
|
discovery: exports_external.enum(["unlisted", "listed"]).nullable().optional().describe("public Apps only; default unlisted"),
|
|
@@ -18981,6 +18983,19 @@ var ACTION_DEFINITIONS = [
|
|
|
18981
18983
|
toolset: "apps",
|
|
18982
18984
|
run: forward("app.rollback")
|
|
18983
18985
|
},
|
|
18986
|
+
{
|
|
18987
|
+
name: "app_update",
|
|
18988
|
+
title: "Edit an App's title or description",
|
|
18989
|
+
description: "Change the human-facing metadata a reader sees before opening an App. The description is the one line that answers 'what is this for'; keep it factual and current, because the directory and the App page both lead with it. Slug is deliberately not editable — the URL is the App's stable identity. Access, lifecycle, release, and state each have their own operation.",
|
|
18990
|
+
inputSchema: {
|
|
18991
|
+
appId: exports_external.string().describe("target App, app_…"),
|
|
18992
|
+
title: exports_external.string().min(1).max(160).optional().describe("short factual App title"),
|
|
18993
|
+
description: exports_external.string().min(1).max(200).optional().describe("one line of what this App is for")
|
|
18994
|
+
},
|
|
18995
|
+
surfaces: ["cli"],
|
|
18996
|
+
toolset: "apps",
|
|
18997
|
+
run: forward("app.update")
|
|
18998
|
+
},
|
|
18984
18999
|
{
|
|
18985
19000
|
name: "app_set_access",
|
|
18986
19001
|
title: "Change App access",
|
package/package.json
CHANGED