@productbrain/mcp 0.0.1-beta.206 → 0.0.1-beta.207
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.
|
@@ -7919,8 +7919,8 @@ function registerSessionTools(server) {
|
|
|
7919
7919
|
server.registerTool(
|
|
7920
7920
|
"session",
|
|
7921
7921
|
{
|
|
7922
|
-
title: "Session",
|
|
7923
|
-
description: "
|
|
7922
|
+
title: "Session \u2014 Low-Level Lifecycle",
|
|
7923
|
+
description: "Low-level session lifecycle management. **For user-facing 'begin a session', call `start_pb` instead** \u2014 it is the canonical opener and handles session start automatically.\n\nThree actions:\n\n- **start**: Low-level \u2014 begin a tracked session for attribution. Most agents should NOT call this directly; use `start_pb` which wraps it with stage-aware context. Use `session start` only for explicit session control (e.g. supersession after CLI work).\n- **close**: End the current session. Records structured data (entries created, modified, relations). If uncommitted drafts exist and wrapup hasn't run, shows a review summary. Run session-wrapup before closing.\n- **status**: Check current session \u2014 active or not, oriented, activity counts.",
|
|
7924
7924
|
inputSchema: sessionSchema,
|
|
7925
7925
|
annotations: { readOnlyHint: false, destructiveHint: false, openWorldHint: false }
|
|
7926
7926
|
},
|
|
@@ -13175,8 +13175,8 @@ function registerOrientTool(server) {
|
|
|
13175
13175
|
server.registerTool(
|
|
13176
13176
|
"orient",
|
|
13177
13177
|
{
|
|
13178
|
-
title: "Orient \u2014
|
|
13179
|
-
description: "
|
|
13178
|
+
title: "Orient \u2014 Task Grounding",
|
|
13179
|
+
description: "Task-grounded context loader. Use AFTER `start_pb` (the canonical session opener) to load governance and context for a specific task. Returns workspace context with a single recommended next action for low-readiness workspaces, or a standup-style briefing for established workspaces.\n\n**Not the session opener.** For 'how do I begin a session' or 'Start PB', call `start_pb` instead. `orient` is for refreshing or scoping context once a session is already underway.\n\nCompleting orientation unlocks write tools for the active session.\n\n**tier:** Controls payload depth. `standard` (default, ~256 KB) is the recommended default. `summary` (~10 KB) for quick mid-session re-orientation. `full` for complete payload when deep context is needed.\n\n**mode:** `full` (default) returns full context. `brief` returns compact summary \u2014 mapped to tier=summary internally. Prefer `tier` for explicit depth control.\n\n**task:** Optional natural-language task description. When provided, returns task-scoped context (scored, relevant entries) in addition to standard orient sections.\n\n**scope:** Optional domain scope. Filters governance entries to those relevant for the specified domain. Authority roots include strategy, product, product-design, engineering, architecture, data, governance, and go-to-market. Child scopes such as product-design/ux, engineering/frontend, data/analytics, and governance/principles are accepted. Legacy internal scopes remain accepted.",
|
|
13180
13180
|
inputSchema: orientSchema,
|
|
13181
13181
|
annotations: { readOnlyHint: true, idempotentHint: true, openWorldHint: false }
|
|
13182
13182
|
},
|
|
@@ -15674,4 +15674,4 @@ export {
|
|
|
15674
15674
|
createProductBrainServer,
|
|
15675
15675
|
initFeatureFlags
|
|
15676
15676
|
};
|
|
15677
|
-
//# sourceMappingURL=chunk-
|
|
15677
|
+
//# sourceMappingURL=chunk-DNZQANRI.js.map
|