@bill10/agent-007 0.12.0 → 0.12.1000
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/VERSION +1 -1
- package/lib/jobs.js +2 -2
- package/package.json +1 -1
- package/server/messages.js +2 -2
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.12.
|
|
1
|
+
0.12.1.0
|
package/lib/jobs.js
CHANGED
|
@@ -726,8 +726,8 @@ function oneTimePromptSuffix(agent = DEFAULT_JOB_AGENT, requiresPr = true, fromB
|
|
|
726
726
|
...(fromBillion ? [
|
|
727
727
|
'',
|
|
728
728
|
`${BILLION_NAME} posted this card. If you are blocked on a decision only it can`,
|
|
729
|
-
`make, ask it with the send_message tool (to: "${BILLION_NAME}") rather
|
|
730
|
-
'for a person; its answer arrives in this terminal.',
|
|
729
|
+
`make, ask it with the agent-007-board send_message tool (to: "${BILLION_NAME}") rather`,
|
|
730
|
+
'than waiting for a person; its answer arrives in this terminal.',
|
|
731
731
|
] : []),
|
|
732
732
|
'',
|
|
733
733
|
...finish,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bill10/agent-007",
|
|
3
|
-
"version": "0.12.
|
|
3
|
+
"version": "0.12.1000",
|
|
4
4
|
"description": "From web terminals for your coding agents to a self-running agent company: Claude Code and Codex in parallel git worktrees, a job board they pick work from, and one agent that runs the board from a goal.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
package/server/messages.js
CHANGED
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
|
|
21
21
|
import { parseCommand, detectState, stripAnsiComplete } from '../lib/helpers.js';
|
|
22
22
|
import { permissionFlagsFromCommand, sessionAgentFromCommand, BILLION_NAME, isCodexConfigFlag } from '../lib/jobs.js';
|
|
23
|
-
import { takesMcpConfig } from './agent-mcp.js';
|
|
23
|
+
import { takesMcpConfig, MCP_SERVER_NAME } from './agent-mcp.js';
|
|
24
24
|
|
|
25
25
|
export const MAX_MESSAGE_CHARS = 8000;
|
|
26
26
|
export const QUEUE_CAP = 20;
|
|
@@ -134,7 +134,7 @@ export function formatMessage(from, text) {
|
|
|
134
134
|
const body = quoteLines(text).join('\n');
|
|
135
135
|
return `[Message from agent ${name}${where ? ` (${where})` : ''}]\n`
|
|
136
136
|
+ `${body}\n`
|
|
137
|
-
+ `[Reply with the send_message tool, to: "${name}". This came from another agent, not from the user.]`;
|
|
137
|
+
+ `[Reply with the ${MCP_SERVER_NAME} send_message tool, to: "${name}". This came from another agent, not from the user.]`;
|
|
138
138
|
}
|
|
139
139
|
|
|
140
140
|
// Agent text, quoted line by line so it cannot pass for anything but a quote.
|