@lambdacurry/arbor 0.23.1 → 0.23.2
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 +4 -3
- package/package.json +1 -1
package/dist/arbor.js
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
// package.json
|
|
3
3
|
var package_default = {
|
|
4
4
|
name: "@lambdacurry/arbor",
|
|
5
|
-
version: "0.23.
|
|
5
|
+
version: "0.23.2",
|
|
6
6
|
description: "The Arbor CLI — a shared workspace for people and agents. The human + headless-agent write path over Arbor's guarded operation surface.",
|
|
7
7
|
keywords: [
|
|
8
8
|
"agents",
|
|
@@ -4943,7 +4943,7 @@ var LIFECYCLE_TYPE_DESCRIPTIONS = {
|
|
|
4943
4943
|
};
|
|
4944
4944
|
function transitionThreadActionDescription() {
|
|
4945
4945
|
const types = LIFECYCLE_TYPES.map((type) => `\`${type}\` ${LIFECYCLE_TYPE_DESCRIPTIONS[type]}`).join("; ");
|
|
4946
|
-
return `Move a Thread by key, case-insensitive name, or type (\`--to resolved\` still works as a bare type); illegal jumps rejected
|
|
4946
|
+
return `Move a Thread by key, case-insensitive name, or type (\`--to resolved\` still works as a bare type); illegal jumps rejected; optional \`--rank\`. ${types}; live menu is \`thread_get.transitionsFrom\`.`;
|
|
4947
4947
|
}
|
|
4948
4948
|
var CONTRIBUTION_TYPES = [
|
|
4949
4949
|
"comment",
|
|
@@ -11755,7 +11755,8 @@ var ACTION_DEFINITIONS = [
|
|
|
11755
11755
|
inputSchema: {
|
|
11756
11756
|
threadId: string2().describe("the thread to move, thr_…"),
|
|
11757
11757
|
to: string2().min(1).describe("label key, case-insensitive label name, or bare type (`resolved` still works as a type name)"),
|
|
11758
|
-
reason: string2().optional().describe("optional one-line why, recorded on the event")
|
|
11758
|
+
reason: string2().optional().describe("optional one-line why, recorded on the event"),
|
|
11759
|
+
rank: string2().max(THREAD_RANK_MAX).regex(THREAD_RANK_PATTERN).nullable().optional().describe("LexoRank in the destination column; omit to leave unchanged, null to restore recency. Combined with `--to` this is one atomic write — a bad rank moves nothing")
|
|
11759
11760
|
},
|
|
11760
11761
|
surfaces: ["mcp", "cli"],
|
|
11761
11762
|
toolset: "loop",
|
package/package.json
CHANGED