claude-tempo 0.2.3 → 0.2.4
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/copilot-bridge.js +12 -8
- package/package.json +1 -1
package/dist/copilot-bridge.js
CHANGED
|
@@ -167,15 +167,19 @@ async function main() {
|
|
|
167
167
|
},
|
|
168
168
|
systemMessage: {
|
|
169
169
|
mode: 'append',
|
|
170
|
-
content: `You are part of the "${config.ensemble}" ensemble
|
|
171
|
-
`
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
170
|
+
content: `You are part of the "${config.ensemble}" ensemble coordinated via Temporal. ` +
|
|
171
|
+
`You have MCP tools available — ALWAYS use these tools directly, NEVER try to run them as shell commands:\n` +
|
|
172
|
+
`- set_name: Set your player name (call this FIRST if instructed)\n` +
|
|
173
|
+
`- ensemble: List active sessions\n` +
|
|
174
|
+
`- cue: Send a message to another player\n` +
|
|
175
|
+
`- set_part: Update your status/description\n` +
|
|
176
|
+
`- listen: Check for pending messages\n` +
|
|
177
|
+
`- recruit: Spawn a new player session\n` +
|
|
178
|
+
`- report: Report to the conductor\n` +
|
|
179
|
+
`- terminate: Terminate a session\n\n` +
|
|
180
|
+
`When you receive a message from another session, treat it like a coworker asking for help — respond promptly using your MCP tools.`,
|
|
178
181
|
},
|
|
182
|
+
excludedTools: ['powershell', 'shell'],
|
|
179
183
|
...(model ? { model } : {}),
|
|
180
184
|
};
|
|
181
185
|
log('Creating Copilot session...');
|