@event4u/agent-config 1.18.0 → 1.20.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/.agent-src/commands/agent-handoff.md +14 -10
- package/.agent-src/commands/chat-history/import.md +170 -0
- package/.agent-src/commands/chat-history/learn.md +178 -0
- package/.agent-src/commands/chat-history/show.md +17 -18
- package/.agent-src/commands/chat-history.md +26 -25
- package/.agent-src/commands/council/default.md +77 -82
- package/.agent-src/commands/create-pr.md +28 -8
- package/.agent-src/commands/feature/roadmap.md +22 -0
- package/.agent-src/commands/roadmap/create.md +38 -6
- package/.agent-src/commands/roadmap/execute.md +36 -9
- package/.agent-src/commands/sync-gitignore.md +1 -1
- package/.agent-src/contexts/communication/rules-auto/skill-quality-mechanics.md +76 -0
- package/.agent-src/contexts/communication/rules-auto/slash-command-routing-policy-mechanics.md +3 -3
- package/.agent-src/contexts/communication/rules-auto/user-interaction-mechanics.md +5 -12
- package/.agent-src/rules/agent-authority.md +1 -0
- package/.agent-src/rules/agent-docs.md +1 -0
- package/.agent-src/rules/analysis-skill-routing.md +1 -0
- package/.agent-src/rules/architecture.md +1 -0
- package/.agent-src/rules/artifact-drafting-protocol.md +1 -0
- package/.agent-src/rules/artifact-engagement-recording.md +1 -0
- package/.agent-src/rules/ask-when-uncertain.md +1 -0
- package/.agent-src/rules/augment-portability.md +1 -0
- package/.agent-src/rules/augment-source-of-truth.md +1 -0
- package/.agent-src/rules/autonomous-execution.md +1 -0
- package/.agent-src/rules/capture-learnings.md +1 -0
- package/.agent-src/rules/cli-output-handling.md +2 -2
- package/.agent-src/rules/command-suggestion-policy.md +1 -0
- package/.agent-src/rules/commit-conventions.md +1 -0
- package/.agent-src/rules/commit-policy.md +1 -0
- package/.agent-src/rules/context-hygiene.md +22 -0
- package/.agent-src/rules/direct-answers.md +11 -2
- package/.agent-src/rules/docker-commands.md +1 -0
- package/.agent-src/rules/docs-sync.md +1 -0
- package/.agent-src/rules/downstream-changes.md +1 -0
- package/.agent-src/rules/e2e-testing.md +1 -0
- package/.agent-src/rules/guidelines.md +1 -0
- package/.agent-src/rules/improve-before-implement.md +1 -0
- package/.agent-src/rules/language-and-tone.md +38 -6
- package/.agent-src/rules/laravel-translations.md +1 -0
- package/.agent-src/rules/markdown-safe-codeblocks.md +1 -0
- package/.agent-src/rules/minimal-safe-diff.md +1 -0
- package/.agent-src/rules/missing-tool-handling.md +1 -0
- package/.agent-src/rules/model-recommendation.md +1 -0
- package/.agent-src/rules/no-attribution-footers.md +48 -0
- package/.agent-src/rules/no-cheap-questions.md +1 -0
- package/.agent-src/rules/no-roadmap-references.md +2 -1
- package/.agent-src/rules/non-destructive-by-default.md +1 -0
- package/.agent-src/rules/onboarding-gate.md +26 -0
- package/.agent-src/rules/package-ci-checks.md +1 -0
- package/.agent-src/rules/php-coding.md +1 -0
- package/.agent-src/rules/preservation-guard.md +1 -0
- package/.agent-src/rules/review-routing-awareness.md +1 -0
- package/.agent-src/rules/reviewer-awareness.md +1 -0
- package/.agent-src/rules/roadmap-progress-sync.md +22 -0
- package/.agent-src/rules/role-mode-adherence.md +2 -2
- package/.agent-src/rules/rule-type-governance.md +1 -0
- package/.agent-src/rules/runtime-safety.md +1 -0
- package/.agent-src/rules/scope-control.md +1 -0
- package/.agent-src/rules/security-sensitive-stop.md +1 -0
- package/.agent-src/rules/size-enforcement.md +1 -0
- package/.agent-src/rules/skill-improvement-trigger.md +1 -0
- package/.agent-src/rules/skill-quality.md +50 -0
- package/.agent-src/rules/slash-command-routing-policy.md +39 -0
- package/.agent-src/rules/think-before-action.md +1 -0
- package/.agent-src/rules/token-efficiency.md +1 -0
- package/.agent-src/rules/tool-safety.md +1 -0
- package/.agent-src/rules/ui-audit-gate.md +1 -0
- package/.agent-src/rules/upstream-proposal.md +1 -0
- package/.agent-src/rules/user-interaction.md +22 -5
- package/.agent-src/rules/verify-before-complete.md +1 -0
- package/.agent-src/skills/ai-council/SKILL.md +4 -5
- package/.agent-src/skills/dcf-modeling/SKILL.md +89 -0
- package/.agent-src/skills/funnel-analysis/SKILL.md +100 -0
- package/.agent-src/skills/md-language-check/SKILL.md +1 -1
- package/.agent-src/skills/okr-tree-modeling/SKILL.md +93 -0
- package/.agent-src/skills/rice-prioritization/SKILL.md +100 -0
- package/.agent-src/skills/roadmap-management/SKILL.md +29 -4
- package/.agent-src/skills/subagent-orchestration/SKILL.md +34 -2
- package/.agent-src/skills/unit-economics-modeling/SKILL.md +104 -0
- package/.agent-src/skills/using-git-worktrees/SKILL.md +1 -0
- package/.agent-src/skills/verify-completion-evidence/SKILL.md +8 -1
- package/.agent-src/templates/agent-settings.md +21 -26
- package/.agent-src/templates/roadmaps.md +8 -3
- package/.agent-src/templates/scripts/work_engine/hook_bootstrap.py +16 -5
- package/.agent-src/templates/scripts/work_engine/hooks/__init__.py +4 -4
- package/.agent-src/templates/scripts/work_engine/hooks/builtin/__init__.py +4 -4
- package/.agent-src/templates/scripts/work_engine/hooks/builtin/_chat_history_base.py +7 -51
- package/.agent-src/templates/scripts/work_engine/hooks/builtin/chat_history_append.py +1 -2
- package/.agent-src/templates/scripts/work_engine/hooks/builtin/chat_history_halt_append.py +1 -2
- package/.agent-src/templates/scripts/work_engine/hooks/builtin/decision_trace.py +163 -0
- package/.agent-src/templates/scripts/work_engine/hooks/builtin/memory_visibility.py +110 -0
- package/.agent-src/templates/scripts/work_engine/hooks/settings.py +36 -0
- package/.agent-src/templates/scripts/work_engine/scoring/decision_trace.py +141 -0
- package/.agent-src/templates/scripts/work_engine/scoring/memory_visibility.py +125 -0
- package/.agent-src/templates/skill.md +30 -1
- package/.claude-plugin/marketplace.json +8 -4
- package/AGENTS.md +44 -3
- package/CHANGELOG.md +173 -0
- package/README.md +22 -22
- package/config/agent-settings.template.yml +42 -13
- package/config/gitignore-block.txt +4 -4
- package/docs/architecture.md +3 -3
- package/docs/catalog.md +18 -13
- package/docs/contracts/adr-chat-history-split.md +10 -1
- package/docs/contracts/adr-settings-sync-engine.md +127 -0
- package/docs/contracts/command-clusters.md +1 -1
- package/docs/contracts/cross-wing-handoff.md +133 -0
- package/docs/contracts/decision-trace-v1.md +146 -0
- package/docs/contracts/file-ownership-matrix.json +348 -126
- package/docs/contracts/hook-architecture-v1.md +220 -0
- package/docs/contracts/memory-visibility-v1.md +122 -0
- package/docs/contracts/one-off-script-lifecycle.md +109 -0
- package/docs/contracts/rule-interactions.yml +22 -0
- package/docs/customization.md +2 -1
- package/docs/development.md +4 -1
- package/docs/getting-started.md +21 -29
- package/docs/guidelines/agent-infra/ask-when-uncertain-demos.md +1 -1
- package/docs/guidelines/agent-infra/layered-settings.md +32 -13
- package/docs/hook-payload-capture.md +221 -0
- package/docs/migrations/commands-1.15.0.md +17 -12
- package/docs/skills-catalog.md +5 -4
- package/llms.txt +4 -3
- package/package.json +1 -1
- package/scripts/agent-config +45 -1
- package/scripts/ai_council/_default_prices.py +4 -4
- package/scripts/ai_council/bundler.py +3 -3
- package/scripts/ai_council/clients.py +25 -9
- package/scripts/ai_council/modes.py +3 -4
- package/scripts/ai_council/one_off_archive/2026-05/README.md +22 -0
- package/scripts/ai_council/one_off_archive/2026-05/_one_off_roundtrip.py +13 -8
- package/scripts/ai_council/one_off_archive/2026-05/_one_off_tier_retrofit.py +180 -0
- package/scripts/ai_council/pricing.py +10 -9
- package/scripts/ai_council/session.py +92 -0
- package/scripts/build_rule_trigger_matrix.py +1 -9
- package/scripts/capture_showcase_session.py +361 -0
- package/scripts/chat_history.py +963 -597
- package/scripts/check_always_budget.py +7 -2
- package/scripts/check_references.py +12 -2
- package/scripts/context_hygiene_hook.py +14 -6
- package/scripts/council_cli.py +407 -0
- package/scripts/hook_manifest.yaml +217 -0
- package/scripts/hooks/__init__.py +1 -0
- package/scripts/hooks/augment-chat-history.sh +10 -0
- package/scripts/hooks/augment-dispatcher.sh +72 -0
- package/scripts/hooks/cline-dispatcher.sh +86 -0
- package/scripts/hooks/cowork-dispatcher.sh +98 -0
- package/scripts/hooks/cursor-dispatcher.sh +76 -0
- package/scripts/hooks/dispatch_hook.py +383 -0
- package/scripts/hooks/envelope.py +98 -0
- package/scripts/hooks/gemini-dispatcher.sh +117 -0
- package/scripts/hooks/state_io.py +122 -0
- package/scripts/hooks/windsurf-dispatcher.sh +123 -0
- package/scripts/hooks_status.py +157 -0
- package/scripts/install-hooks.sh +2 -2
- package/scripts/install.py +725 -87
- package/scripts/install.sh +38 -1
- package/scripts/lint_handoffs.py +214 -0
- package/scripts/lint_hook_manifest.py +217 -0
- package/scripts/lint_one_off_age.py +184 -0
- package/scripts/lint_rule_tiers.py +78 -0
- package/scripts/lint_showcase_sessions.py +148 -0
- package/scripts/minimal_safe_diff_hook.py +245 -0
- package/scripts/onboarding_gate_hook.py +13 -8
- package/scripts/readme_linter.py +12 -3
- package/scripts/redact_hook_capture.py +148 -0
- package/scripts/roadmap_progress_hook.py +5 -0
- package/scripts/schemas/skill.schema.json +5 -0
- package/scripts/skill_linter.py +163 -1
- package/scripts/sync_agent_settings.py +32 -129
- package/scripts/sync_yaml_rt.py +734 -0
- package/scripts/update_prices.py +3 -3
- package/scripts/verify_before_complete_hook.py +216 -0
- package/.agent-src/commands/chat-history/checkpoint.md +0 -126
- package/.agent-src/commands/chat-history/clear.md +0 -103
- package/.agent-src/commands/chat-history/resume.md +0 -183
- package/.agent-src/rules/chat-history-cadence.md +0 -109
- package/.agent-src/rules/chat-history-ownership.md +0 -123
- package/.agent-src/rules/chat-history-visibility.md +0 -96
- package/.agent-src/templates/scripts/work_engine/hooks/builtin/chat_history_heartbeat.py +0 -50
- package/.agent-src/templates/scripts/work_engine/hooks/builtin/chat_history_turn_check.py +0 -49
- package/scripts/check_phase_coupling.py +0 -148
|
@@ -1,109 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
type: "auto"
|
|
3
|
-
description: "Appending to .agent-chat-history — cadence boundaries (per_turn/per_phase/per_tool), turn-check ownership refusal handling, never writing the file directly; cadence is the trigger, not reply length"
|
|
4
|
-
alwaysApply: false
|
|
5
|
-
source: package
|
|
6
|
-
---
|
|
7
|
-
|
|
8
|
-
<!-- cloud_safe: noop -->
|
|
9
|
-
|
|
10
|
-
# Chat History — Cadence
|
|
11
|
-
|
|
12
|
-
Owns gate 2 of the chat-history Iron Law: WHEN to call `append`.
|
|
13
|
-
Ownership (gate 1) lives in [`chat-history-ownership`](chat-history-ownership.md);
|
|
14
|
-
visibility (gate 3) lives in [`chat-history-visibility`](chat-history-visibility.md).
|
|
15
|
-
File I/O is owned by [`scripts/chat_history.py`](../../../scripts/chat_history.py)
|
|
16
|
-
— this rule decides the trigger boundaries, not the file format.
|
|
17
|
-
|
|
18
|
-
## Iron Law — gate 2 (append at every cadence boundary)
|
|
19
|
-
|
|
20
|
-
```
|
|
21
|
-
EVERY CADENCE BOUNDARY GETS ONE append CALL — WITH --first-user-msg.
|
|
22
|
-
SKIPPING IS A RULE VIOLATION. NEVER WRITE .agent-chat-history DIRECTLY.
|
|
23
|
-
ON HOOK / ENGINE PATHS, THE PLATFORM / ENGINE PERFORMS append STRUCTURALLY
|
|
24
|
-
— THE AGENT MUST NOT DUPLICATE.
|
|
25
|
-
```
|
|
26
|
-
|
|
27
|
-
Cadence is **gated by ownership**: gate 1 (turn-check from
|
|
28
|
-
[`chat-history-ownership`](chat-history-ownership.md)) must have cleared
|
|
29
|
-
this turn before any append fires. Skip turn-check → append refuses with
|
|
30
|
-
exit `3` (`OWNERSHIP_REFUSED`).
|
|
31
|
-
|
|
32
|
-
## Append cadence — boundaries
|
|
33
|
-
|
|
34
|
-
Cadence comes from `chat_history.frequency` in `.agent-settings.yml`:
|
|
35
|
-
|
|
36
|
-
- `per_turn` → one entry at the end of every agent turn.
|
|
37
|
-
- `per_phase` → at phase boundaries (user question answered, decision
|
|
38
|
-
taken, task-list item completed, significant tool sequence finished).
|
|
39
|
-
Pure clarification turns may skip.
|
|
40
|
-
- `per_tool` → after each tool-call sequence.
|
|
41
|
-
|
|
42
|
-
Every append goes through
|
|
43
|
-
|
|
44
|
-
```bash
|
|
45
|
-
scripts/chat_history.py append --first-user-msg "<msg>" \
|
|
46
|
-
--type <user|agent|tool|decision|phase> --json '<obj>'
|
|
47
|
-
```
|
|
48
|
-
|
|
49
|
-
Never write the file directly. Prefer `phase` over `agent` for boundaries.
|
|
50
|
-
**Cadence is the trigger, not reply length** — a one-line reply that
|
|
51
|
-
crosses a boundary still appends; a 200-line reply that doesn't cross
|
|
52
|
-
one still doesn't. **Do not batch missed turns** — crashes happen
|
|
53
|
-
between turns, and a batched append loses the timeline that crash
|
|
54
|
-
recovery depends on.
|
|
55
|
-
|
|
56
|
-
## Ownership refusal — exit `3`
|
|
57
|
-
|
|
58
|
-
`append` exits `3` when the file's ownership header doesn't match the
|
|
59
|
-
current session (`turn-check` was skipped or the file was hijacked
|
|
60
|
-
between turns). Surface the failure to the user, **do not swallow it**:
|
|
61
|
-
|
|
62
|
-
1. Stop the current append.
|
|
63
|
-
2. Render the Foreign-Prompt from [`chat-history-ownership`](chat-history-ownership.md)
|
|
64
|
-
so the user re-handshakes.
|
|
65
|
-
3. Resume cadence only after gate 1 clears again.
|
|
66
|
-
|
|
67
|
-
This is the structural enforcement layer that catches the case where
|
|
68
|
-
an agent technically called `turn-check` but on the wrong platform path
|
|
69
|
-
(e.g. HOOK platform also tried CHECKPOINT cooperative gates and the
|
|
70
|
-
file got into a mixed state).
|
|
71
|
-
|
|
72
|
-
## Path-specific behavior
|
|
73
|
-
|
|
74
|
-
**CHECKPOINT path** — gates 1 + 2 are cooperative. The agent runs
|
|
75
|
-
`turn-check` first, then runs `append` at every cadence boundary.
|
|
76
|
-
`/chat-history-checkpoint` is the recommended boundary-trigger; it
|
|
77
|
-
captures phase entries with the right metadata.
|
|
78
|
-
|
|
79
|
-
**HOOK path** — `work_engine` and platform `SessionStart` /
|
|
80
|
-
`PreToolUse` hooks fire `turn-check` and `append` structurally. The
|
|
81
|
-
agent must **not** call either — double-write produces interleaved
|
|
82
|
-
entries and breaks the JSONL schema. Hooks emit the same exit codes,
|
|
83
|
-
so refusal handling stays identical.
|
|
84
|
-
|
|
85
|
-
**ENGINE path** — `work_engine` fires `append --type phase` per
|
|
86
|
-
successful step and `append --type decision` on halt. Free-form prose
|
|
87
|
-
around the engine output falls back to whatever path the platform
|
|
88
|
-
supplies (HOOK or CHECKPOINT). Engine-driven turns inherit the
|
|
89
|
-
structural guarantee for the duration of the dispatch cycle only.
|
|
90
|
-
|
|
91
|
-
## What this rule does NOT do
|
|
92
|
-
|
|
93
|
-
Manage ownership decisions (handshake, foreign/returning) — those
|
|
94
|
-
live in [`chat-history-ownership`](chat-history-ownership.md).
|
|
95
|
-
Manage the heartbeat marker — that lives in [`chat-history-visibility`](chat-history-visibility.md).
|
|
96
|
-
Decide cadence dynamically based on reply content — cadence is
|
|
97
|
-
the configured frequency, period.
|
|
98
|
-
|
|
99
|
-
## Cloud Behavior
|
|
100
|
-
|
|
101
|
-
On cloud surfaces (Claude.ai Web, Skills API) cadence is **inert** —
|
|
102
|
-
no append calls, no `scripts/`, no JSONL file. Treat
|
|
103
|
-
`chat_history.enabled` as `false`.
|
|
104
|
-
|
|
105
|
-
## Interactions & references
|
|
106
|
-
|
|
107
|
-
- Sibling rules: [`chat-history-ownership`](chat-history-ownership.md) (gate 1 — turn-check) · [`chat-history-visibility`](chat-history-visibility.md) (gate 3 — heartbeat marker).
|
|
108
|
-
- `token-efficiency` — never load the full log; cadence keeps appends small and bounded.
|
|
109
|
-
- API: [`scripts/chat_history.py`](../../../scripts/chat_history.py) `append` subcommand. Settings: [`agent-settings`](../templates/agent-settings.md) `chat_history.frequency`. Engine hooks: [`agents/contexts/work-engine-hooks.md`](../../../agents/contexts/work-engine-hooks.md).
|
|
@@ -1,123 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
type: "auto"
|
|
3
|
-
description: "First turn or reference to .agent-chat-history — detects ownership (match/returning/foreign/missing) and HOOK/ENGINE/CHECKPOINT/MANUAL path classification with numbered-options prompt"
|
|
4
|
-
alwaysApply: false
|
|
5
|
-
source: package
|
|
6
|
-
---
|
|
7
|
-
|
|
8
|
-
<!-- cloud_safe: noop -->
|
|
9
|
-
|
|
10
|
-
# Chat History — Ownership
|
|
11
|
-
|
|
12
|
-
Owns gate 1 of the chat-history Iron Law: the first-turn handshake
|
|
13
|
-
that decides whose `.agent-chat-history` file the current session is
|
|
14
|
-
talking to. Cadence (gate 2) lives in [`chat-history-cadence`](chat-history-cadence.md);
|
|
15
|
-
visibility (gate 3) lives in [`chat-history-visibility`](chat-history-visibility.md).
|
|
16
|
-
File I/O is owned by [`scripts/chat_history.py`](../../../scripts/chat_history.py)
|
|
17
|
-
— this rule says **when** to handshake, not how the file is structured.
|
|
18
|
-
|
|
19
|
-
## Two paths — platform decides which Iron Law applies
|
|
20
|
-
|
|
21
|
-
Population of `.agent-chat-history` is **structural** (platform-driven)
|
|
22
|
-
on platforms with native lifecycle hooks, and **cooperative**
|
|
23
|
-
(agent-driven) on platforms without. Both paths converge on the same
|
|
24
|
-
JSONL schema; only the trigger differs. Per-platform classification
|
|
25
|
-
lives in
|
|
26
|
-
[`agents/contexts/chat-history-platform-hooks.md`](../../../agents/contexts/chat-history-platform-hooks.md).
|
|
27
|
-
|
|
28
|
-
| Path | Platforms / Surfaces | Trigger | Agent's role |
|
|
29
|
-
|---|---|---|---|
|
|
30
|
-
| **HOOK** | Claude Code, Augment CLI, Cursor 1.7+, Cline non-Windows, Windsurf, Gemini CLI | Platform fires native lifecycle hooks → `./agent-config chat-history:hook --platform <name>` | Read-only — observe, do not duplicate appends |
|
|
31
|
-
| **ENGINE** | `/implement-ticket`, `/work`, any flow driven by `scripts/work_engine/cli.py` | `work_engine` fires `turn-check` (before-dispatch), `append --type phase` (per successful step), `--type decision` (on-halt), `heartbeat` (after-dispatch) via the hook layer | Read-only during engine-driven turns — do not duplicate appends. See [`agents/contexts/work-engine-hooks.md`](../../../agents/contexts/work-engine-hooks.md) |
|
|
32
|
-
| **CHECKPOINT** | Augment IDE plugin, Cursor < 1.7, Cline on Windows | Agent invokes `/chat-history-checkpoint` at phase boundaries | Cooperative — gates 1 + 2 + 3 are mandatory |
|
|
33
|
-
| **MANUAL** | Cloud surfaces (Claude.ai Web, Skills API) | Rule is inert — see Cloud Behavior | None |
|
|
34
|
-
|
|
35
|
-
Detect the path on first turn: read `chat_history.platform` from
|
|
36
|
-
`.agent-settings.yml` if set, else fall back to `chat_history.path`
|
|
37
|
-
(`hook` / `checkpoint` / `manual`). Missing both → assume CHECKPOINT
|
|
38
|
-
(safest cooperative default; HOOK platforms install the platform
|
|
39
|
-
config explicitly via `scripts/install.py`).
|
|
40
|
-
|
|
41
|
-
## Iron Law — gate 1 (turn-check is the first tool call)
|
|
42
|
-
|
|
43
|
-
```
|
|
44
|
-
ON CHECKPOINT, turn-check IS THE FIRST TOOL CALL OF EVERY SESSION.
|
|
45
|
-
ON HOOK, THE PLATFORM FIRES turn-check STRUCTURALLY — DO NOT DUPLICATE.
|
|
46
|
-
ON ENGINE, work_engine FIRES turn-check BEFORE DISPATCH — DO NOT DUPLICATE.
|
|
47
|
-
```
|
|
48
|
-
|
|
49
|
-
CHECKPOINT path — run silently before any other tool call:
|
|
50
|
-
|
|
51
|
-
```bash
|
|
52
|
-
scripts/chat_history.py turn-check --first-user-msg "<first-user-msg>"
|
|
53
|
-
```
|
|
54
|
-
|
|
55
|
-
Exit codes: `0` = `ok`/`disabled` (proceed), `10` = `missing`
|
|
56
|
-
(run `init --first-user-msg "..." --freq <freq>`), `11` = `foreign`
|
|
57
|
-
(render Foreign-Prompt + stop), `12` = `returning` (render
|
|
58
|
-
Returning-Prompt + stop). The script writes a one-line
|
|
59
|
-
`ACTION REQUIRED:` hint to stderr on non-zero exits.
|
|
60
|
-
|
|
61
|
-
## Activation & handshake
|
|
62
|
-
|
|
63
|
-
Read `chat_history.*` from `.agent-settings.yml` **once per conversation**
|
|
64
|
-
(first turn) and cache. `enabled: false` or section missing → all three
|
|
65
|
-
chat-history rules are a **no-op** (do not read, write, or mention the
|
|
66
|
-
file). Otherwise cache `frequency`, `max_size_kb`, `on_overflow`, and
|
|
67
|
-
the **path** (HOOK / CHECKPOINT / MANUAL — see the table above).
|
|
68
|
-
|
|
69
|
-
**HOOK path** — skip `turn-check` entirely. The platform's
|
|
70
|
-
`SessionStart` hook already initialized the file; the agent's job is to
|
|
71
|
-
read `status` once for context awareness (header preview, entry count)
|
|
72
|
-
and otherwise leave I/O to the hook dispatcher. Foreign / Returning
|
|
73
|
-
prompts still apply because hooks call into the same ownership state
|
|
74
|
-
machine — when the dispatcher reports `foreign` or `returning` via
|
|
75
|
-
exit code or stderr, render the corresponding prompt.
|
|
76
|
-
|
|
77
|
-
**CHECKPOINT path** — run `turn-check` as the first tool call. State
|
|
78
|
-
token branches to one of: `missing` → `init`, `ok` → continue,
|
|
79
|
-
`foreign` → Foreign-Prompt, `returning` → Returning-Prompt.
|
|
80
|
-
`/chat-history-checkpoint` is the recommended way to satisfy gate 2
|
|
81
|
-
at phase boundaries (see [`chat-history-cadence`](chat-history-cadence.md)).
|
|
82
|
-
|
|
83
|
-
In `foreign` and `returning`, **always read the file's current contents
|
|
84
|
-
into the agent's working context before any write** — the user chose to
|
|
85
|
-
log history for a reason; losing it silently is never acceptable. The
|
|
86
|
-
legacy `state` subcommand still works for shell scripts; agents prefer
|
|
87
|
-
`turn-check` (folds in `enabled` + distinct exit codes).
|
|
88
|
-
|
|
89
|
-
## Foreign / Returning prompts — full mechanics
|
|
90
|
-
|
|
91
|
-
When `turn-check` exits `11` (foreign) or `12` (returning), render the
|
|
92
|
-
matching numbered-options block from
|
|
93
|
-
[`agents/contexts/chat-history-handshake.md`](../../../agents/contexts/chat-history-handshake.md).
|
|
94
|
-
That doc holds the prompt bodies, the option → script-call mapping
|
|
95
|
-
(`adopt` / `init` / `prepend` / `reset`), the in-memory entries-list
|
|
96
|
-
shape, free-text fallbacks, and the overflow handling per
|
|
97
|
-
`on_overflow` (`rotate` / `compress`). Read it once on first foreign
|
|
98
|
-
or returning event; cache the chosen option for the rest of the
|
|
99
|
-
conversation.
|
|
100
|
-
|
|
101
|
-
## What this rule does NOT do
|
|
102
|
-
|
|
103
|
-
Display/reload/clear (`/chat-history*` commands). Auto-flip `enabled` or
|
|
104
|
-
`on_overflow`. Run when `enabled: false`. Decide ownership
|
|
105
|
-
heuristically — only `turn-check` / `state` does that. Double-write on
|
|
106
|
-
HOOK platforms — when hooks fire structurally, the agent does **not**
|
|
107
|
-
also call `turn-check`. Cadence (gate 2) and heartbeat (gate 3) are
|
|
108
|
-
covered in their sibling rules.
|
|
109
|
-
|
|
110
|
-
## Cloud Behavior
|
|
111
|
-
|
|
112
|
-
On cloud surfaces (Claude.ai Web, Skills API) the rule is **fully inert** —
|
|
113
|
-
no `.agent-chat-history`, no `scripts/`, no Iron Law gates, no foreign/returning
|
|
114
|
-
prompts. Treat `chat_history.enabled` as `false`; persistence is a
|
|
115
|
-
local-agent concern.
|
|
116
|
-
|
|
117
|
-
## Interactions & references
|
|
118
|
-
|
|
119
|
-
- Sibling rules: [`chat-history-cadence`](chat-history-cadence.md) (gate 2 — append timing) · [`chat-history-visibility`](chat-history-visibility.md) (gate 3 — heartbeat marker).
|
|
120
|
-
- `ask-when-uncertain` + `user-interaction` — foreign/returning prompts use numbered options, one question per turn.
|
|
121
|
-
- `language-and-tone` — prompt translated at runtime; `.md` stays English.
|
|
122
|
-
- `onboarding-gate` — runs first; this rule activates only after it clears.
|
|
123
|
-
- API: [`scripts/chat_history.py`](../../../scripts/chat_history.py). Commands: [`/chat-history`](../commands/chat-history.md), [`/chat-history-resume`](../commands/chat-history-resume.md), [`/chat-history-clear`](../commands/chat-history-clear.md), [`/chat-history-checkpoint`](../commands/chat-history-checkpoint.md). Settings: [`agent-settings`](../templates/agent-settings.md). Platform classification: [`agents/contexts/chat-history-platform-hooks.md`](../../../agents/contexts/chat-history-platform-hooks.md). Types: [`rule-type-governance`](rule-type-governance.md).
|
|
@@ -1,96 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
type: "auto"
|
|
3
|
-
description: "Emitting the chat-history heartbeat marker — paste subprocess stdout verbatim or nothing, never type from memory, hybrid mode prints on drift only, slip handling per language-and-tone"
|
|
4
|
-
alwaysApply: false
|
|
5
|
-
source: package
|
|
6
|
-
---
|
|
7
|
-
|
|
8
|
-
<!-- cloud_safe: noop -->
|
|
9
|
-
|
|
10
|
-
# Chat History — Visibility
|
|
11
|
-
|
|
12
|
-
Owns gate 3 of the chat-history Iron Law: the heartbeat marker that
|
|
13
|
-
makes append-cadence drift visible. Ownership (gate 1) lives in
|
|
14
|
-
[`chat-history-ownership`](chat-history-ownership.md); cadence (gate 2)
|
|
15
|
-
lives in [`chat-history-cadence`](chat-history-cadence.md). File I/O is
|
|
16
|
-
owned by [`scripts/chat_history.py`](../../../scripts/chat_history.py).
|
|
17
|
-
|
|
18
|
-
## Iron Law — gate 3 (heartbeat is subprocess stdout, not memory)
|
|
19
|
-
|
|
20
|
-
```
|
|
21
|
-
HEARTBEAT IS THE SCRIPT OUTPUT OF THE CURRENT TURN, VERBATIM, OR NOTHING.
|
|
22
|
-
NEVER TYPE THE LINE FROM MEMORY. NEVER REUSE THE PRIOR TURN'S MARKER.
|
|
23
|
-
EMPTY STDOUT → NO MARKER LINE.
|
|
24
|
-
```
|
|
25
|
-
|
|
26
|
-
Run silently before emitting the final reply:
|
|
27
|
-
|
|
28
|
-
```bash
|
|
29
|
-
scripts/chat_history.py heartbeat --first-user-msg "<first-user-msg>"
|
|
30
|
-
```
|
|
31
|
-
|
|
32
|
-
Stdout is **at most** one line, e.g.
|
|
33
|
-
`📒 chat-history: ok · 9 entries · per_phase · last 30s ago`. Non-empty →
|
|
34
|
-
paste **verbatim** as the last line of the reply. Empty → emit nothing.
|
|
35
|
-
Always exits 0 — observability, not a gate.
|
|
36
|
-
|
|
37
|
-
## Visibility modes — `chat_history.heartbeat`
|
|
38
|
-
|
|
39
|
-
| Mode | When marker prints | Token cost |
|
|
40
|
-
|---|---|---|
|
|
41
|
-
| `on` | every reply (legacy) | ~20 tokens / reply |
|
|
42
|
-
| `off` | never — full silence | 0 |
|
|
43
|
-
| `hybrid` *(default)* | drift states only (`missing`/`foreign`/`returning`) | 0 in normal flow, ~20 on drift |
|
|
44
|
-
|
|
45
|
-
`hybrid` ships zero tokens when healthy, loud on ownership drift. YAML 1.1
|
|
46
|
-
booleanizes bare `on`/`off`; the reader coerces both back, so
|
|
47
|
-
`heartbeat: on` works unquoted.
|
|
48
|
-
|
|
49
|
-
## Memory-typing the marker — rule violation, not a slip
|
|
50
|
-
|
|
51
|
-
Format is memorizable; counts and timestamps are not. A typed-from-
|
|
52
|
-
memory line shows stale entries and a healthy-looking `ok` while the
|
|
53
|
-
file is silently behind — observability collapses, invisible until
|
|
54
|
-
`status` is checked. Heartbeat is the script output of the **current
|
|
55
|
-
turn**, verbatim, or nothing.
|
|
56
|
-
|
|
57
|
-
**Self-check before send — MANDATORY.** (1) Did `heartbeat` run on
|
|
58
|
-
this turn? (2) Is the line byte-identical to that subprocess stdout?
|
|
59
|
-
(3) Empty stdout → no marker line. Any "no" → drop it.
|
|
60
|
-
|
|
61
|
-
**Slip handling.** Stale marker called out → acknowledge once in the
|
|
62
|
-
user's language; run `status`; on CHECKPOINT call `append` for
|
|
63
|
-
missed phase-boundaries (see [`chat-history-cadence`](chat-history-cadence.md));
|
|
64
|
-
run a real `heartbeat`; paste stdout verbatim or nothing. Don't promise
|
|
65
|
-
"from now on" — only behaviour proves compliance (mirrors
|
|
66
|
-
`language-and-tone` § slip handling).
|
|
67
|
-
|
|
68
|
-
## Path-specific behavior
|
|
69
|
-
|
|
70
|
-
Heartbeat (gate 3) stays useful for visibility on **every** path —
|
|
71
|
-
HOOK, ENGINE, CHECKPOINT — because the marker reports the file's
|
|
72
|
-
state, not the agent's intent. On HOOK and ENGINE paths the agent
|
|
73
|
-
still emits the marker even though it didn't fire `turn-check` or
|
|
74
|
-
`append` itself: the marker is read-only observability over whatever
|
|
75
|
-
the platform / engine wrote.
|
|
76
|
-
|
|
77
|
-
## What this rule does NOT do
|
|
78
|
-
|
|
79
|
-
Manage ownership decisions — those live in [`chat-history-ownership`](chat-history-ownership.md).
|
|
80
|
-
Manage append timing — that lives in [`chat-history-cadence`](chat-history-cadence.md).
|
|
81
|
-
Auto-decide visibility mode — `chat_history.heartbeat` is the only
|
|
82
|
-
trigger. Insert decoration: the marker is functional output per
|
|
83
|
-
[`direct-answers`](direct-answers.md) emoji whitelist, not a status
|
|
84
|
-
badge.
|
|
85
|
-
|
|
86
|
-
## Cloud Behavior
|
|
87
|
-
|
|
88
|
-
On cloud surfaces (Claude.ai Web, Skills API) heartbeat is **inert** —
|
|
89
|
-
no marker line, no `scripts/`. Treat `chat_history.enabled` as `false`.
|
|
90
|
-
|
|
91
|
-
## Interactions & references
|
|
92
|
-
|
|
93
|
-
- Sibling rules: [`chat-history-ownership`](chat-history-ownership.md) (gate 1 — turn-check) · [`chat-history-cadence`](chat-history-cadence.md) (gate 2 — append).
|
|
94
|
-
- `direct-answers` — emoji whitelist permits the `📒` marker as functional output, not decoration.
|
|
95
|
-
- `language-and-tone` § slip handling — stale-marker acknowledgement.
|
|
96
|
-
- API: [`scripts/chat_history.py`](../../../scripts/chat_history.py) `heartbeat` and `status` subcommands. Settings: [`agent-settings`](../templates/agent-settings.md) `chat_history.heartbeat`.
|
|
@@ -1,50 +0,0 @@
|
|
|
1
|
-
"""``ChatHistoryHeartbeatHook`` — visibility marker before save.
|
|
2
|
-
|
|
3
|
-
Fires on ``before_save``. Runs ``chat_history.py heartbeat`` and,
|
|
4
|
-
if the script emits a marker line, threads it onto ``state.report``
|
|
5
|
-
so the agent's reply naturally carries the heartbeat without manual
|
|
6
|
-
copy/paste.
|
|
7
|
-
|
|
8
|
-
Why ``before_save`` and not ``after_dispatch``: the marker must land
|
|
9
|
-
in the report that gets persisted. ``cli._sync_back`` runs between
|
|
10
|
-
``after_dispatch`` and ``before_save`` and reassigns
|
|
11
|
-
``work.report = delivery.report`` — a marker written on
|
|
12
|
-
``after_dispatch`` would be overwritten before ``_save``. Firing on
|
|
13
|
-
``before_save`` runs after the sync, so the marker survives.
|
|
14
|
-
"""
|
|
15
|
-
from __future__ import annotations
|
|
16
|
-
|
|
17
|
-
from ..context import HookContext
|
|
18
|
-
from ..events import HookEvent
|
|
19
|
-
from ..exceptions import HookError
|
|
20
|
-
from ..registry import HookRegistry
|
|
21
|
-
from ._chat_history_base import EXIT_OK, _ChatHistoryHookBase
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
class ChatHistoryHeartbeatHook(_ChatHistoryHookBase):
|
|
25
|
-
"""Run heartbeat before save; thread marker into ``state.report``."""
|
|
26
|
-
|
|
27
|
-
def register(self, registry: HookRegistry) -> None:
|
|
28
|
-
registry.register(HookEvent.BEFORE_SAVE, self._on_before_save)
|
|
29
|
-
|
|
30
|
-
def _on_before_save(self, ctx: HookContext) -> None:
|
|
31
|
-
msg = self._resolve_msg(ctx)
|
|
32
|
-
proc = self._invoke("heartbeat", "--first-user-msg", msg)
|
|
33
|
-
if proc.returncode != EXIT_OK:
|
|
34
|
-
raise HookError(
|
|
35
|
-
f"chat-history heartbeat failed (exit {proc.returncode})"
|
|
36
|
-
)
|
|
37
|
-
marker = (proc.stdout or "").strip()
|
|
38
|
-
if not marker or ctx.work is None:
|
|
39
|
-
return
|
|
40
|
-
existing = getattr(ctx.work, "report", "") or ""
|
|
41
|
-
if marker in existing:
|
|
42
|
-
return
|
|
43
|
-
sep = "\n\n" if existing else ""
|
|
44
|
-
try:
|
|
45
|
-
ctx.work.report = f"{existing}{sep}{marker}"
|
|
46
|
-
except AttributeError:
|
|
47
|
-
raise HookError("chat-history heartbeat: state.report not writable")
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
__all__ = ["ChatHistoryHeartbeatHook"]
|
|
@@ -1,49 +0,0 @@
|
|
|
1
|
-
"""``ChatHistoryTurnCheckHook`` — guards engine-driven turns.
|
|
2
|
-
|
|
3
|
-
Fires on ``before_dispatch``; classifies the chat-history file via
|
|
4
|
-
``scripts/chat_history.py turn-check``:
|
|
5
|
-
|
|
6
|
-
- exit 0 (``ok``) → continue
|
|
7
|
-
- exit 10 (``missing``) → continue (auto-init handled by chat_history.py)
|
|
8
|
-
- exit 11 (``foreign``) → raise :class:`HookHalt` so CLI exits 2
|
|
9
|
-
- exit 12 (``returning``)→ raise :class:`HookHalt` so CLI exits 2
|
|
10
|
-
- any other exit → raise :class:`HookError` (warn, continue)
|
|
11
|
-
"""
|
|
12
|
-
from __future__ import annotations
|
|
13
|
-
|
|
14
|
-
from ..context import HookContext
|
|
15
|
-
from ..events import HookEvent
|
|
16
|
-
from ..exceptions import HookError, HookHalt
|
|
17
|
-
from ..registry import HookRegistry
|
|
18
|
-
from ._chat_history_base import (
|
|
19
|
-
EXIT_FOREIGN,
|
|
20
|
-
EXIT_MISSING,
|
|
21
|
-
EXIT_OK,
|
|
22
|
-
EXIT_RETURNING,
|
|
23
|
-
_ChatHistoryHookBase,
|
|
24
|
-
)
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
class ChatHistoryTurnCheckHook(_ChatHistoryHookBase):
|
|
28
|
-
"""Run ``turn-check`` at the start of dispatch; halt on drift."""
|
|
29
|
-
|
|
30
|
-
def register(self, registry: HookRegistry) -> None:
|
|
31
|
-
registry.register(HookEvent.BEFORE_DISPATCH, self._on_before_dispatch)
|
|
32
|
-
|
|
33
|
-
def _on_before_dispatch(self, ctx: HookContext) -> None:
|
|
34
|
-
msg = self._resolve_msg(ctx)
|
|
35
|
-
result = self._invoke("turn-check", "--first-user-msg", msg)
|
|
36
|
-
code = result.returncode
|
|
37
|
-
if code in (EXIT_OK, EXIT_MISSING):
|
|
38
|
-
return
|
|
39
|
-
if code in (EXIT_FOREIGN, EXIT_RETURNING):
|
|
40
|
-
text = (result.stderr or result.stdout or "").strip()
|
|
41
|
-
reason = "foreign" if code == EXIT_FOREIGN else "returning"
|
|
42
|
-
surface = [line for line in text.splitlines() if line] or [
|
|
43
|
-
f"chat-history turn-check: {reason}",
|
|
44
|
-
]
|
|
45
|
-
raise HookHalt(f"chat_history_turn_check_{reason}", surface=surface)
|
|
46
|
-
raise HookError(f"chat-history turn-check failed (exit {code})")
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
__all__ = ["ChatHistoryTurnCheckHook"]
|
|
@@ -1,148 +0,0 @@
|
|
|
1
|
-
#!/usr/bin/env python3
|
|
2
|
-
"""Phase 6 → Phase 2B coupling guard (Phase 0.3.3).
|
|
3
|
-
|
|
4
|
-
Re-runs the audit recorded in `agents/roadmaps/phase6-2b-coupling.md`
|
|
5
|
-
on every CI run. Fails the build if any of the 13 Phase-2B target
|
|
6
|
-
rules introduces a reference to one of the three Phase-6-owned rules
|
|
7
|
-
(`chat-history-cadence`, `chat-history-ownership`,
|
|
8
|
-
`chat-history-visibility`) — by rule name, `load_context:` entry, or
|
|
9
|
-
body link / cite.
|
|
10
|
-
|
|
11
|
-
Excluded from the coupling probe (separate infrastructure, not
|
|
12
|
-
reshaped by Phase 6):
|
|
13
|
-
|
|
14
|
-
- The CLI dispatcher subcommand `./agent-config chat-history:hook`
|
|
15
|
-
and any other `chat-history:*` colon-suffix command surface.
|
|
16
|
-
|
|
17
|
-
Exit codes: 0 = decoupling intact, 1 = coupling detected,
|
|
18
|
-
3 = internal error (target rule missing, unreadable file).
|
|
19
|
-
"""
|
|
20
|
-
|
|
21
|
-
from __future__ import annotations
|
|
22
|
-
|
|
23
|
-
import argparse
|
|
24
|
-
import re
|
|
25
|
-
import sys
|
|
26
|
-
from pathlib import Path
|
|
27
|
-
|
|
28
|
-
REPO_ROOT = Path(__file__).resolve().parents[1]
|
|
29
|
-
SRC_RULES = REPO_ROOT / ".agent-src.uncompressed" / "rules"
|
|
30
|
-
COMP_RULES = REPO_ROOT / ".agent-src" / "rules"
|
|
31
|
-
|
|
32
|
-
# Phase 2B priority list — see road-to-structural-optimization.md § Phase 2 → 2B.
|
|
33
|
-
TARGET_RULES: tuple[str, ...] = (
|
|
34
|
-
"roadmap-progress-sync",
|
|
35
|
-
"user-interaction",
|
|
36
|
-
"augment-source-of-truth",
|
|
37
|
-
"command-suggestion-policy",
|
|
38
|
-
"artifact-engagement-recording",
|
|
39
|
-
"review-routing-awareness",
|
|
40
|
-
"autonomous-execution",
|
|
41
|
-
"docs-sync",
|
|
42
|
-
"cli-output-handling",
|
|
43
|
-
"augment-portability",
|
|
44
|
-
"ui-audit-gate",
|
|
45
|
-
"skill-quality",
|
|
46
|
-
"package-ci-checks",
|
|
47
|
-
)
|
|
48
|
-
|
|
49
|
-
# Phase 6 owns these three rule names. Match must be a *rule reference*,
|
|
50
|
-
# not a *dispatcher reference* (chat-history:hook etc).
|
|
51
|
-
PHASE6_RULES: tuple[str, ...] = (
|
|
52
|
-
"chat-history-cadence",
|
|
53
|
-
"chat-history-ownership",
|
|
54
|
-
"chat-history-visibility",
|
|
55
|
-
)
|
|
56
|
-
|
|
57
|
-
# Rule-reference pattern: rule name not immediately followed by `:` (which
|
|
58
|
-
# would mark it as a CLI subcommand like `chat-history:hook`). Allows
|
|
59
|
-
# trailing word-boundary characters typical of Markdown / YAML contexts.
|
|
60
|
-
_RULE_REF_RE = re.compile(
|
|
61
|
-
r"\bchat-history-(?:cadence|ownership|visibility)\b(?!:)"
|
|
62
|
-
)
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
def _scan(file: Path) -> list[tuple[int, str]]:
|
|
66
|
-
"""Return [(line_no, line)] of rule-reference matches in `file`."""
|
|
67
|
-
if not file.is_file():
|
|
68
|
-
return []
|
|
69
|
-
hits: list[tuple[int, str]] = []
|
|
70
|
-
for i, line in enumerate(file.read_text(encoding="utf-8").splitlines(), 1):
|
|
71
|
-
if _RULE_REF_RE.search(line):
|
|
72
|
-
hits.append((i, line.strip()))
|
|
73
|
-
return hits
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
def _check_surface(label: str, base: Path) -> tuple[int, list[str]]:
|
|
77
|
-
"""Scan `base` for all 13 Phase-2B targets; return (#hits, formatted lines)."""
|
|
78
|
-
if not base.is_dir():
|
|
79
|
-
return 0, [f"❌ {label} dir missing: {base}"]
|
|
80
|
-
out: list[str] = []
|
|
81
|
-
total = 0
|
|
82
|
-
for rule in TARGET_RULES:
|
|
83
|
-
path = base / f"{rule}.md"
|
|
84
|
-
if not path.is_file():
|
|
85
|
-
return 0, [f"❌ target rule missing: {path}"]
|
|
86
|
-
hits = _scan(path)
|
|
87
|
-
if not hits:
|
|
88
|
-
continue
|
|
89
|
-
total += len(hits)
|
|
90
|
-
for line_no, line in hits:
|
|
91
|
-
out.append(f" {label}/{rule}.md:{line_no} {line}")
|
|
92
|
-
return total, out
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
def main() -> int:
|
|
96
|
-
parser = argparse.ArgumentParser(description=__doc__)
|
|
97
|
-
parser.add_argument(
|
|
98
|
-
"--quiet",
|
|
99
|
-
action="store_true",
|
|
100
|
-
help="suppress the per-rule breakdown when no coupling found",
|
|
101
|
-
)
|
|
102
|
-
args = parser.parse_args()
|
|
103
|
-
|
|
104
|
-
hits_src, lines_src = _check_surface("uncompressed", SRC_RULES)
|
|
105
|
-
if any(line.startswith("❌") for line in lines_src):
|
|
106
|
-
for line in lines_src:
|
|
107
|
-
print(line, file=sys.stderr)
|
|
108
|
-
return 3
|
|
109
|
-
hits_comp, lines_comp = _check_surface("compressed", COMP_RULES)
|
|
110
|
-
if any(line.startswith("❌") for line in lines_comp):
|
|
111
|
-
for line in lines_comp:
|
|
112
|
-
print(line, file=sys.stderr)
|
|
113
|
-
return 3
|
|
114
|
-
|
|
115
|
-
total = hits_src + hits_comp
|
|
116
|
-
|
|
117
|
-
if total == 0:
|
|
118
|
-
if not args.quiet:
|
|
119
|
-
print(
|
|
120
|
-
f"✅ Phase 6 → 2B decoupling intact: 0 rule-references "
|
|
121
|
-
f"across {len(TARGET_RULES)} Phase-2B targets "
|
|
122
|
-
f"(uncompressed + compressed surfaces)."
|
|
123
|
-
)
|
|
124
|
-
print(
|
|
125
|
-
" probe: rule names, load_context: entries, body "
|
|
126
|
-
"link/cite — dispatcher subcommand chat-history:hook "
|
|
127
|
-
"excluded by design."
|
|
128
|
-
)
|
|
129
|
-
return 0
|
|
130
|
-
|
|
131
|
-
print(
|
|
132
|
-
f"❌ Phase 6 → 2B coupling detected: {total} rule-reference(s) "
|
|
133
|
-
f"across Phase-2B targets:"
|
|
134
|
-
)
|
|
135
|
-
for line in lines_src + lines_comp:
|
|
136
|
-
print(line)
|
|
137
|
-
print(
|
|
138
|
-
"\n Action: see agents/roadmaps/phase6-2b-coupling.md. "
|
|
139
|
-
"Either drop the new reference, migrate it to the dispatcher "
|
|
140
|
-
"(chat-history:hook), or trigger the >0-hits branch in 0.3.2 "
|
|
141
|
-
"(Phase 6 ships call-signature contract before Phase 2B "
|
|
142
|
-
"touches the coupled rule)."
|
|
143
|
-
)
|
|
144
|
-
return 1
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
if __name__ == "__main__":
|
|
148
|
-
sys.exit(main())
|