@clawos-dev/clawd 0.2.215 → 0.2.216-beta.427.53ed96c
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/cli.cjs +2 -3
- package/package.json +1 -1
package/dist/cli.cjs
CHANGED
|
@@ -41882,8 +41882,7 @@ function buildSpawnContext(state, deps) {
|
|
|
41882
41882
|
const personaId = file.ownerPersonaId;
|
|
41883
41883
|
if (personaId) env.CLAWD_PERSONA_ID = personaId;
|
|
41884
41884
|
const dispatchMcpConfigPath2 = deps.getDispatchMcpConfigPath?.() ?? null;
|
|
41885
|
-
const
|
|
41886
|
-
const ticketMcpConfigPath2 = ticketMcpConfigPathRaw && file.ownerPersonaId === "persona-ticket-manager" ? ticketMcpConfigPathRaw : null;
|
|
41885
|
+
const ticketMcpConfigPath2 = deps.getTicketMcpConfigPath?.() ?? null;
|
|
41887
41886
|
const shiftMcpConfigPath2 = deps.getShiftMcpConfigPath?.() ?? null;
|
|
41888
41887
|
const inboxMcpConfigPath2 = deps.getInboxMcpConfigPath?.() ?? null;
|
|
41889
41888
|
const ctx = {
|
|
@@ -42708,7 +42707,7 @@ var SessionRunner = class {
|
|
|
42708
42707
|
getDispatchMcpConfigPath: this.hooks.getDispatchMcpConfigPath,
|
|
42709
42708
|
getShiftMcpConfigPath: this.hooks.getShiftMcpConfigPath,
|
|
42710
42709
|
getInboxMcpConfigPath: this.hooks.getInboxMcpConfigPath,
|
|
42711
|
-
// Ticket MCP:透传 ticket.mcp.json
|
|
42710
|
+
// Ticket MCP:透传 ticket.mcp.json 路径闭包(所有 persona session 都挂,无 gating)
|
|
42712
42711
|
getTicketMcpConfigPath: this.hooks.getTicketMcpConfigPath,
|
|
42713
42712
|
lookupDispatchByBSessionId: this.hooks.lookupDispatchByBSessionId,
|
|
42714
42713
|
// ReadyGate v2:透传 mode 让 reducer send / ready-detected 分支决定走暂存队列还是直写
|
package/package.json
CHANGED