create-open-autonomy 2.3.11 → 2.3.12

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-open-autonomy",
3
- "version": "2.3.11",
3
+ "version": "2.3.12",
4
4
  "description": "The default Open Autonomy starter kit: a complete repository that runs its own Hermes agent against the platform, with the SDK wired in. `bun create open-autonomy <dir>` scaffolds one.",
5
5
  "license": "Apache-2.0",
6
6
  "repository": {
package/src/kit.ts CHANGED
@@ -9,7 +9,7 @@
9
9
  import { existsSync, mkdirSync, readFileSync, readdirSync, rmSync, writeFileSync } from 'node:fs';
10
10
  import { dirname, join, relative, resolve } from 'node:path';
11
11
 
12
- export const KIT = { name: 'hermes', version: '2.3.11' } as const;
12
+ export const KIT = { name: 'hermes', version: '2.3.12' } as const;
13
13
  export const KIT_FILE = '.open-autonomy/kit.json';
14
14
  const TEMPLATE = resolve(import.meta.dir, '..', 'template');
15
15
 
@@ -172,7 +172,9 @@ class Followed {
172
172
  const ready = msgs.slice(0, n);
173
173
  const turns = ready.flatMap(turnsOf);
174
174
  if (turns.length) {
175
- this.item ??= itemIn(turns);
175
+ // Only a board run serves an item; a scheduled session (the PM over the whole board) mentions branches and
176
+ // tasks without being about one.
177
+ if (sourceOf(this.d) === 'board') this.item ??= itemIn(turns);
176
178
  this.sha ??= shaIn(turns);
177
179
  await this.session!.turns(turns, this.item);
178
180
  this.seq = this.session!.seq;
@@ -34,7 +34,8 @@ is not done.
34
34
  6. Push the branch: `git push -u origin agent/<task id>`. The landing workflow opens the pull request and merges
35
35
  it when the checks pass. Never wait for it; never open a pull request; never push to `main`; never rewrite
36
36
  history. If the branch exists from an earlier attempt, push to `agent/<task id>-<YYYYMMDD-HHMM>`.
37
- 7. Hand off: `kanban_request_review` naming the branch and the commit, and what is verified how.
37
+ 7. Hand off: `kanban_request_review` naming the branch and the commit, and what is verified how. Name no reviewer:
38
+ the review lane takes the task itself, and a profile the home does not have would hold it forever.
38
39
 
39
40
  If a line cannot be made true from here, `kanban_block` with exactly what is missing, and stop. Never file,
40
41
  split or decompose tasks, and never create one: the board is the owner's. Do not loop on a failure you cannot