@deftai/directive-content 0.87.0 → 0.88.0
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/.agents/skills/deft-directive-swarm/SKILL.md +1 -996
- package/QUICK-START.md +4 -0
- package/Taskfile.yml +1 -0
- package/UPGRADING.md +24 -2
- package/coding/coding.md +5 -1
- package/commands.md +1 -1
- package/contracts/runtime-authority.md +34 -8
- package/docs/getting-started.md +4 -0
- package/docs/no-deft-directive.md +87 -0
- package/docs/openclaw-agent-host.md +34 -1
- package/docs/product-signal.md +2 -0
- package/docs/writing-ste100.md +53 -0
- package/glossary.md +37 -39
- package/package.json +2 -1
- package/packs/rules/rules-pack-0.1.json +25 -1
- package/packs/skills/skills-pack-0.1.json +24 -24
- package/packs/strategies/strategies-pack-0.1.json +4 -4
- package/skills/deft-directive-setup/SKILL.md +35 -8
- package/skills/deft-directive-swarm/SKILL.md +81 -978
- package/skills/deft-directive-swarm/references/core-ops.md +144 -0
- package/skills/deft-directive-swarm/references/core-phase-0.md +200 -0
- package/skills/deft-directive-swarm/references/core-phase-1-2.md +73 -0
- package/skills/deft-directive-swarm/references/core-phase-3.md +145 -0
- package/skills/deft-directive-swarm/references/core-phase-4.md +71 -0
- package/skills/deft-directive-swarm/references/core-phase-5-6.md +317 -0
- package/skills/deft-directive-swarm/references/host-cursor.md +25 -0
- package/skills/deft-directive-swarm/references/host-generic.md +27 -0
- package/skills/deft-directive-swarm/references/host-grok-build.md +37 -0
- package/skills/deft-directive-swarm/references/host-openclaw.md +70 -0
- package/skills/deft-directive-swarm/references/host-warp.md +37 -0
- package/skills/deft-directive-write-skill/SKILL.md +17 -0
- package/strategies/artifact-guards.md +24 -14
- package/strategies/discuss.md +40 -1
- package/strategies/interview.md +103 -30
- package/strategies/probe.md +27 -1
- package/tasks/engine-invoke.cjs +69 -13
- package/tasks/engine-invoke.test.cjs +188 -0
- package/tasks/verify.yml +7 -0
- package/templates/agent-prompt-preamble.md +6 -0
- package/vbrief/vbrief.md +4 -2
package/QUICK-START.md
CHANGED
|
@@ -153,6 +153,10 @@ Read and follow `../AGENTS.md`. This starts the normal first-session flow (user
|
|
|
153
153
|
|
|
154
154
|
**OpenClaw agent-host pointer:** Running Directive under OpenClaw persistent-memory agents? See [docs/openclaw-agent-host.md](./docs/openclaw-agent-host.md) for Control UI / identity notes, the executable babysit path (installed review-cycle skill), and the epic babysit → `sessions_spawn` Approach 1 expectation — skill and register contracts stay in shipped skills (#2877 / epic #2874).
|
|
155
155
|
|
|
156
|
+
**Writing pointer:** For docs, issues, and PR prose that maintainers or agents author, follow [docs/writing-ste100.md](./docs/writing-ste100.md) (short controlled English; #2927).
|
|
157
|
+
|
|
158
|
+
**Opt-out pointer:** Projects that must not use Directive should commit root [`.no-deft-directive`](./docs/no-deft-directive.md) so session/doctor/init/setup skip install and ritual (#2926).
|
|
159
|
+
|
|
156
160
|
**Contributor pointer (non-blocking):** Working on Deft itself (a `deftai/directive` source checkout)? See [CONTRIBUTING.md](../CONTRIBUTING.md) and use the maintainer install path (`deft-install --yes --upgrade --maintainer --repo-root . --json`). The repo's root `AGENTS.md` has contributor instructions — you do not need the consumer first-session flow above.
|
|
157
161
|
|
|
158
162
|
## Update notifications
|
package/Taskfile.yml
CHANGED
package/UPGRADING.md
CHANGED
|
@@ -8,7 +8,29 @@ Legend (from RFC2119): !=MUST, ~=SHOULD, ≉=SHOULD NOT, ⊗=MUST NOT, ?=MAY.
|
|
|
8
8
|
|
|
9
9
|
<!-- xbrief-backcompat-2111 -->
|
|
10
10
|
|
|
11
|
-
|
|
11
|
+
### xBRIEF rename (#2034 / #2110 / #2907)
|
|
12
|
+
|
|
13
|
+
> **Single authoritative rename/history note.** Public product voice uses **xBRIEF** / `xbrief/` only. **vBRIEF** is **legacy**.
|
|
14
|
+
|
|
15
|
+
| Legacy (historical) | Current public canon |
|
|
16
|
+
| --- | --- |
|
|
17
|
+
| `vbrief/` lifecycle root | `xbrief/` |
|
|
18
|
+
| `*.vbrief.json` | `*.xbrief.json` |
|
|
19
|
+
| `vBRIEF` / “scope vBRIEF” in guidance | `xBRIEF` / “scope xBRIEF” |
|
|
20
|
+
| `x-vbrief/*` reference tokens | `x-xbrief/*` (and migrate-accepted legacy tokens) |
|
|
21
|
+
| `task vbrief:*` / `migrate:vbrief` aliases | Prefer `task xbrief:*` / `deft migrate:xbrief`; keep `vbrief:*` only as deprecated aliases when required for back-compat |
|
|
22
|
+
| Envelope keys `vBRIEFInfo` | `xBRIEFInfo` (legacy keys still read-accepted on unmigrated files) |
|
|
23
|
+
|
|
24
|
+
**Why two names existed:** consumer layout and disk SoT moved to `xbrief/` while docs, glossary, and marketing still taught vBRIEF as current. That dual present-day naming is retired (#2907). Schema lineage, fixtures, migrate paths, changelog history, and archive prose may still say vBRIEF — always as **legacy/historical**, never as competing current guidance.
|
|
25
|
+
|
|
26
|
+
**What to do:**
|
|
27
|
+
|
|
28
|
+
1. Prefer `xbrief/` and `.xbrief.json` in all new docs, skills, CLI help, and agent prose.
|
|
29
|
+
2. On projects still on disk under `vbrief/`, run `deft migrate:xbrief` (or `task migrate:xbrief`). `deft doctor` and `deft update` signpost unmigrated layouts.
|
|
30
|
+
3. Do **not** tell users to “prefer vBRIEF” or treat xbrief and vBRIEF as two current models.
|
|
31
|
+
4. Deep schema conventions still live under `content/vbrief/` (path name is historical for the schema package); public work-state name remains xBRIEF.
|
|
32
|
+
|
|
33
|
+
Refs: [#2034](https://github.com/deftai/directive/issues/2034), [#2110](https://github.com/deftai/directive/issues/2110), [#2907](https://github.com/deftai/directive/issues/2907).
|
|
12
34
|
|
|
13
35
|
---
|
|
14
36
|
|
|
@@ -927,7 +949,7 @@ After you update `deft/` to v0.20.0, `vbrief/*.vbrief.json` files are the source
|
|
|
927
949
|
- [docs/BROWNFIELD.md](./docs/BROWNFIELD.md) — detailed brownfield adoption / migration walkthrough.
|
|
928
950
|
- [QUICK-START.md](./QUICK-START.md) — agent-facing bootstrap + upgrade detection.
|
|
929
951
|
- [vbrief/vbrief.md](./vbrief/vbrief.md) — canonical vBRIEF file taxonomy.
|
|
930
|
-
- [glossary.md](./glossary.md) — canonical v0.20 vocabulary (Scope
|
|
952
|
+
- [glossary.md](./glossary.md) — canonical xBRIEF / v0.20+ vocabulary (Scope xBRIEF, lifecycle folder, canonical narrative keys, rendered export, source of truth; vBRIEF marked legacy).
|
|
931
953
|
- [CHANGELOG.md](../CHANGELOG.md) — full v0.20.0 change list.
|
|
932
954
|
|
|
933
955
|
---
|
package/coding/coding.md
CHANGED
|
@@ -125,9 +125,12 @@ This rule is the OPERATIONAL complement to the EPISTEMIC honesty rules elsewhere
|
|
|
125
125
|
- ⊗ MUST NOT use successful-sounding completion phrasing to paper over uncertainty -- default to surfacing uncertainty, not hiding it
|
|
126
126
|
- ⊗ MUST NOT suppress error output (`2>$null`, `2>/dev/null`, `try/except: pass` around the verification command) and then claim completion based on the resulting silence
|
|
127
127
|
|
|
128
|
+
- ! Before claiming "feature complete", "ready for real users", "production-ready", or equivalent area-complete language for a surface that has open graduations (Now+Later dual-path locks; #2899), MUST name the open `graduationRef`s, **or** explicitly state that graduation review was skipped and why — otherwise the claim is outcome-blind under this rule
|
|
129
|
+
- ⊗ MUST NOT claim "feature complete" / "production-ready" / "ready for real users" for an area with open graduations without naming those `graduationRef`s or an explicit skip-with-reason
|
|
130
|
+
|
|
128
131
|
The rule applies to agent completion claims during task execution. It applies equally to claims to the user, claims in commit messages, claims in PR bodies, claims in CHANGELOG entries, and claims in status messages to a parent agent. A short, honest "the migration completed; I did not verify the per-record count" is strictly preferred over a confident "migration completed successfully" that hides the gap.
|
|
129
132
|
|
|
130
|
-
**Cross-references:** `## Quality Standards` above (`⊗ Claim checks passed without running them` -- the sibling rule that this expands from process to outcome); `hygiene.md` `## Error Handling: No Hiding` (the same hiding pattern at the code-write level, not the claim level); `skills/deft-directive-pre-pr/SKILL.md` (pre-PR verification claims); `skills/deft-directive-build/SKILL.md` Step 4 Quality Gates (task-completion claims); `skills/deft-directive-review-cycle/SKILL.md` (the review-cycle skill explicitly checks for hidden incompleteness in fix-batch completion claims).
|
|
133
|
+
**Cross-references:** strategies discuss/probe Graduation dual-path locks (#2899); `## Quality Standards` above (`⊗ Claim checks passed without running them` -- the sibling rule that this expands from process to outcome); `hygiene.md` `## Error Handling: No Hiding` (the same hiding pattern at the code-write level, not the claim level); `skills/deft-directive-pre-pr/SKILL.md` (pre-PR verification claims); `skills/deft-directive-build/SKILL.md` Step 4 Quality Gates (task-completion claims); `skills/deft-directive-review-cycle/SKILL.md` (the review-cycle skill explicitly checks for hidden incompleteness in fix-batch completion claims).
|
|
131
134
|
|
|
132
135
|
## Calling LLM APIs (#481)
|
|
133
136
|
|
|
@@ -231,5 +234,6 @@ See [debugging.md](debugging.md) for the full four-phase process, evidence disci
|
|
|
231
234
|
- ⊗ Circular imports between modules
|
|
232
235
|
- ⊗ Duplicate logic across 2+ call sites without shared abstraction
|
|
233
236
|
- ⊗ Outcome-blind completion claims: "tests pass" with skipped tests, "migration completed" without per-record counts, "feature works" without naming the verified edge case (#1006 -- see `## Fail Loud` above)
|
|
237
|
+
- ⊗ Outcome-blind "feature complete" / "production-ready" claims that ignore open graduations (`graduationRef`s) without naming them or an explicit skip (#2899 / #1006 -- see `## Fail Loud` above)
|
|
234
238
|
- ⊗ Averaging contradicting codebase patterns: writing new code that satisfies both of two conflicting patterns simultaneously (#1005 -- see `hygiene.md` `## Surface Conflicts`)
|
|
235
239
|
- ⊗ Debugging by guess-and-check: fixing before reproducing, treating the first plausible hypothesis as confirmed, or presenting a duration/exit-status as a root cause (#1621 -- see `debugging.md`)
|
package/commands.md
CHANGED
|
@@ -218,7 +218,7 @@ When the workflow needs an Approach 1 monitor, scope the Cursor leaf `stop-at: p
|
|
|
218
218
|
- **Compact re-arm (#2113):** Cursor `preCompact` and Claude/Grok `PreCompact`/`PostCompact` call `deft-hook --event session.compact` to mark the gated session ritual stale after context compaction/resume; the existing PreToolUse gate then denies direct writes until `deft session:start` and `deft verify:session-ritual -- --tier=gated`. Codex has no native compact hook — operators must re-run the mutation ritual manually after compaction.
|
|
219
219
|
- Codex project hooks are trust-gated by Codex. Directive verifies only that the registrations are structurally current; after an install or changed hook hash, open `/hooks` in Codex and review/approve the project hook commands. Runtime trust cannot be inferred from the file alone.
|
|
220
220
|
- Directive writes only `.codex/hooks.json`; it does not parse or modify `.codex/config.toml`. Codex can also load inline hooks from `config.toml`, so avoid defining duplicate Directive commands there or they may run more than once. See the [Codex hooks documentation](https://learn.chatgpt.com/docs/hooks).
|
|
221
|
-
- The P0 hook slice does not classify shell-mediated writes,
|
|
221
|
+
- The P0 hook slice does not classify shell-mediated *file* writes, richer unified-exec calls, or WebSearch by default. **Runtime authority (#1394 / #2711)** adds opt-in path allow/deny lists and graduated `scopes` (`edits`, `push`, `merge`) under `plan.policy.runtimeAuthority` — inspect with `deft policy:show --field=runtimeAuthority`. When `enabled: true`, PreToolUse denies classifiable direct-write targets outside `allowPaths` or matching `denyPaths` after ritual/scope/read-only gates; `scopes.edits` gates all direct writes. `scopes.push` / `scopes.merge` deny classifiable Shell/Bash (`git push`, `gh pr merge`) and classifiable MCP push/merge tool names; unclassifiable shell/MCP calls fail open (see `content/contracts/runtime-authority.md`).
|
|
222
222
|
|
|
223
223
|
## Session-start ritual (#1149)
|
|
224
224
|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Runtime authority policy (#1394)
|
|
1
|
+
# Runtime authority policy (#1394 / #2711)
|
|
2
2
|
|
|
3
3
|
Typed session-level enforcement under `plan.policy.runtimeAuthority` in `xbrief/PROJECT-DEFINITION.xbrief.json`.
|
|
4
4
|
|
|
@@ -10,8 +10,8 @@ Typed session-level enforcement under `plan.policy.runtimeAuthority` in `xbrief/
|
|
|
10
10
|
| `allowPaths` | `[]` | Empty = allow all paths (when enabled) |
|
|
11
11
|
| `denyPaths` | `[]` | Deny wins over allow |
|
|
12
12
|
| `scopes.edits` | `true` | Direct Write/Edit/StrReplace tools |
|
|
13
|
-
| `scopes.push` | `false` |
|
|
14
|
-
| `scopes.merge` | `false` |
|
|
13
|
+
| `scopes.push` | `false` | Shell/Bash `git push` and classifiable MCP push tools (#2711) |
|
|
14
|
+
| `scopes.merge` | `false` | Shell/Bash `gh pr merge` and classifiable MCP merge tools (#2711) |
|
|
15
15
|
|
|
16
16
|
## Path globs
|
|
17
17
|
|
|
@@ -20,10 +20,38 @@ Gitignore-style globs via the shared `matchPath` helper (`src/**`, `**/AGENTS.md
|
|
|
20
20
|
## Evaluation order (PreToolUse)
|
|
21
21
|
|
|
22
22
|
1. Ritual / scope / read-only / spawn gates (existing #2438 / #1185 stack)
|
|
23
|
-
2. Runtime authority path + `scopes.edits`
|
|
23
|
+
2. Runtime authority path + `scopes.edits` for direct-write tools
|
|
24
|
+
3. Runtime authority `scopes.push` / `scopes.merge` for Shell/Bash and classifiable MCP tools (#2711)
|
|
24
25
|
|
|
25
26
|
Policy load failures fail open (host crash behavior unchanged).
|
|
26
27
|
|
|
28
|
+
## Shell / MCP classification (#2711)
|
|
29
|
+
|
|
30
|
+
When `enabled: true`:
|
|
31
|
+
|
|
32
|
+
| Classified as | Examples | Scope |
|
|
33
|
+
| --- | --- | --- |
|
|
34
|
+
| **push** | `git push …`, `git -C <path> push`, env-prefixed `FOO=1 git push`, after `&&` / `;` / `\|` | `scopes.push` |
|
|
35
|
+
| **merge** | `gh pr merge …`, `gh.exe pr merge …` | `scopes.merge` |
|
|
36
|
+
| **MCP merge** | tool names matching `merge_pull_request`, `pr_merge`, … | `scopes.merge` |
|
|
37
|
+
| **MCP push** | tool names matching `git_push`, `push_branch`, … | `scopes.push` |
|
|
38
|
+
|
|
39
|
+
**Fail open (allow)** when:
|
|
40
|
+
|
|
41
|
+
- the tool is Shell/MCP but the command/tool name is **not** classifiable as push or merge (e.g. `git status`, unrelated MCP tools)
|
|
42
|
+
- the host payload omits a command string
|
|
43
|
+
- policy load throws
|
|
44
|
+
|
|
45
|
+
**Install note:** agent-host PreToolUse deposits include a Shell/Bash matcher (`SHELL_HOOK_MATCHER`) so classifiable shell ops reach `hook:dispatch` (#2711). MCP tools are classified when the host invokes the hook for that tool name; hosts that never fire PreToolUse for MCP remain a residual gap.
|
|
46
|
+
|
|
47
|
+
**Not enforced** (document as residual host gap):
|
|
48
|
+
|
|
49
|
+
- WebSearch / non-shell non-MCP tools
|
|
50
|
+
- Obfuscated shell (`bash -c "$(echo Z2l0IHB1c2g=|base64 -d)"`) — not a complete substitute for Tier-2 git hooks
|
|
51
|
+
- Every MCP host spelling — only patterns above; unknown MCP tools fail open
|
|
52
|
+
- MCP tools on hosts that do not install/subscribe a PreToolUse matcher for those tool names
|
|
53
|
+
Tier-2 git hooks remain authoritative for commit/push on the working tree. This layer is session-time PreToolUse only.
|
|
54
|
+
|
|
27
55
|
## Inspection
|
|
28
56
|
|
|
29
57
|
```bash
|
|
@@ -47,8 +75,6 @@ deft policy:show --field=runtimeAuthority
|
|
|
47
75
|
}
|
|
48
76
|
```
|
|
49
77
|
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
- Shell/Bash `git push`, `gh pr merge`, MCP mutations — not on the direct-write PreToolUse matcher today. `scopes.push` / `scopes.merge` are reserved for a follow-on Shell matcher (#1394 phase 2).
|
|
78
|
+
With that shape, a PreToolUse `Bash` / `Shell` invocation of `git push` or `gh pr merge` is denied when the matching scope is `false`.
|
|
53
79
|
|
|
54
|
-
Refs #2437 Core T1 Wave C.
|
|
80
|
+
Refs #2437 Core T1 Wave C residual, #2711, #2948 Wave 0.
|
package/docs/getting-started.md
CHANGED
|
@@ -141,3 +141,7 @@ Full command reference for every triage and cache verb lives in [`commands.md`
|
|
|
141
141
|
<!-- TODO: Cover AGENTS.md, skill routing, Warp Drive integration, and cloud agent dispatch -->
|
|
142
142
|
|
|
143
143
|
**OpenClaw:** If your agent host is OpenClaw (persistent-memory agents, Control UI, `sessions_spawn`), read [openclaw-agent-host.md](./openclaw-agent-host.md) for the host mental model, executable babysit path (installed skills), and the epic babysit → `sessions_spawn` Approach 1 expectation. Skill gate text remains in `deft-directive-review-cycle` / `deft-directive-swarm` — the host doc only points.
|
|
144
|
+
|
|
145
|
+
**Writing:** For docs, issues, and PR prose, follow [writing-ste100.md](./writing-ste100.md) (short controlled English; #2927).
|
|
146
|
+
|
|
147
|
+
**Opt out:** To mark a repo as not using Directive, add root [`.no-deft-directive`](./no-deft-directive.md) (#2926). Tools skip install and session ritual when that file is present.
|
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
# Opt out with `.no-deft-directive`
|
|
2
|
+
|
|
3
|
+
Some projects should not use Deft Directive. Use a **root file flag** so tools and agents stop offering install, session ritual, and setup.
|
|
4
|
+
|
|
5
|
+
Tracker: [#2926](https://github.com/deftai/directive/issues/2926).
|
|
6
|
+
|
|
7
|
+
## Filename and location
|
|
8
|
+
|
|
9
|
+
```text
|
|
10
|
+
.no-deft-directive
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
- **Exact name:** lowercase `.no-deft-directive`
|
|
14
|
+
- **Location:** project / workspace **root only** (the root the agent or CLI opened)
|
|
15
|
+
- **Content:** empty file or a short `#` comment. Presence is the flag. No schema.
|
|
16
|
+
|
|
17
|
+
~ Commit the flag. Opt-out is a project decision other clones should see.
|
|
18
|
+
|
|
19
|
+
## Behavior
|
|
20
|
+
|
|
21
|
+
| Condition | Behavior |
|
|
22
|
+
|-----------|----------|
|
|
23
|
+
| Flag **present** | Directive **off** for this project. Do not install. Do not run session ritual (CLI `session:start` **and** installed host SessionStart hooks). Do not offer setup. |
|
|
24
|
+
| Flag **absent**, no deposit | Tools **may** ask whether to install. On decline, create the flag. On enable, install and do **not** create the flag. |
|
|
25
|
+
| Operator stops using DD | Create `.no-deft-directive`. Do **not** auto-delete an existing deposit. |
|
|
26
|
+
| Operator starts using DD | Remove the flag, then run `directive init` or `directive update` so install is present. |
|
|
27
|
+
|
|
28
|
+
One-line message when tools honor the flag:
|
|
29
|
+
|
|
30
|
+
```text
|
|
31
|
+
Directive disabled via `.no-deft-directive`
|
|
32
|
+
```
|
|
33
|
+
|
|
34
|
+
## Inconsistent state (flag + deposit)
|
|
35
|
+
|
|
36
|
+
If **both** `.no-deft-directive` and a deposit (`.deft/core`) exist:
|
|
37
|
+
|
|
38
|
+
- **Doctor:** **warns** and exits dirty (exit 1)
|
|
39
|
+
- **`session:start`:** short-circuits with the disabled message plus the inconsistency warning (exit 1)
|
|
40
|
+
- **Host SessionStart hooks:** skip ritual bookkeeping (allow with `session-start-disabled`); never write `.deft/last-session.json` under opt-out
|
|
41
|
+
- **`init` / `update`:** **fail closed** (no scaffold/refresh)
|
|
42
|
+
|
|
43
|
+
**Product choice (v1):** warn in doctor; fail closed on mutating install paths (`warn-and-fail-closed`).
|
|
44
|
+
|
|
45
|
+
Fix by either:
|
|
46
|
+
|
|
47
|
+
1. Removing the flag if the project should use Directive, or
|
|
48
|
+
2. Removing the deposit if opt-out is intentional (explicit cleanup only — tools do not delete `.deft/` when creating the flag)
|
|
49
|
+
|
|
50
|
+
## Local flag wins (v1)
|
|
51
|
+
|
|
52
|
+
The root flag **wins locally** over ambient trusted-org / product-signal force-on. Org defaults must not override a committed opt-out without an explicit product decision beyond v1.
|
|
53
|
+
|
|
54
|
+
## CLI helpers (optional)
|
|
55
|
+
|
|
56
|
+
```bash
|
|
57
|
+
directive policy:disable-directive [--project-root .] [--note "reason"]
|
|
58
|
+
directive policy:enable-directive [--project-root .]
|
|
59
|
+
```
|
|
60
|
+
|
|
61
|
+
- `disable-directive` creates the flag (optional `--note` becomes a `#` comment)
|
|
62
|
+
- `enable-directive` removes the flag and tells you to ensure install
|
|
63
|
+
|
|
64
|
+
Presence detection is the core contract. CLI helpers are convenience only.
|
|
65
|
+
|
|
66
|
+
## Setup skill contract
|
|
67
|
+
|
|
68
|
+
When `deft-directive-setup` runs:
|
|
69
|
+
|
|
70
|
+
1. ! Check for root `.no-deft-directive` **before** any install or interview phase
|
|
71
|
+
2. ! If present → stop with `Directive disabled via \`.no-deft-directive\``
|
|
72
|
+
3. ? If absent and no deposit → ask the human whether to use Directive
|
|
73
|
+
4. ! On decline → create `.no-deft-directive` and stop
|
|
74
|
+
5. ! On enable / “start using DD” → remove the flag and ensure install
|
|
75
|
+
|
|
76
|
+
## Non-goals / follow-ups
|
|
77
|
+
|
|
78
|
+
- ⊗ Auto-delete `.deft/` when creating the flag
|
|
79
|
+
- ⊗ Org-wide ban (this is per-project filesystem only)
|
|
80
|
+
- ⊗ Nested monorepo package roots (v1 is workspace root only; multi-package monorepo rules are a follow-up)
|
|
81
|
+
- ⊗ Host personality / who may approve gates
|
|
82
|
+
|
|
83
|
+
## Related
|
|
84
|
+
|
|
85
|
+
- [getting-started.md](./getting-started.md) — install and first project
|
|
86
|
+
- [product-signal.md](./product-signal.md) — optional partner signal (defaults off; flag still wins locally)
|
|
87
|
+
- `session:start`, `doctor`, `directive init`, `directive update`
|
|
@@ -33,7 +33,7 @@ OpenClaw’s native background-spawn tool is **`sessions_spawn`**. Operator inte
|
|
|
33
33
|
|
|
34
34
|
! Gate tiers, allowed register primitives, dispatch detection, and review Approaches are defined **only** in shipped skill + engine text:
|
|
35
35
|
|
|
36
|
-
- Swarm capability matrix + launch path: [`skills/deft-directive-swarm/SKILL.md`](../skills/deft-directive-swarm/SKILL.md) (
|
|
36
|
+
- Swarm capability matrix + launch path: [`skills/deft-directive-swarm/SKILL.md`](../skills/deft-directive-swarm/SKILL.md) (thin skill: detect + route table) and OpenClaw adapter [`skills/deft-directive-swarm/references/host-openclaw.md`](../skills/deft-directive-swarm/references/host-openclaw.md) (Step 2f launch, worktree-before-spawn #2929, phase handoff #2934, parent-monitor tool-first after announce #2943). Skill text remains source of truth.
|
|
37
37
|
- PR babysit / shepherd / watch: [`skills/deft-directive-review-cycle/SKILL.md`](../skills/deft-directive-review-cycle/SKILL.md) → **Review Monitoring**.
|
|
38
38
|
- Provider-neutral dispatch envelope: [`templates/agent-prompt-preamble.md`](../templates/agent-prompt-preamble.md).
|
|
39
39
|
- Review-owner lease: `task review-monitor:register` / `task verify:review-monitor` (only `--platform-primitive` values those commands accept in your install).
|
|
@@ -117,6 +117,36 @@ OpenClaw agents often act under a **bot / service identity** (e.g. `ape-deft`-cl
|
|
|
117
117
|
|
|
118
118
|
---
|
|
119
119
|
|
|
120
|
+
|
|
121
|
+
---
|
|
122
|
+
|
|
123
|
+
## Swarm on OpenClaw (#2929 / #2934 / #2943)
|
|
124
|
+
|
|
125
|
+
! For **parallel** swarm leaves on OpenClaw:
|
|
126
|
+
|
|
127
|
+
1. Create worktrees (or consume a worktree-map) **before** any `sessions_spawn`.
|
|
128
|
+
2. Set each worker cwd to that worktree — not the shared repo root.
|
|
129
|
+
3. Prefer `task swarm:launch` + manifest; DIY multi-leaf `sessions_spawn` without worktree prep is forbidden.
|
|
130
|
+
|
|
131
|
+
! After a coding cohort completes, dispatch the next phase with a **real tool call in the same turn**, or write explicit terminal status (`blocked` / `awaiting-human` / `done`). Do not end on narrative-only “I will spawn…”.
|
|
132
|
+
|
|
133
|
+
### Parent-monitor after `subagent_announce` (#2943)
|
|
134
|
+
|
|
135
|
+
OpenClaw parents can lock into a **text-only repetition hang** after thin leaf completions: the model regenerates the same “checking worktrees / open PRs next” sentence with **zero tool calls** until length cap or abort. Subagents may still be healthy; only the parent appears hung.
|
|
136
|
+
|
|
137
|
+
! After any leaf completion event (`subagent_announce` / parent-push completion), the parent’s **first response** MUST be **tool-first** or **yield**:
|
|
138
|
+
|
|
139
|
+
1. **Tool-first ground-truth batch** — one same-turn tool batch that inspects reality (`gh` PR/issue status, `git` / worktree status, or file/xBRIEF state), **or**
|
|
140
|
+
2. **`sessions_yield`** (or host equivalent yield) — leave the turn steerable without narrating unfinished work.
|
|
141
|
+
|
|
142
|
+
⊗ Open the first response after announce with multi-sentence progress-only prose (“Two leaves look unfinished…”, “Checking worktrees next…”, “Implementing both myself…”) and **zero** tool calls / yield.
|
|
143
|
+
|
|
144
|
+
! **Thin DONE = failed leaf:** a completion without PR URL / merge evidence (and without a structured `BLOCKED` / `FAILED` terminal) is **not** success. Treat as failed: re-dispatch or take over after the ground-truth batch. Do not celebrate thin DONE as shipped.
|
|
145
|
+
|
|
146
|
+
~ Prefer structured completion fields when present (`prUrl`, `mergeStatus`, `emptyDiff`); never model free-text thin DONE as success.
|
|
147
|
+
|
|
148
|
+
Full rules: [`skills/deft-directive-swarm/references/host-openclaw.md`](../skills/deft-directive-swarm/references/host-openclaw.md), thin swarm SKILL hard-gates, and [`templates/agent-prompt-preamble.md`](../templates/agent-prompt-preamble.md) §11. This page does not fork a second source of truth.
|
|
149
|
+
|
|
120
150
|
## Anti-patterns
|
|
121
151
|
|
|
122
152
|
- ⊗ Main-session `gh` poll + **cron** as the default babysit path when the installed skill offers a Tier 1 / background monitor.
|
|
@@ -124,6 +154,8 @@ OpenClaw agents often act under a **bot / service identity** (e.g. `ape-deft`-cl
|
|
|
124
154
|
- ⊗ Treating `content/platforms/` hardware packs as the home for agent-host OpenClaw guidance.
|
|
125
155
|
- ⊗ Substituting host-native review theater for `deft-directive-review-cycle` on Deft-managed repos.
|
|
126
156
|
- ⊗ Claiming this doc alone makes `sessions_spawn` a shipped register/matrix primitive — that is epic skill/engine work (#2875 / #2876).
|
|
157
|
+
- ⊗ Multi-sentence progress-only first response after `subagent_announce` with zero tools / yield (#2943 text-repetition hang).
|
|
158
|
+
- ⊗ Treating thin DONE (no PR URL / merge evidence) as success (#2943).
|
|
127
159
|
|
|
128
160
|
---
|
|
129
161
|
|
|
@@ -134,4 +166,5 @@ OpenClaw agents often act under a **bot / service identity** (e.g. `ape-deft`-cl
|
|
|
134
166
|
- [skill-pin-policy.md](./skill-pin-policy.md) — always-pin process skills (includes review-cycle)
|
|
135
167
|
- [`skills/deft-directive-review-cycle/SKILL.md`](../skills/deft-directive-review-cycle/SKILL.md)
|
|
136
168
|
- [`skills/deft-directive-swarm/SKILL.md`](../skills/deft-directive-swarm/SKILL.md)
|
|
169
|
+
- [`skills/deft-directive-swarm/references/host-openclaw.md`](../skills/deft-directive-swarm/references/host-openclaw.md) — OpenClaw swarm adapter
|
|
137
170
|
- [`templates/agent-prompt-preamble.md`](../templates/agent-prompt-preamble.md)
|
package/docs/product-signal.md
CHANGED
|
@@ -6,6 +6,8 @@ Phase 1 consented product-improvement signal under epic #2603 (#2693). Defaults
|
|
|
6
6
|
|
|
7
7
|
Trusted-org repos (`deftai/*`, plus `DEFT_VALUE_AUTOENABLE_ORGS`) receive a **one-time** install/upgrade force-on (#2822): local value feedback and product-signal enable flip ON on the next `directive update`, with a durable `.deft-cache/org-force-on-v2822.json` marker so later intentional opt-out is not fought forever. Outbound product signal still requires personal consent (D17).
|
|
8
8
|
|
|
9
|
+
**Verify-on-skip (#2903):** the marker stores the pre-migration policy snapshots (key-order independent). If `PROJECT-DEFINITION` force-on is discarded (working-tree-only write lost beside a deposit PR, `git restore`, branch without PD) while the marker remains, the next `directive update` sees current typed blocks still equal those snapshots and **re-applies** force-on. Snapshot equality is company policy: restoring the exact pre-migration disabled shape is treated as incomplete migration (not a durable opt-out). An intentional post-migration disable must **differ** from the previous snapshot (and from the force-on shape), or use `task policy:clear-value-feedback`, or root `.no-deft-directive`. Outbound product signal still requires personal consent (D17) even when local enable is forced on. Manual recovery remains `rm -f .deft-cache/org-force-on-v2822.json && deft update`, then commit `xbrief/PROJECT-DEFINITION.xbrief.json`.
|
|
10
|
+
|
|
9
11
|
```bash
|
|
10
12
|
task product-signal:enable -- --confirm
|
|
11
13
|
task policy:show -- --field=productSignal
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
# Controlled English for docs and issues
|
|
2
|
+
|
|
3
|
+
Directive uses a short **controlled-English** bar for product docs, issues, PRs, and agent-facing prose.
|
|
4
|
+
|
|
5
|
+
**ASD-STE100** is Simplified Technical English (aerospace controlled language). Here it means a practical subset. It is not a certification program.
|
|
6
|
+
|
|
7
|
+
Legend (RFC2119): `!`=MUST, `~`=SHOULD, `≉`=SHOULD NOT, `⊗`=MUST NOT, `?`=MAY.
|
|
8
|
+
|
|
9
|
+
Tracker: [#2927](https://github.com/deftai/directive/issues/2927).
|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
|
|
13
|
+
## Rules (minimum bar)
|
|
14
|
+
|
|
15
|
+
1. **Short sentences.** Prefer one main idea per sentence.
|
|
16
|
+
2. **Active voice.** Prefer "The agent runs the gate" over "The gate is run by the agent."
|
|
17
|
+
3. **One term = one meaning.** Keep product terms stable (`xbrief`, host, skill pack, swarm, deposit). Do not reuse one word for two concepts.
|
|
18
|
+
4. **First-use definitions.** Define a tech term the first time it appears when the reader may not know it.
|
|
19
|
+
|
|
20
|
+
! Apply these four rules to **new and touched** prose that maintainers or agents author for this repo.
|
|
21
|
+
|
|
22
|
+
~ Prefer clarity over ceremony. When a product term already has a glossary or category note, reuse that meaning.
|
|
23
|
+
|
|
24
|
+
---
|
|
25
|
+
|
|
26
|
+
## Where it applies
|
|
27
|
+
|
|
28
|
+
- Agent and maintainer communications about Directive
|
|
29
|
+
- Product docs (including `content/docs/` and related guides)
|
|
30
|
+
- GitHub issues, PRs, and review comments that maintainers or agents author here
|
|
31
|
+
- Skill and strategy prose where clarity matters for agent load
|
|
32
|
+
|
|
33
|
+
---
|
|
34
|
+
|
|
35
|
+
## Non-goals
|
|
36
|
+
|
|
37
|
+
- ⊗ Full ASD-STE100 dictionary compliance or formal STE tooling certification
|
|
38
|
+
- ⊗ A big-bang rewrite of the historical issue corpus
|
|
39
|
+
- ⊗ A red CI style gate in v1 that blocks merges on style nitpicks
|
|
40
|
+
|
|
41
|
+
Process expectation only: follow the bar by default. Do not invent a merge blocker from this page alone.
|
|
42
|
+
|
|
43
|
+
---
|
|
44
|
+
|
|
45
|
+
## Related
|
|
46
|
+
|
|
47
|
+
| Issue | Role |
|
|
48
|
+
|-------|------|
|
|
49
|
+
| [#740](https://github.com/deftai/directive/issues/740) | Plain-English UX pass (closed; interview-focused) |
|
|
50
|
+
| [#865](https://github.com/deftai/directive/issues/865) | Every rule is a token tax |
|
|
51
|
+
| [#847](https://github.com/deftai/directive/issues/847) | Lean context first |
|
|
52
|
+
| [#2484](https://github.com/deftai/directive/issues/2484) | Progressive disclosure for large skills |
|
|
53
|
+
| [#2905](https://github.com/deftai/directive/issues/2905) | Category terms (host vs skill pack vs practice layer) |
|
package/glossary.md
CHANGED
|
@@ -40,7 +40,7 @@ These concepts originate from [GSD](https://github.com/gsd-build/get-shit-done)
|
|
|
40
40
|
|
|
41
41
|
**Fractal summaries** — Hierarchical memory compression: task summaries compress into feature summaries, which compress into release summaries. Iron rule: never summarize summaries — regenerate each level from the level below + code state. See [context/fractal-summaries.md](./context/fractal-summaries.md).
|
|
42
42
|
|
|
43
|
-
**Specification
|
|
43
|
+
**Specification xbrief** — The source-of-truth pattern for project intent. `./xbrief/specification.xbrief.json` is the canonical specification file; `SPECIFICATION.md` is a generated artifact rendered from it. Never edit the `.md` directly — edit the source xbrief. See [vbrief/vbrief.md](./vbrief/vbrief.md) (schema reference; public name is xBRIEF).
|
|
44
44
|
|
|
45
45
|
**Stub detection** — Scanning completed code for incomplete implementations: `TODO`/`FIXME` markers, `return null`/`return {}`/`pass` placeholders, functions under ~8 lines returning hardcoded values. See [verification/verification.md](./verification/verification.md).
|
|
46
46
|
|
|
@@ -48,98 +48,96 @@ These concepts originate from [GSD](https://github.com/gsd-build/get-shit-done)
|
|
|
48
48
|
|
|
49
49
|
**Zero discovery calls** — The principle that agents should never spend tokens figuring out where they are, what exists, or what was decided. All of that should be pre-assembled in context before the task starts. See [resilience/context-pruning.md](./resilience/context-pruning.md).
|
|
50
50
|
|
|
51
|
-
**Brownfield mapping** — Structured reconnaissance of an existing codebase before modifying it. Produces four artifacts: STACK
|
|
51
|
+
**Brownfield mapping** — Structured reconnaissance of an existing codebase before modifying it. Produces four artifacts: STACK, ARCHITECTURE, CONVENTIONS, and CONCERNS. See [strategies/map.md](./strategies/map.md). Invoked via `/deft:run:map`.
|
|
52
52
|
|
|
53
53
|
**Integration checking** — Cross-feature wiring verification that every export has a matching import, every API endpoint has a consumer, auth gates protect all required routes, and at least one E2E flow traces through the full stack. See [verification/integration.md](./verification/integration.md).
|
|
54
54
|
|
|
55
|
-
**Plan checking** — Pre-execution verification of a plan across four dimensions:
|
|
55
|
+
**Plan checking** — Pre-execution verification of a plan across four dimensions: coverage, completeness, wiring, scope. See [verification/plan-checking.md](./verification/plan-checking.md).
|
|
56
56
|
|
|
57
|
-
**Scope sanity** —
|
|
57
|
+
**Scope sanity** — Threshold guard against over-scoped plans (1–3 tasks ideal; 5+ requires split). Part of plan checking. See [verification/plan-checking.md](./verification/plan-checking.md).
|
|
58
58
|
|
|
59
|
-
**Spec delta** —
|
|
59
|
+
**Spec delta** — Scoped document capturing how a change modifies existing requirements. Linked via xBRIEF `references`. Lives in `history/changes/<name>/specs/`. See [context/spec-deltas.md](./context/spec-deltas.md).
|
|
60
60
|
|
|
61
|
-
**Verify command** — A concrete, runnable command
|
|
61
|
+
**Verify command** — A concrete, runnable command per task that confirms the work is correct. Required by plan checking dimension 2.
|
|
62
62
|
|
|
63
63
|
---
|
|
64
64
|
|
|
65
65
|
## Framework Design Terms
|
|
66
66
|
|
|
67
|
-
Terms describing how directive itself is structured and governed.
|
|
68
|
-
|
|
69
67
|
**Bounded context** (framework sense) — A file or directory in directive that owns a specific rule domain. Other files reference it; they do not restate its rules. Prevents rule drift through duplication. Examples: `coding/hygiene.md` owns hygiene rules; `coding/testing.md` owns universal testing standards.
|
|
70
68
|
|
|
71
69
|
**Rule ownership** — The principle that each concept in directive has exactly one owning file. When multiple files need to reference the concept, they link to the owner rather than duplicating the rule.
|
|
72
70
|
|
|
73
71
|
**Ubiquitous language** — The shared, precisely defined vocabulary used consistently across all directive files and by all agents. This glossary is the source of truth. Synonyms and informal restatements of defined terms are not permitted.
|
|
74
72
|
|
|
73
|
+
**Coding host** (host) · **skill pack** · **practice layer** · **orchestrator** — Buyer/evaluator category map. Canonical aid: [docs/CATEGORY.md](../docs/CATEGORY.md) (#2905).
|
|
74
|
+
|
|
75
75
|
---
|
|
76
76
|
|
|
77
77
|
## Hygiene Terms
|
|
78
78
|
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
**Hygiene** — The ongoing practice of keeping a codebase clean beyond what individual changes introduce: removing dead code, eliminating circular dependencies, surfacing hidden errors, and removing legacy/deprecated code paths. Distinct from per-change quality gates, which only govern new code.
|
|
79
|
+
**Hygiene** — Keeping a codebase clean beyond what individual changes introduce: dead code, circular deps, hidden errors, legacy paths. See [coding/hygiene.md](./coding/hygiene.md).
|
|
82
80
|
|
|
83
|
-
**Dead code** — Code
|
|
81
|
+
**Dead code** — Code defined but never executed.
|
|
84
82
|
|
|
85
|
-
**Error hiding** —
|
|
83
|
+
**Error hiding** — Patterns that prevent errors from being observed by the caller or operator.
|
|
86
84
|
|
|
87
|
-
**Legacy code** —
|
|
85
|
+
**Legacy code** — Superseded path not yet removed.
|
|
88
86
|
|
|
89
|
-
**Circular dependency** —
|
|
87
|
+
**Circular dependency** — Import cycle A→B→A (directly or transitively).
|
|
90
88
|
|
|
91
89
|
---
|
|
92
90
|
|
|
93
91
|
## GSD → Deft Term Mapping
|
|
94
92
|
|
|
95
|
-
For readers familiar with [GSD](https://github.com/gsd-build/get-shit-done):
|
|
96
|
-
|
|
97
93
|
| GSD Term | Deft Term | Notes |
|
|
98
94
|
|----------|-----------|-------|
|
|
99
95
|
| Milestone | **Release** | Shippable version |
|
|
100
96
|
| Slice | **Feature** | Vertical capability with demo sentence |
|
|
101
97
|
| Task | **Task** | Same — add "fits in one context window" |
|
|
102
|
-
| Must-haves | **Acceptance criteria** |
|
|
103
|
-
| Continue file | **Continue checkpoint** | `./
|
|
104
|
-
| Discuss phase | **Interview** (extended) |
|
|
105
|
-
| Boundary map | **Contract** (
|
|
98
|
+
| Must-haves | **Acceptance criteria** | truths, artifacts, key links |
|
|
99
|
+
| Continue file | **Continue checkpoint** | `./xbrief/continue.xbrief.json` |
|
|
100
|
+
| Discuss phase | **Interview** (extended) | decision locking + Feynman |
|
|
101
|
+
| Boundary map | **Contract** (planning) | Extension of Contract-First |
|
|
106
102
|
| Wave execution | **Parallel group** | Speckit `[P]`/`[S]` markers |
|
|
107
103
|
| Research phase | **Research** | Already in speckit |
|
|
108
104
|
|
|
109
105
|
---
|
|
110
106
|
|
|
111
|
-
##
|
|
107
|
+
## xBRIEF Lifecycle Terms
|
|
108
|
+
|
|
109
|
+
Canonical vocabulary for the xBRIEF lifecycle. **xBRIEF** / `xbrief/` is the sole public current name (#2907). **vBRIEF** is legacy — see [UPGRADING.md — xBRIEF rename](./UPGRADING.md#xbrief-rename-2034--2110--2907).
|
|
112
110
|
|
|
113
|
-
|
|
111
|
+
- **Scope xBRIEF** -- A durable unit-of-work record, one per feature / bug / initiative, stored as `YYYY-MM-DD-slug.xbrief.json` inside a [lifecycle folder](#xbrief-lifecycle-terms). Primary work artifact (schema detail: [vbrief/vbrief.md](./vbrief/vbrief.md)).
|
|
114
112
|
|
|
115
|
-
- **
|
|
113
|
+
- **Lifecycle folder** -- One of five subdirectories under `xbrief/`: `proposed/`, `pending/`, `active/`, `completed/`, `cancelled/`. Folder location reflects (but does not define) `plan.status`. See [vbrief/vbrief.md](./vbrief/vbrief.md).
|
|
116
114
|
|
|
117
|
-
- **
|
|
115
|
+
- **Plan-level narrative** -- A key under `plan.narratives` in an xBRIEF (e.g. `Description`, `Acceptance`, `Traces`). Plain strings only. See [vbrief/vbrief.md](./vbrief/vbrief.md).
|
|
118
116
|
|
|
119
|
-
- **
|
|
117
|
+
- **Item-level narrative** -- A narrative string under `plan.items[].narrative` for one PlanItem. Plain strings only. See [vbrief/vbrief.md](./vbrief/vbrief.md).
|
|
120
118
|
|
|
121
|
-
- **
|
|
119
|
+
- **Filename stem** -- The portion of an xBRIEF filename before `.xbrief.json`. Scope stems: `YYYY-MM-DD-<slug>`; speckit Phase 4: `YYYY-MM-DD-ip<NNN>-<slug>`. See [vbrief/vbrief.md](./vbrief/vbrief.md).
|
|
122
120
|
|
|
123
|
-
- **
|
|
121
|
+
- **Cross-scope dependency** -- Dependency between two scope xBRIEFs at `plan.metadata.dependencies` (array of dependency IDs). See [vbrief/vbrief.md](./vbrief/vbrief.md).
|
|
124
122
|
|
|
125
|
-
- **
|
|
123
|
+
- **Exit Commands** -- The seven deterministic `task scope:*` commands that transition a scope xBRIEF between lifecycle folders: `scope:promote`, `scope:activate`, `scope:complete`, `scope:cancel`, `scope:restore`, `scope:block`, `scope:unblock` (see [tasks/scope.yml](../tasks/scope.yml)).
|
|
126
124
|
|
|
127
|
-
- **
|
|
125
|
+
- **Origin provenance** -- A `references` entry linking a scope xBRIEF to its origin issue / ticket / user-request. Required for ingestion dedup. See [vbrief/vbrief.md](./vbrief/vbrief.md).
|
|
128
126
|
|
|
129
|
-
- **
|
|
127
|
+
- **Canonical narrative key** -- Reserved plan-level keys (`Description`, `Acceptance`, `Traces`) that tooling reads by name. See [vbrief/vbrief.md](./vbrief/vbrief.md).
|
|
130
128
|
|
|
131
|
-
- **
|
|
129
|
+
- **Preparatory strategy** -- A [strategies/](./strategies/) workflow that gathers context without producing a spec directly (e.g. `research.md`, `discuss.md`, `map.md`).
|
|
132
130
|
|
|
133
|
-
- **
|
|
131
|
+
- **Spec-generating strategy** -- A [strategies/](./strategies/) workflow that emits `xbrief/specification.xbrief.json` (and optionally scope xBRIEFs) as authoritative output.
|
|
134
132
|
|
|
135
|
-
- **
|
|
133
|
+
- **Rendered export** -- A human-readable `.md` file (`SPECIFICATION.md`, `PRD.md`, `ROADMAP.md`) generated by `task *:render` from the underlying `.xbrief.json`. Read-only views; edit the source, not the export. See [UPGRADING.md](./UPGRADING.md).
|
|
136
134
|
|
|
137
|
-
- **
|
|
135
|
+
- **Source of truth** -- The file tooling treats as authoritative. Current: `.xbrief.json` files under `xbrief/`; corresponding `.md` files are [rendered exports](#xbrief-lifecycle-terms).
|
|
138
136
|
|
|
139
|
-
- **
|
|
137
|
+
- **Deterministic mode** -- Interaction shape for structured questions. Every deterministic-mode prompt MUST include `Discuss` and `Back` as the final two options (#767). Canonical rule: [`contracts/deterministic-questions.md`](./contracts/deterministic-questions.md).
|
|
140
138
|
|
|
141
|
-
- **
|
|
139
|
+
- **Branch-protection policy** -- Controls direct commits to master/main. Typed flag `plan.policy.allowDirectCommitsToMaster` on `xbrief/PROJECT-DEFINITION.xbrief.json` (#746); default `false`. Surfaces: skill guards, `task verify:branch` + hooks (#747), CI `branch-gate`. Reconfigure via `task policy:*`. Emergency: `DEFT_ALLOW_DEFAULT_BRANCH_COMMIT=1`.
|
|
142
140
|
|
|
143
|
-
- **
|
|
141
|
+
- **Policy audit log** -- Append-only ledger at `meta/policy-changes.log` for transitions of `allowDirectCommitsToMaster` (#746 / #747).
|
|
144
142
|
|
|
145
|
-
- **
|
|
143
|
+
- **vBRIEF (legacy)** -- Historical name for xBRIEF / `xbrief/` work-state. On-disk `vbrief/`, `*.vbrief.json`, `x-vbrief/*` tokens, and `vbrief:*` task aliases remain read-accepted until `deft migrate:xbrief`. ⊗ Teach vBRIEF as the current product name. Authoritative map: [UPGRADING.md — xBRIEF rename](./UPGRADING.md#xbrief-rename-2034--2110--2907).
|
package/package.json
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@deftai/directive-content",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.88.0",
|
|
4
4
|
"description": "Shippable Directive framework content in the consumer .deft/core/ layout (C1 flatten), plus the engine surfaces (.githooks/, Taskfile.yml, tasks/) the deposit wires. Python-free per #2022 Phase 3. Refs #11, #1669, #1967.",
|
|
5
|
+
"license": "MIT",
|
|
5
6
|
"type": "module",
|
|
6
7
|
"files": [
|
|
7
8
|
"**/*",
|