@lambdacurry/arbor 0.21.28 → 0.21.30
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 +7 -3
- package/package.json +1 -1
package/dist/arbor.js
CHANGED
|
@@ -19023,6 +19023,7 @@ function mcpAnnotationsFor(name) {
|
|
|
19023
19023
|
}
|
|
19024
19024
|
|
|
19025
19025
|
// ../actions/src/index.ts
|
|
19026
|
+
var ARBOR_FEEDBACK_INPUT_TYPES = [...ARBOR_FEEDBACK_TYPES, "friction"];
|
|
19026
19027
|
var CONTRIBUTION_ADD_LINK_RELS = [
|
|
19027
19028
|
"cites",
|
|
19028
19029
|
"contests",
|
|
@@ -19031,7 +19032,7 @@ var CONTRIBUTION_ADD_LINK_RELS = [
|
|
|
19031
19032
|
"tracked-as",
|
|
19032
19033
|
"delivered-by"
|
|
19033
19034
|
];
|
|
19034
|
-
var ARBOR_FEEDBACK_GUIDANCE = `ARBOR-SPECIFIC FEEDBACK — File ONE bounded report through \`contribute_arbor_feedback\` when Arbor itself caused meaningful friction: confusing semantics; surprising Arbor UI/MCP/CLI behavior; a missing Arbor capability; repeated Arbor retries; an Arbor-specific workaround; or misleading state, recovery guidance, or ergonomics. Usually do NOT report an ordinary repository bug, a routine GitHub/Cloudflare/provider failure Arbor did not cause or obscure, your own mistake, or generic implementation difficulty. One incident = one report: use one stable idempotencyKey to retry that same logical submission rather than reporting every participating call. Never include raw prompts/transcripts, shell output, command contents, secrets, provider payloads, or arbitrary error dumps. The report lands as its own visible shared Feedback Thread as submitted; the fbk receipt and reviewer-only metadata remain private. \`feedback_status\` reads only a receipt you own, while \`feedback_tree\` → \`feedback_recall\` → \`feedback_thread_get\` browses the shared forum.`;
|
|
19035
|
+
var ARBOR_FEEDBACK_GUIDANCE = `ARBOR-SPECIFIC FEEDBACK — File ONE bounded report through \`contribute_arbor_feedback\` when Arbor itself caused meaningful friction: confusing semantics; surprising Arbor UI/MCP/CLI behavior; a missing Arbor capability; repeated Arbor retries; an Arbor-specific workaround; or misleading state, recovery guidance, or ergonomics. Usually do NOT report an ordinary repository bug, a routine GitHub/Cloudflare/provider failure Arbor did not cause or obscure, your own mistake, or generic implementation difficulty. One incident = one report: use one stable idempotencyKey to retry that same logical submission rather than reporting every participating call. Never include raw prompts/transcripts, shell output, command contents, secrets, provider payloads, or arbitrary error dumps. For this filing, \`type: friction\` is input shorthand for \`critique\`; the stored and shared Contribution type remains \`critique\`. The report lands as its own visible shared Feedback Thread as submitted; the fbk receipt and reviewer-only metadata remain private. \`feedback_status\` reads only a receipt you own, while \`feedback_tree\` → \`feedback_recall\` → \`feedback_thread_get\` browses the shared forum.`;
|
|
19035
19036
|
var ORIENTATION = `Arbor is your team's deliberation room and shared memory — people and agents settle typed work here, and Arbor remembers what's decided. To work well:
|
|
19036
19037
|
|
|
19037
19038
|
${ARBOR_FEEDBACK_GUIDANCE}
|
|
@@ -19310,7 +19311,7 @@ var ACTION_DEFINITIONS = [
|
|
|
19310
19311
|
title: "Contribute feedback about Arbor",
|
|
19311
19312
|
description: "File one bounded report when Arbor itself caused meaningful product or ergonomics friction; not for ordinary repository bugs, obvious provider failures, agent mistakes, or generic implementation difficulty. It immediately creates its own shared Feedback Thread and returns sharedThreadId/sharedContributionId, visibility=shared, and receiptPrivate=true; use one stable idempotencyKey only to retry that same incident.",
|
|
19312
19313
|
inputSchema: {
|
|
19313
|
-
type: exports_external.enum(
|
|
19314
|
+
type: exports_external.enum(ARBOR_FEEDBACK_INPUT_TYPES).optional().describe("the contribution move (default comment); friction is input shorthand stored/shared as critique, while decision is reserved for shared forum curation"),
|
|
19314
19315
|
body: exports_external.string().min(1).describe("the feedback body, shared as submitted in its own Thread"),
|
|
19315
19316
|
summary: exports_external.string().max(500).optional().describe("optional gist, at most 500 characters; also seeds the shared Thread title"),
|
|
19316
19317
|
confidence: exports_external.number().int().min(0).max(100).optional().describe("optional 0–100 confidence"),
|
|
@@ -19321,7 +19322,10 @@ var ACTION_DEFINITIONS = [
|
|
|
19321
19322
|
},
|
|
19322
19323
|
surfaces: ["mcp", "cli"],
|
|
19323
19324
|
toolset: "feedback",
|
|
19324
|
-
run:
|
|
19325
|
+
run: (executor, input) => executor.call("feedback.contribute", {
|
|
19326
|
+
...input,
|
|
19327
|
+
type: input.type === "friction" ? "critique" : input.type
|
|
19328
|
+
})
|
|
19325
19329
|
},
|
|
19326
19330
|
{
|
|
19327
19331
|
name: "feedback_status",
|
package/package.json
CHANGED