@etiquekit/etq 1.0.10 → 1.0.11
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/QuickStart.md +2 -1
- package/README.md +2 -6
- package/docs/AGENT_SPAWNING.md +78 -0
- package/docs/ARCHITECTURE.md +5 -5
- package/docs/CODEX_CLIENT_COMPATIBILITY.md +1 -1
- package/docs/CONCEPTS.md +22 -5
- package/docs/CORE_PROFILE.md +4 -2
- package/docs/INTEGRATION_UI.md +215 -0
- package/docs/OPERATOR_PLAYBOOK.md +77 -0
- package/docs/README.md +1 -0
- package/docs/SEAT_PROVISIONING.md +3 -3
- package/docs/TAG_ROUTE.md +95 -0
- package/docs/WORKTREE_QOL.md +6 -0
- package/docs/contracts/ledger-entry/ledger-entry.v0.2.md +1 -1
- package/lib/etiquette-core.js +143 -141
- package/lib/etiquette.js +333 -324
- package/package.json +1 -1
- package/templates/DISPATCH_PREMISES.md +39 -0
- package/templates/etiquette-vanilla-v0/source/control-seat/docs/work/access/ACCESS-ASSURANCE.md +1 -1
- package/templates/etiquette-vanilla-v0/source/control-seat/docs/work/access/workspace-secure-profile.v0.json +1 -1
- package/templates/seat-packs-v0/source/claude-code-seat/README.md +26 -0
- package/templates/seat-packs-v0/source/codex-seat/README.md +14 -0
- package/templates/seat-packs-v0/source/gemini-seat/README.md +20 -0
package/docs/WORKTREE_QOL.md
CHANGED
|
@@ -33,11 +33,17 @@ Agent resume restores conversation context. It does not prove repo context.
|
|
|
33
33
|
After any resume, run:
|
|
34
34
|
|
|
35
35
|
```sh
|
|
36
|
+
etiquette resume check --project "$PWD" --seat <seat> --task <task> --json
|
|
36
37
|
etiquette whereami --project "$PWD" --seat <seat> --task <task>
|
|
37
38
|
git status -sb
|
|
38
39
|
git branch --show-current
|
|
39
40
|
```
|
|
40
41
|
|
|
42
|
+
`resume check` is read-only and fail-closed. It treats the runner resume hash as
|
|
43
|
+
conversation context only, then verifies project, seat, task, lifecycle, and
|
|
44
|
+
session bindings before pickup. If it reports `rebind_required`, use the seat
|
|
45
|
+
rebind and lifecycle skills before reading old session runbooks as assignment.
|
|
46
|
+
|
|
41
47
|
If the runner asks whether to resume in the old session directory or the
|
|
42
48
|
current directory, choose the current directory only when it is the intended
|
|
43
49
|
project worktree for the task. Do not resume a repo-local task inside a global
|
|
@@ -59,7 +59,7 @@ the validator:
|
|
|
59
59
|
- must carry at least one contemporaneous evidence ref among
|
|
60
60
|
`refs.commits`, `refs.receipts`, or `refs.artifacts` — evidence that
|
|
61
61
|
carries its own independent timestamps (git commits are the canonical
|
|
62
|
-
|
|
62
|
+
evidence anchor);
|
|
63
63
|
- authority class must be `advisory` or `audit` — a late entry never mints
|
|
64
64
|
grants or execution authority;
|
|
65
65
|
- one reconciliation entry covering a span with an index artifact is
|