@lumi.ai/runner 0.15.8 → 0.15.9
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.js +2 -2
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -939,7 +939,7 @@ function mcpUrl(config2) {
|
|
|
939
939
|
}
|
|
940
940
|
|
|
941
941
|
// src/version.ts
|
|
942
|
-
var RUNNER_VERSION = true ? "0.15.
|
|
942
|
+
var RUNNER_VERSION = true ? "0.15.9" : "0.0.0-dev";
|
|
943
943
|
|
|
944
944
|
// src/auth.ts
|
|
945
945
|
import { signInWithCustomToken } from "firebase/auth";
|
|
@@ -1556,7 +1556,7 @@ function buildPrompt(ctx, reason, mcpServers = [], tokenRepos, githubUnavailable
|
|
|
1556
1556
|
} else if (reason === "watch") {
|
|
1557
1557
|
preamble = "# Why this session started\n\nOne of your playbooks watches the board, and this task matched it. Nobody assigned it to you and nobody else is working it right now \u2014 you are picking it up.\n\n**Leave it in a status that says what happened.** The board is how the watch decides what still needs attention, so a task you leave in the same status will come back to you on the next scan" + (playbook ? ", which your playbook above is written for." : ".");
|
|
1558
1558
|
} else if (reason === "resume_after_approval") {
|
|
1559
|
-
preamble = "# Why this session started\n\nYou asked a captain for permission and stopped. They have now answered \u2014 their decision is the newest entry in the task activity below. Read it first.\n\n**If they approved it, do that thing now** \u2014 the permission is granted for this task and may be single-use, so do not ask again for the same thing. **If they refused, do not retry and do not look for a way around it**: say what you will do instead, or hand the task back with task_assign.";
|
|
1559
|
+
preamble = "# Why this session started\n\nYou asked a captain for permission and stopped. They have now answered \u2014 their decision is the newest entry in the task activity below. Read it first.\n\n**If they approved it, do that thing now** \u2014 the permission is granted for this task and may be single-use, so do not ask again for the same thing. **If you offered them a choice, the decision names the option they picked** \u2014 act on that one, and do not re-open the question or substitute your own recommendation for their answer. **If they refused, do not retry and do not look for a way around it**: say what you will do instead, or hand the task back with task_assign.";
|
|
1560
1560
|
} else if (reason === "unblocked") {
|
|
1561
1561
|
preamble = '# Why this session started\n\nThis task was blocked and is not any more: everything it was waiting on is now done. Nobody has just assigned it to you \u2014 you have had it all along, and the work has become startable.\n\n**Read "What you were waiting on" below before you do anything else.** It carries what those tasks produced, which is the input this work was held up for; starting without it means redoing or contradicting somebody else' + (playbook ? ", then follow your playbook above." : "'s work.");
|
|
1562
1562
|
} else if (reason === "schedule") {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lumi.ai/runner",
|
|
3
|
-
"version": "0.15.
|
|
3
|
+
"version": "0.15.9",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Lumi Crew runner daemon — claims jobs from your Ships and executes them as headless Claude sessions on your own machine.",
|
|
6
6
|
"//name": "The ONLY package in this monorepo published to the public registry, so it is the one that does not follow the internal @lumi/crew-* convention: `@lumi` is not a scope we own, `@lumi.ai` is (the npm org). The workspace DIRECTORY stays packages/crew/runner — renaming the package is not renaming the folder.",
|