@kody-ade/kody-engine 0.4.171 → 0.4.172
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/bin/kody.js
CHANGED
|
@@ -1061,7 +1061,7 @@ var init_loadPriorArt = __esm({
|
|
|
1061
1061
|
// package.json
|
|
1062
1062
|
var package_default = {
|
|
1063
1063
|
name: "@kody-ade/kody-engine",
|
|
1064
|
-
version: "0.4.
|
|
1064
|
+
version: "0.4.172",
|
|
1065
1065
|
description: "kody \u2014 autonomous development engine. Single-session Claude Code agent behind a generic executor + declarative executable profiles.",
|
|
1066
1066
|
license: "MIT",
|
|
1067
1067
|
type: "module",
|
|
@@ -9058,7 +9058,7 @@ var loadJobFromFile = async (ctx, _profile, args) => {
|
|
|
9058
9058
|
const loaded = await backend.load(slug);
|
|
9059
9059
|
ctx.data.jobSlug = slug;
|
|
9060
9060
|
ctx.data.jobTitle = title;
|
|
9061
|
-
ctx.data.jobIntent = body;
|
|
9061
|
+
ctx.data.jobIntent = body.replace(/\{\{\s*mentions\s*\}\}/g, mentions);
|
|
9062
9062
|
ctx.data.jobState = loaded;
|
|
9063
9063
|
ctx.data.jobStateJson = JSON.stringify(loaded.state, null, 2);
|
|
9064
9064
|
ctx.data.workerSlug = workerSlug;
|
|
@@ -10,6 +10,8 @@ The job below assigns you, worker **`{{workerSlug}}`**, as its executor. This pe
|
|
|
10
10
|
|
|
11
11
|
Slug **`{{jobSlug}}`** — *{{jobTitle}}*, assigned to worker **`{{workerSlug}}`**. The job body below is authoritative for *what* to do, *when* (cadence), allowed commands, and state schema. It is human-edited — re-read it every tick. Execute it **as** the persona above.
|
|
12
12
|
|
|
13
|
+
**Addressing the operator.** When the job body tells you to @-mention the operator (e.g. the first line of an inbox recommendation), the exact handle(s) to use are: {{mentions}}. Copy that string **verbatim** — never invent, abbreviate, guess, or retype a GitHub username. A wrong handle silently fails to route to the operator's inbox, so the recommendation is lost. If the line above is blank, the duty declared no operator; post without a mention.
|
|
14
|
+
|
|
13
15
|
### Job body
|
|
14
16
|
|
|
15
17
|
{{jobIntent}}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kody-ade/kody-engine",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.172",
|
|
4
4
|
"description": "kody — autonomous development engine. Single-session Claude Code agent behind a generic executor + declarative executable profiles.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|