create-open-autonomy 2.5.0 → 2.5.1
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.5.
|
|
3
|
+
"version": "2.5.1",
|
|
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.5.
|
|
12
|
+
export const KIT = { name: 'hermes', version: '2.5.1' } as const;
|
|
13
13
|
export const KIT_FILE = '.open-autonomy/kit.json';
|
|
14
14
|
const TEMPLATE = resolve(import.meta.dir, '..', 'template');
|
|
15
15
|
|
|
@@ -36,7 +36,10 @@ is not done.
|
|
|
36
36
|
at the handoff. The landing workflow opens the pull request and merges
|
|
37
37
|
it when the checks pass. Never wait for it; never open a pull request; never push to `main`; never rewrite
|
|
38
38
|
history. If the branch exists from an earlier attempt, push to `agent/<task id>-<YYYYMMDD-HHMM>`.
|
|
39
|
-
7. Hand off: `kanban_request_review` naming the branch and the commit, and what is verified how.
|
|
39
|
+
7. Hand off: `kanban_request_review` naming the branch and the commit, and what is verified how. The handoff is the
|
|
40
|
+
only way you end a task: you never run `hermes kanban complete`, `reclaim`, `unblock`, `archive` or `edit` on
|
|
41
|
+
any task, yours included — completing is the review lane's act after it has read your work, and a task you
|
|
42
|
+
complete yourself was never reviewed. Name no reviewer:
|
|
40
43
|
the review lane takes the task itself, and a profile the home does not have would hold it forever. This call is
|
|
41
44
|
how a task ends; a turn that ends without it marks the task done with nothing reviewed, which is never right —
|
|
42
45
|
even when the work is already on main, hand it off.
|