@c4a/context-cli 0.5.35-beta.1 → 0.5.36-beta.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/README.md +7 -7
- package/cli.js +45817 -37848
- package/package.json +1 -1
- package/plugin/README.md +2 -2
- package/plugin/README_CN.md +2 -2
- package/plugin/commands/align.md +52 -99
- package/plugin/commands/capture.md +28 -16
- package/plugin/commands/compile.md +76 -154
- package/plugin/commands/context.md +1 -1
- package/plugin/commands/drop.md +14 -1
- package/plugin/commands/extract.md +1 -1
- package/plugin/commands/init.md +5 -2
- package/plugin/commands/purge.md +1 -1
- package/plugin/commands/query.md +1 -1
- package/plugin/commands/status.md +1 -1
- package/plugin/skills/skill-align-workflow/SKILL.md +46 -62
- package/plugin/skills/skill-align-workflow/references/candidate-resolution.md +1 -1
- package/plugin/skills/skill-align-workflow/references/density-profile.md +2 -0
- package/plugin/skills/skill-compile-close/SKILL.md +12 -16
- package/plugin/skills/skill-compile-draft/SKILL.md +25 -78
- package/plugin/skills/skill-compile-draft/references/structural-challenges.md +1 -1
- package/plugin/skills/skill-compile-judge/SKILL.md +13 -11
- package/plugin/skills/skill-context-query/SKILL.md +4 -4
- package/plugin/skills/skill-semantic-reconcile/SKILL.md +3 -3
- package/plugin/skills/skill-semantic-reconcile/references/leakage-and-ownership.md +1 -1
- package/scripts/build-plugin.ts +10 -8
- package/templates/aspects/code/prompt.md +5 -2
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
name: skill-compile-close
|
|
3
3
|
description: >
|
|
4
4
|
Packaged skill invoked by `/context:compile`; not a user slash command. Runs after every draft
|
|
5
|
-
iteration. Triggers `context compile
|
|
5
|
+
iteration. Triggers `context compile close`, which in one invocation
|
|
6
6
|
refreshes locator-only evidence, canonicalizes source refs, compacts and verifies the final workspace,
|
|
7
7
|
rebuilds the knowledge index, appends a changelog
|
|
8
8
|
entry, rebuilds section fingerprints + incremental cache, and
|
|
@@ -25,18 +25,18 @@ command. It does not hand-edit rendered knowledge.
|
|
|
25
25
|
|
|
26
26
|
## TL;DR — Non-negotiables
|
|
27
27
|
|
|
28
|
-
- CLI-driven. `context compile
|
|
28
|
+
- CLI-driven. `context compile close` performs deterministic close writes first (locator refresh, source_ref canonicalization, compact, index/changelog), verifies the final workspace, then rebuilds section fingerprints + incremental cache and archives compile scratch files. Use the command's stdout + exit code; that's the close's full output.
|
|
29
29
|
- **Agent NEVER edits rendered knowledge from the close stage.** The CLI is the sole writer for articles, the index, and the changelog. If verify reports an error here, route it back, not around:
|
|
30
30
|
- Content / Section issues (`invalid-section-mount`, `body-ad-hoc-heading`, `dangling-source-alias`) → user re-runs `/context:compile` (draft loop fixes its own Section actions; the close stage does not patch)
|
|
31
31
|
- Structural issues (`contains-cycle`, `edge-dangling-node`, `duplicate-slug`, `invalid-node-type`, `domain-same-file-child`) → user runs `/context:align` to revise the plan
|
|
32
32
|
- Source issues (`dropped-source-reference`) → user runs `/context:drop <id>` to complete the drop
|
|
33
33
|
- Exit 0 → summarise node/section totals, verify, `recompiled`, `locator_updates`, `rebuilt`, fingerprint rebuild count, archive status / archived file count, and any `ready_with_debt` coverage warnings when printed; then stop.
|
|
34
34
|
- Exit 2 → report the full issue list verbatim + point at the right re-entry command above. Do not hand-open the affected rendered article.
|
|
35
|
-
- Coverage
|
|
35
|
+
- Coverage warnings are CLI-owned diagnostics. `ready_with_debt` means close succeeded and unresolved coverage remains visible; report the warning and follow returned coverage view commands / `available_actions[]` only if the user chooses a repair or skip round.
|
|
36
36
|
- Materialized knowledge means either a CLI-written knowledge article, or an explicit no-write placeholder from align: `planned_sections: []` plus source/context/graph support. A compile skip action records reviewed evidence, but it does not by itself materialize an arbitrary finalized Node.
|
|
37
|
-
- Never re-run `context compile
|
|
37
|
+
- Never re-run `context compile draft` from close to paper over verify failures. Draft failures belong in the draft loop.
|
|
38
38
|
- Do not use Python, Node.js, shell scripts, `ls`, `find`, `rg`, `cat`, or similar ad-hoc commands to inspect `WORKSPACE_DIR`, `.context`, knowledge files, or `/tmp` workflow artifacts.
|
|
39
|
-
- Derivable files self-heal: missing `_index.md` or `changelog.md` is rebuilt inside `compile
|
|
39
|
+
- Derivable files self-heal: missing `_index.md` or `changelog.md` is rebuilt inside `context compile close` before the append, locator-only source moves are refreshed, non-canonical but hash-valid `source_ref` locators are canonicalized, and high-signal coverage candidates already backed by active Sections are marked covered. No pre-check needed.
|
|
40
40
|
- LLM-assisted repair (`--fix-with-llm`) is not available in the current release.
|
|
41
41
|
- Output language: summary prose matches the user's language; CLI output, issue codes, file paths stay as printed.
|
|
42
42
|
- Successful close archives CLI scratch artifacts through the output lifecycle and rebuilds the user-level incremental cache. Current align state is internal CLI state, not a file protocol. The CLI owns this lifecycle — the agent must not move, delete, or archive workspace output files by hand.
|
|
@@ -44,7 +44,7 @@ command. It does not hand-edit rendered knowledge.
|
|
|
44
44
|
|
|
45
45
|
<reference>
|
|
46
46
|
|
|
47
|
-
## Stages inside `context compile
|
|
47
|
+
## Stages inside `context compile close`
|
|
48
48
|
|
|
49
49
|
Close is one in-process command with one exit code:
|
|
50
50
|
|
|
@@ -63,17 +63,17 @@ Close is one in-process command with one exit code:
|
|
|
63
63
|
| Outcome | Agent action |
|
|
64
64
|
|---|---|
|
|
65
65
|
| Exit 0, 0 issues | Summarise those counts in the user's language: Nodes touched; Sections added / updated / superseded / deprecated / skipped; `recompiled`; `locator_updates`; `rebuilt`; verify green. Stop. |
|
|
66
|
-
| Exit 0, warnings only | Summarise + list warnings verbatim. For coverage warnings,
|
|
66
|
+
| Exit 0, warnings only | Summarise + list warnings verbatim. For coverage warnings, surface the CLI-returned coverage view commands / `available_actions[]` instead of inventing a local decision matrix. Stop. |
|
|
67
67
|
| Exit 2, Section / content issue | Surface the full issue list; point the user at re-running `/context:compile` (the draft loop owns Section writes). Do NOT Edit the affected rendered article. |
|
|
68
68
|
| Exit 2, `compile-close-finalized-node-missing-knowledge` | If the missing Node has real citation evidence, point the user at `/context:compile` for that Node. If it is intentionally navigation-only or placeholder-only, point the user at `/context:align` to make it explicit no-write with `planned_sections: []` and context-only/ignored relation or placeholder blocks. |
|
|
69
69
|
| Exit 2, structural issue (cycle, duplicate slug, `invalid-node-type`, `domain-same-file-child`) | Surface the full issue list; point the user at `/context:align` to revise structure. Do not re-run compile. |
|
|
70
70
|
| Exit 2, `dropped-source-reference` | Surface the source-id; point the user at `/context:drop <id>` to complete the drop cleanup. |
|
|
71
71
|
|
|
72
|
-
The close stage never edits rendered knowledge on the agent side. Every verify error routes back to the correct upstream command (compile / align / drop), never sideways into a hand Edit. Use the CLI issue code and hint printed by `context compile
|
|
72
|
+
The close stage never edits rendered knowledge on the agent side. Every verify error routes back to the correct upstream command (compile / align / drop), never sideways into a hand Edit. Use the CLI issue code and hint printed by `context compile close` for the error→command mapping.
|
|
73
73
|
|
|
74
74
|
## Changelog entry shape
|
|
75
75
|
|
|
76
|
-
`context compile
|
|
76
|
+
`context compile close` appends one markdown list item per run to
|
|
77
77
|
the changelog with aggregate counts — not a multi-line
|
|
78
78
|
block:
|
|
79
79
|
|
|
@@ -90,7 +90,7 @@ item convention (see the drop skill for the exact shape).
|
|
|
90
90
|
|
|
91
91
|
### Step 1 — Invoke close
|
|
92
92
|
|
|
93
|
-
Run `context compile
|
|
93
|
+
Run `context compile close`. The caller (typically `/context:compile`) may have already invoked it; check for existing output before re-running.
|
|
94
94
|
|
|
95
95
|
### Step 2 — Interpret
|
|
96
96
|
|
|
@@ -118,12 +118,8 @@ Summarise in the user's language:
|
|
|
118
118
|
|
|
119
119
|
Stop. Do not auto-invoke follow-on commands.
|
|
120
120
|
|
|
121
|
-
### Step 5 —
|
|
121
|
+
### Step 5 — Final guardrails
|
|
122
122
|
|
|
123
|
-
|
|
124
|
-
- [ ] If exit 2, every error is surfaced to the user with a re-entry command (compile / align / drop); no silent ignores — **Step 3**.
|
|
125
|
-
- [ ] No agent-hand edits to rendered knowledge — if any, revert; the close stage is read-only for knowledge content.
|
|
126
|
-
- [ ] No Read / Glob / Grep / Write was used against `WORKSPACE_DIR`; CLI-owned output archival is allowed.
|
|
127
|
-
- [ ] No ad-hoc script or shell file traversal was used against `WORKSPACE_DIR`, `.context`, or `/tmp` workflow artifacts.
|
|
123
|
+
Run close once, surface every error with its re-entry command, and never inspect or edit rendered knowledge outside the CLI.
|
|
128
124
|
|
|
129
125
|
</procedures>
|
|
@@ -5,8 +5,8 @@ description: >
|
|
|
5
5
|
the CLI-provided `NodeContext` (planned metadata, raw snippets, and
|
|
6
6
|
existing Sections if any), classifies every raw fragment into a Section
|
|
7
7
|
kind via the priority chain, writes `content` + optional `summary` + `source_refs[]`,
|
|
8
|
-
and emits a compile draft JSON document
|
|
9
|
-
|
|
8
|
+
and emits a compile draft JSON document for the caller to submit to the current envelope's
|
|
9
|
+
`next_action.command`.
|
|
10
10
|
Activates when `/context:compile` iterates across the confirmed align plan.
|
|
11
11
|
tools:
|
|
12
12
|
- Bash
|
|
@@ -19,20 +19,21 @@ Classify raw evidence for one Node into `add` / `skip` (and on refresh: `update`
|
|
|
19
19
|
## TL;DR — Non-negotiables
|
|
20
20
|
|
|
21
21
|
- One Node per invocation — `target_node` MUST equal `node.slug`; no cross-Node writes. Finish the current Node's draft quality checks before the caller moves to another Node's review/apply loop.
|
|
22
|
-
- Agent emits JSON only; no markdown, no direct workspace file writes. The caller
|
|
23
|
-
- Evidence boundary: treat
|
|
22
|
+
- Agent emits JSON only; no markdown, no direct workspace file writes. The caller submits the JSON to the current envelope's `next_action.command`; the CLI validates and stores workflow payloads.
|
|
23
|
+
- Evidence boundary: treat the CLI-provided NodeContext and evidence views as complete. Cite only refs surfaced in `citable_source_refs[]` or `raw_snippet_indexes.citation_eligible`; treat `supporting_context_refs[]`, `context_only`, and secondary-shared snippets as background. `request_full_text` may expose visible text for inspection through the narrow text view (`context compile context <slug> --request-full-text <block_id> --view text --format json`), and it does not change citation eligibility. If supporting/context-only evidence is needed as a citation, emit `pending_ownership_challenge` or `structure_challenge` — see [references/structural-challenges.md](references/structural-challenges.md). Never `grep` / `sed` / `jq` / `cat` / `head` raw `--format json` stdout or workflow scratch files in `/tmp` or `.context/.cache/`; use semantic views and follow returned `next_command` / `how_to_explore[]`. For write commands that take `--payload-digest`, omit the flag unless the CLI explicitly asks for a stale guard.
|
|
24
24
|
- Actions are candidate write actions, not final semantic decisions; `context reconcile prepare` re-derives near-duplicate / conflict / merge relations from `candidates[]` on its own. Op naming is scoped by schema: compile-draft `actions[]` already targets Sections, so Section lifecycle ops are verb-only (`add`, `update`, `supersede`, `deprecate`, `skip`). Do not use align-style names such as `add_section`, `write_section`, or `propose_section`.
|
|
25
25
|
- Source support passing is not completion. Before emitting, estimate coverage from the provided `raw_snippets[]`: if there are 3+ citation-eligible snippets, a one-action draft is valid only when the later snippets are duplicates, navigation, placeholders, or continuations of the same fact. Small dense docs still need multiple actions when later snippets state distinct capabilities, constraints, examples, risks, FAQ, or usage notes. Large manuals/design docs should compile to several orthogonal actions in the same draft. Do not switch into "speed mode" because the first action validates; coverage is part of the draft task.
|
|
26
|
-
- Pick `kind`
|
|
26
|
+
- Pick `kind` from the CLI's `context schema compile-draft` contract, especially `section_kind_priority` and the mount matrix. First matching form wins. A `decision` needs at least two surfaced alternatives plus a reason; bare "we use X because Y" is `spec`. Reach `description` only after every more specific kind fails.
|
|
27
|
+
- `node.planned_sections[]` is an align-time scaffold hint, not a hard completion gate. Prefer a planned kind when the evidence fits; if a source-backed stronger kind differs, emit it and let the CLI warning guide review.
|
|
27
28
|
- `kind × node.type` must satisfy the CLI Section mount matrix; mismatches get rejected at write time. When the strongest kind is blocked by mount matrix, fall to the next legal kind whose form actually fits — do not collapse to `description` just because it mounts everywhere, and do not invent thin precision (e.g. one-line `spec`) just to avoid `description` either. See [Description anti-abuse gates](#description-anti-abuse-gates) for the classification checks at the description boundary.
|
|
28
29
|
- Every write action cites raw via `source_refs[]`, choosing values from `raw_snippets[].source_ref`. Use a single-element array for one citation. Treat each source ref as an opaque citation token; never fabricate, parse, dereference, or cite navigation-only blocks as evidence for a content Section.
|
|
29
30
|
- Use `content` for the Section text the reader should see. It may be long and may contain URLs, tables, commands, config, or code fences. Add `summary` for long content or when it helps readers/query output; omit it when content is short. Summary quality checks are warning hints only, not schema or evidence failures. The CLI rejects retired fields (`body`, `detail`, `raw`, singular `source_ref`, quoted-evidence) with canonical repair hints — read those hints rather than memorising the blacklist. Omit optional fields when empty.
|
|
30
|
-
- Preserve
|
|
31
|
+
- Preserve literals required by the CLI. When source-refs or scaffold output lists `required_preserved_literals[]`, keep those URL, code identifier, `source_ref`, or `block_id` literals visible in the relevant `content`, `summary`, skip reason, or repair challenge. Do not rely on memorized URL rules; let CLI literal fields and citation diagnostics define what must be preserved.
|
|
31
32
|
- `refers_to_nodes[]` only carries slugs present in the context's glossary, existing Sections, or the current align plan; never invent one.
|
|
32
33
|
- `skip` is the honest default when raw adds nothing. Bare `skip` (no `source_refs[]`) is only for deterministic no-ops such as unchanged input or pure navigation. When a snippet was reviewed and intentionally not written, emit `skip` with `source_refs[]` from that snippet so semantic review can record `reviewed_no_write`.
|
|
33
34
|
- Any Node may legitimately compile to no Sections when the provided snippets contain only navigation (`Parent` / `Children` / `Related` / `Relations`) or placeholder text that explicitly says no detailed content is available. Emit `skip`; do not turn align summaries, parent/child lists, sibling links, or placeholders into `description` Sections. The align graph and Node metadata preserve structure; active Sections need citation-eligible content.
|
|
34
35
|
- FAQ collections attach to the most specific finalized Node (Entity → Action → Domain fallback); never create a standalone FAQ container.
|
|
35
|
-
- Output language: Node-facing summaries and user-facing draft explanations follow `NodeContext.generation_policy.language` when present; otherwise match the raw material. Draft `content` is source-bound: prefer the cited source language when it differs from the workspace language, and do not translate quoted English facts into Chinese just to satisfy workspace language. Preserve product names, code identifiers, CLI flags, slugs, `block_id` / `source_ref` tokens, and exact quoted evidence as printed. Kind / confidence / identifier fields stay English.
|
|
36
|
+
- Output language: Node-facing summaries and user-facing draft explanations follow `NodeContext.generation_policy.language` when present; otherwise match the raw material. Section `summary` may follow either the workspace language or the source-bound `content` language; do not rewrite it only to switch languages. Draft `content` is source-bound: prefer the cited source language when it differs from the workspace language, and do not translate quoted English facts into Chinese just to satisfy workspace language. Preserve product names, code identifiers, CLI flags, slugs, `block_id` / `source_ref` tokens, and exact quoted evidence as printed. Kind / confidence / identifier fields stay English.
|
|
36
37
|
- Stable output: keep action order aligned with evidence order — that ordering is the only stability concern the CLI cannot enforce. The CLI rejects unknown fields (timestamps, random ids, host/scratch paths) and canonicalises stored payloads; fixed rules and schema come from this skill, so only the current NodeContext should vary between repeated Node draft calls.
|
|
37
38
|
|
|
38
39
|
## Edge cases — consult references when:
|
|
@@ -54,7 +55,7 @@ Canonical shape: `context schema node-context --format yaml` (or `--format json`
|
|
|
54
55
|
|
|
55
56
|
Boundary recap (rules not captured by the schema enums):
|
|
56
57
|
|
|
57
|
-
- `mentions[]` are raw positions that named this Node; `raw_snippets[]` are the wider context blocks around those positions, or the changed raw blocks selected by `context compile
|
|
58
|
+
- `mentions[]` are raw positions that named this Node; `raw_snippets[]` are the wider context blocks around those positions, or the changed raw blocks selected by `context compile scan`. These two arrays are the evidence floor — never reach outside them.
|
|
58
59
|
- `node.sources[]` are the only sources that may be cited as `src-N`. `node.context_sources[]` contribute `raw_snippets[]` for comparison or background only and must not be cited unless the CLI has also placed that source in `node.sources[]`.
|
|
59
60
|
- `source_id` is the source registry id (e.g. `local:billing`); `src-N` aliases only appear inside `source_ref` strings — copy `raw_snippets[].source_ref` verbatim into draft `source_refs[]`.
|
|
60
61
|
|
|
@@ -68,57 +69,15 @@ Main-path ops are **`add`** and **`skip`**. A typical new Section action is `{ o
|
|
|
68
69
|
|
|
69
70
|
`source_refs[]` values are copied verbatim from `raw_snippets[].source_ref`; a single citation is still a single-element array. When one Section summarises contiguous multi-block evidence, list only the source refs the `content` actually consumes. If the CLI reports `compile-source-refs-auto-narrowed`, it safely reduced an over-wide citation; removed refs are still uncovered, so add separate actions for distinct knowledge or leave them to an evidence-carrying `skip`. Preserve raw wording in `content` when it is already clear. Preserving a cited prose/bullet list as the Section's user-facing content is allowed when that list is the actual knowledge; the anti-pattern is copying raw text only as traceability or lexical-score padding. For `example` Sections that cite command / config / code fences, include the relevant fenced block in `content`.
|
|
70
71
|
|
|
71
|
-
## Section Kind
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
```
|
|
79
|
-
|
|
80
|
-
| kind | Use when | `content` should contain | Positive / negative boundary |
|
|
81
|
-
|---|---|---|---|
|
|
82
|
-
| `example` | fenced code, config, or command sample | what the sample does plus the full snippet when useful | `<AppProvider />` sample or `bun run build`; plain "wrap with AppProvider" is `description` |
|
|
83
|
-
| `comparison` | at least two subjects across at least two dimensions | compared subjects, dimensions, and table/matrix | `X vs Y vs Z` table; "two options have tradeoffs" is `description`; "choose X over Y" is `decision` |
|
|
84
|
-
| `faq` | one explicit question-answer pair | question plus answer | Q/A block; an "X FAQ collection" is several `faq` Sections on X, not a container Node |
|
|
85
|
-
| `incident` | happened event with time, impact, and root cause / handling | time, severity/impact, root cause, timeline/actions | dated outage postmortem; "risk may happen" is `warning` |
|
|
86
|
-
| `changelog` | version/date plus change description | version, change type, migration notes if present | `v1.2.0 added X`; "X supports Y" without version is `spec` or `description` |
|
|
87
|
-
| `decision` | text surfaces at least two alternatives plus a reason | selected option, alternatives, reason, impact | "choose async rather than sync because..."; bare "use X because..." is `spec` |
|
|
88
|
-
| `spec` | verifiable behavior, threshold, default, limit, or check method | object, condition, value/constraint | retry max 3; vague "consider concurrency" is `principle` or `description` |
|
|
89
|
-
| `warning` | factual risk, caveat, or negative consequence | trigger condition and consequence | "without warmup first 30s timeout"; "don't change config" without consequence is too vague |
|
|
90
|
-
| `principle` | stable design invariant / philosophy with no check method and no choice action | invariant and reason | "single way to write UI"; retry max 3 is `spec`; "choose X over Y" is `decision` |
|
|
91
|
-
| `description` | fallback definition, overview, or plain narrative | definition, purpose, scope, distinction | only after the nine kinds above fail; do not use it to hide lists, rules, tables, samples, risks, or decisions |
|
|
92
|
-
|
|
93
|
-
Mount matrix:
|
|
94
|
-
|
|
95
|
-
| kind | domain | entity | action |
|
|
96
|
-
|---|:---:|:---:|:---:|
|
|
97
|
-
| `description` | yes | yes | yes |
|
|
98
|
-
| `spec` | no | yes | yes |
|
|
99
|
-
| `warning` | yes | yes | yes |
|
|
100
|
-
| `principle` | yes | yes | no |
|
|
101
|
-
| `decision` | yes | yes | yes |
|
|
102
|
-
| `incident` | no | yes | yes |
|
|
103
|
-
| `example` | no | yes | no |
|
|
104
|
-
| `changelog` | no | yes | no |
|
|
105
|
-
| `comparison` | no | yes | no |
|
|
106
|
-
| `faq` | yes | yes | yes |
|
|
107
|
-
|
|
108
|
-
When the strongest kind is not mountable on this Node type, choose the next legal kind that the evidence truly supports, or `skip` with a structural challenge reason. Do not force `description` just because it mounts everywhere.
|
|
109
|
-
|
|
110
|
-
## Confidence rubric
|
|
111
|
-
|
|
112
|
-
Four legal values; pick per raw evidence strength.
|
|
113
|
-
|
|
114
|
-
| `confidence` | When |
|
|
115
|
-
|---|---|
|
|
116
|
-
| `verified` | Raw shows the fact already happened or held — recorded run output, observed metric value, incident timestamp, benchmark result, or explicit "ran X, got Y" log. Executable form alone is not enough; without execution evidence, downgrade to `confirmed`. |
|
|
117
|
-
| `confirmed` | Raw states the fact in normative voice or as a documented spec / config / example, without showing the run that confirmed it. This is the default for code blocks, configuration samples, feature lists, and design rules. |
|
|
118
|
-
| `inferred` | You combined ≥2 raw fragments into a load-bearing conclusion that no single fragment states. |
|
|
119
|
-
| `speculative` | Raw only hints; the Section is a best-effort reading that may not survive review. |
|
|
72
|
+
## Section Kind Choice
|
|
73
|
+
|
|
74
|
+
Use `context schema compile-draft --view minimal --format json` (or yaml) for the current legal kind list, priority order, and mount matrix. This skill adds only semantic guardrails:
|
|
75
|
+
|
|
76
|
+
- Stop at the first kind whose source-backed form fits.
|
|
77
|
+
- Do not choose `description` to hide lists, rules, tables, samples, risks, choices, or Q+A evidence that has a more precise kind.
|
|
78
|
+
- When the strongest kind is not mountable on this Node type, choose the next legal kind that the evidence truly supports, or `skip` with a structural challenge reason.
|
|
120
79
|
|
|
121
|
-
|
|
80
|
+
Confidence is optional. Omit it for ordinary confirmed claims; set it only when the evidence is clearly verified, inferred, or speculative according to the schema enum.
|
|
122
81
|
|
|
123
82
|
## Description anti-abuse gates
|
|
124
83
|
|
|
@@ -159,20 +118,14 @@ Check edge case conditions from the routing table at the top of this skill. If a
|
|
|
159
118
|
|
|
160
119
|
Estimate coverage from the provided `raw_snippets[]` before writing actions. Treat "the first quote is supported" as only a validation result, not a completion signal.
|
|
161
120
|
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
1. Count citation-eligible, non-navigation snippets and group them by `block_locator_id` heading prefix.
|
|
165
|
-
2. For 3-11 such snippets, read each snippet once. If later snippets are distinct facts, emit separate actions before moving to the next Node. Do not stop after one supported description just because the file is short.
|
|
166
|
-
3. For roughly 12+ citation-eligible snippets or 5+ distinct locator areas, plan multiple Sections in this single draft. Large manuals/design docs usually need several orthogonal actions.
|
|
167
|
-
4. This is not a quota: skip duplicates, navigation-only blocks, placeholders, and unsupported fragments. The goal is coverage of distinct source-backed knowledge, not maximum Section count.
|
|
168
|
-
5. If `context reconcile prepare` returns `compact-source-low-coverage` or `dense-source-low-coverage`, revise the same draft to cover the suggested uncovered evidence candidates before review/apply. Do not treat those warnings as ignorable polish.
|
|
121
|
+
Use the CLI-provided citation-eligible snippets and diagnostics as the coverage contract. Distinct source-backed facts should become distinct actions or evidence-carrying skips; duplicates, navigation-only blocks, placeholders, and unsupported fragments can be skipped. If later CLI diagnostics report low coverage, repair the same draft through the returned `next_action`.
|
|
169
122
|
|
|
170
123
|
### Step 2 — Classify each raw snippet
|
|
171
124
|
|
|
172
125
|
For each `raw_snippets[]` entry:
|
|
173
126
|
|
|
174
127
|
1. If the snippet only contains navigation or placeholder evidence (`Parent` / `Children` / `Related` / `Relations`, sibling links, "no detailed content", etc.), emit `skip`. Do not create a Section whose content is just "Children: ..." or "Related: ..." and do not summarize facts that are not present in the snippet.
|
|
175
|
-
2.
|
|
128
|
+
2. Pick kind using [Section Kind Choice](#section-kind-choice); stop at the first kind whose trigger fires.
|
|
176
129
|
3. Verify the kind against the mount matrix for `node.type`. Mismatch → pick the next legal kind down the chain, or emit `skip` with a reason pointing at a better Node. Never "fall through to description" just to place evidence.
|
|
177
130
|
4. If you land on `description`, walk the [Description anti-abuse gates](#description-anti-abuse-gates). Any gate fires → split or `skip`.
|
|
178
131
|
|
|
@@ -188,9 +141,10 @@ For each classified snippet:
|
|
|
188
141
|
- `source_support` is a lexical diagnostic, not the final semantic judge. Do not stuff raw text into `content` just to raise matched-term counts.
|
|
189
142
|
- There is no separate default `evidence-echo` warning. Treat "echo" as an anti-pattern: raw copied only to show basis/evidence, while `source_ref` already provides traceability.
|
|
190
143
|
- For `description` / `spec`, a concise summary plus the cited bullet list is acceptable when the bullets are the useful user-facing knowledge. It becomes echo only when the copied text is not meant to be read as active knowledge.
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
144
|
+
- For `example` Sections that cite a code, config, or command fence, keep `content` centered on the cited fenced block. Put framing prose such as "basic configuration example" in `summary`, or cite a separate prose block in a separate action when that prose is itself source-backed knowledge.
|
|
145
|
+
3. For long `content`, add `summary` when it helps readers or query output. Summary is LLM-authored reader/query aid: one plain paragraph, no Markdown, and should stay compact. The CLI only reports advisory hints for missing summaries on long content, Markdown/multi-paragraph formatting, or clearly overlong summaries; it does not enforce a content-length ratio and does not treat summary quality as an evidence failure. `source_support` hard-term matching checks `content` (and legacy `detail` when present), not `summary`; keep summaries faithful to `content`, but do not copy raw-only keywords into `summary` for lexical scoring.
|
|
146
|
+
4. Preserve `required_preserved_literals[]` from the CLI evidence view. For link-heavy citation-eligible evidence, keep the listed URLs in `content` when the action writes knowledge; for supporting-only literals, keep them in the repair/challenge context instead of citing them.
|
|
147
|
+
5. Omit `confidence` for ordinary confirmed claims. Assign it only when the evidence is clearly verified, inferred, or speculative according to the schema enum.
|
|
194
148
|
6. Fill `refers_to_nodes[]` per [Glossary and refers_to_nodes](#glossary-and-refers_to_nodes).
|
|
195
149
|
7. Cite evidence with `source_refs[]`, picking values from `raw_snippets[].source_ref`. When one Section summarizes contiguous multi-block evidence, list only the source refs consumed by that Section content; the CLI verifies that the refs can collapse to one canonical citation token and may auto-narrow over-wide citations. If the evidence is non-contiguous or contains separable claims, split the draft into separately cited actions instead of stretching one action across unrelated blocks. For `skip`, include `source_refs[]` only when the skip represents reviewed no-write material; omit evidence for purely deterministic no-ops such as unchanged input. Never submit singular `source_ref` or quoted-evidence fields; the CLI rejects them.
|
|
196
150
|
|
|
@@ -198,15 +152,8 @@ Rendered knowledge starts with optional `c4a:summary`, then the active `content`
|
|
|
198
152
|
|
|
199
153
|
### Step 4 — Emit the JSON
|
|
200
154
|
|
|
201
|
-
Emit one compile draft JSON document for the caller to
|
|
202
|
-
|
|
203
|
-
### Step 5 — Self-verify
|
|
155
|
+
Emit one compile draft JSON document for the caller to submit to the current envelope's `next_action.command`. No markdown wrapper, no leading prose, no trailing commentary.
|
|
204
156
|
|
|
205
|
-
|
|
206
|
-
- [ ] Every `description` action survives the [Description anti-abuse gates](#description-anti-abuse-gates). If not, **Step 2** to split or `skip`.
|
|
207
|
-
- [ ] Coverage matches evidence density: dense raw with one broad action returns to **Step 2** unless remaining snippets are duplicates / navigation / placeholders / already covered. Citation-eligible URL blocks are either preserved or `skip`-with-evidence.
|
|
208
|
-
- [ ] `skip` semantics: bare `skip` only for deterministic no-op (unchanged input or pure navigation); reviewed-no-write `skip` carries `source_refs[]` from the cited snippet. When raw adds nothing, exactly one `op: skip` with a reason — not `actions: []`. If not, **Step 3**.
|
|
209
|
-
- [ ] If any edge case condition applies (action/domain Node, note snippets, existing Sections, non-changed-only incremental, or structural defect), the relevant reference's Self-verify items were also satisfied.
|
|
210
|
-
- [ ] NodeContext was the only evidence source — no Read / Glob / Grep / Write / ad-hoc script or shell file traversal against `WORKSPACE_DIR`, `.context`, `/tmp` workflow artifacts, or CLI `--format json` stdout. If any was used, restart from the CLI-provided NodeContext.
|
|
157
|
+
Before returning, ensure `target_node` matches `node.slug`, fields conform to `context schema compile-draft`, `required_preserved_literals[]` are preserved or carried into an evidence-backed skip/repair challenge, and NodeContext was the only evidence source.
|
|
211
158
|
|
|
212
159
|
</procedures>
|
|
@@ -62,7 +62,7 @@ Supported `structure_challenge.kind` values: `missing_action_node`, `extra_actio
|
|
|
62
62
|
}
|
|
63
63
|
```
|
|
64
64
|
|
|
65
|
-
Different `kind` values demand different sub-fields.
|
|
65
|
+
Different `kind` values demand different sub-fields. On shape errors, follow the CLI's top-level diagnostics / `expected_shape` / returned repair `next_action` instead of guessing. `agent_hints[]`, when present, is only a cutover mirror and must not be the source of truth.
|
|
66
66
|
|
|
67
67
|
## What these are NOT
|
|
68
68
|
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: skill-compile-judge
|
|
3
3
|
description: >
|
|
4
|
-
Packaged skill invoked by `/context:compile`; not a user slash command. Consumes the
|
|
5
|
-
judges each draft action's source support and relation to listed candidates,
|
|
6
|
-
and emits a compile.judge-decisions.
|
|
4
|
+
Packaged skill invoked by `/context:compile`; not a user slash command. Consumes the budget-safe compile prepare summary
|
|
5
|
+
and candidate detail views, judges each draft action's source support and relation to listed candidates,
|
|
6
|
+
and emits a compile.judge-decisions.v2 document for `context reconcile review`.
|
|
7
7
|
tools:
|
|
8
8
|
- Bash
|
|
9
9
|
---
|
|
@@ -16,9 +16,10 @@ decisions only; the CLI reviews, applies, and writes every workspace change.
|
|
|
16
16
|
|
|
17
17
|
## TL;DR — Non-negotiables
|
|
18
18
|
|
|
19
|
-
-
|
|
19
|
+
- Invoke this skill only when the caller's top-level envelope has `next_action.kind: "review_reconcile_decisions"` or the prepare payload contains `judge_handoff`. If the active envelope asks for `patch_compile_draft`, `continue_compile_cycle`, or another action, stop and follow that `next_action.command` instead.
|
|
20
|
+
- Input is the budget-safe compile prepare summary. For items with candidates, load only that item's candidate detail view with `context workflow show --payload prepare --view candidates --item-id <item-id> --unwrap --format json`.
|
|
20
21
|
- Do not inspect workspace storage directly or run ad-hoc scripts to reconstruct candidates. Use only `items[]`, `evidence[]`, `source_support` diagnostics, `candidates[]`, `previous_decisions[]`, and `judge_handoff`.
|
|
21
|
-
- Output exactly one JSON or YAML document with `schema_version: "compile.judge-decisions.
|
|
22
|
+
- Output exactly one JSON or YAML document with `schema_version: "compile.judge-decisions.v2"` and `decisions[]`.
|
|
22
23
|
- Keep one decision per prepared `item_id`, preserving prepare order.
|
|
23
24
|
- For support, output `support_verdict: supported | weak | unsupported` plus `support_reason`.
|
|
24
25
|
- For relation, output `relation_verdict: new | duplicate | supersede | conflict | merge_into` plus `relation_reason`.
|
|
@@ -35,7 +36,7 @@ decisions only; the CLI reviews, applies, and writes every workspace change.
|
|
|
35
36
|
## Output Shape
|
|
36
37
|
|
|
37
38
|
```yaml
|
|
38
|
-
schema_version: "compile.judge-decisions.
|
|
39
|
+
schema_version: "compile.judge-decisions.v2"
|
|
39
40
|
mode: compile
|
|
40
41
|
decisions:
|
|
41
42
|
- item_id: claim-001
|
|
@@ -50,7 +51,7 @@ decisions:
|
|
|
50
51
|
For a relation against an existing candidate:
|
|
51
52
|
|
|
52
53
|
```yaml
|
|
53
|
-
schema_version: "compile.judge-decisions.
|
|
54
|
+
schema_version: "compile.judge-decisions.v2"
|
|
54
55
|
mode: compile
|
|
55
56
|
decisions:
|
|
56
57
|
- item_id: claim-002
|
|
@@ -80,10 +81,11 @@ decisions:
|
|
|
80
81
|
|
|
81
82
|
<procedures>
|
|
82
83
|
|
|
83
|
-
### Step 1 — Load
|
|
84
|
+
### Step 1 — Load Prepare Summary And Candidate Details
|
|
84
85
|
|
|
85
|
-
|
|
86
|
-
load
|
|
86
|
+
Use the caller-provided compact prepare output. For every item with candidates,
|
|
87
|
+
load its candidate detail view before judging relation. Do not infer missing
|
|
88
|
+
candidates from memory or bypass the candidate detail view.
|
|
87
89
|
|
|
88
90
|
### Step 2 — Judge Support
|
|
89
91
|
|
|
@@ -101,7 +103,7 @@ candidate list is empty, emit `new` with an empty compared list and
|
|
|
101
103
|
|
|
102
104
|
### Step 4 — Emit Judge Decisions
|
|
103
105
|
|
|
104
|
-
Return only the `compile.judge-decisions.
|
|
106
|
+
Return only the `compile.judge-decisions.v2` document. The caller passes it
|
|
105
107
|
directly to `context reconcile review --decisions -`.
|
|
106
108
|
|
|
107
109
|
</procedures>
|
|
@@ -127,7 +127,7 @@ the user's wording indicates newly captured material is not yet knowledge.
|
|
|
127
127
|
|
|
128
128
|
<procedures>
|
|
129
129
|
|
|
130
|
-
|
|
130
|
+
### Step 1 — Classify Problem Intent
|
|
131
131
|
|
|
132
132
|
Determine what the user is trying to learn. Choose the appropriate command from the Query Route table above.
|
|
133
133
|
|
|
@@ -155,7 +155,7 @@ Determine what the user is trying to learn. Choose the appropriate command from
|
|
|
155
155
|
- Action: Run `context query --intent recall --profile <reconcile-*> --query "..."`
|
|
156
156
|
- ❌ Never use for ordinary questions
|
|
157
157
|
|
|
158
|
-
|
|
158
|
+
### Step 2 — Execute Query And Interpret Response
|
|
159
159
|
|
|
160
160
|
Run the command from Step 1. Read the CLI output carefully.
|
|
161
161
|
|
|
@@ -174,7 +174,7 @@ Run the command from Step 1. Read the CLI output carefully.
|
|
|
174
174
|
- ✓ **`node_view` says `visible: complete` / `visibility.complete=true`** → Do not run `section_search` merely to check completeness; use `section_search` only when you need keyword narrowing or ranking inside the Node
|
|
175
175
|
- ✓ **Entries returned** → Proceed to Step 3
|
|
176
176
|
|
|
177
|
-
|
|
177
|
+
### Step 3 — Compose Answer From Returned Structure
|
|
178
178
|
|
|
179
179
|
Use only the returned Node/Section structure and content. Do not synthesize beyond what was returned.
|
|
180
180
|
|
|
@@ -206,7 +206,7 @@ To dive deeper into any system, ask me for more details or let me know which Nod
|
|
|
206
206
|
**Why show structure first?** Even when you know keywords, structure queries reveal the full landscape.
|
|
207
207
|
Agents should explore Nodes first, then use section_search for details within a chosen Node.
|
|
208
208
|
|
|
209
|
-
|
|
209
|
+
### Step 4 — Explore Further When Requested
|
|
210
210
|
|
|
211
211
|
Once Node scope is clear, user may ask for deeper exploration.
|
|
212
212
|
|
|
@@ -19,7 +19,7 @@ only; the CLI performs every write.
|
|
|
19
19
|
|
|
20
20
|
## TL;DR — Non-negotiables
|
|
21
21
|
|
|
22
|
-
- Input is the
|
|
22
|
+
- Input is the budget-safe `context reconcile prepare` summary or issues view. When an item lists candidates, load that item's candidate detail view with `context workflow show --payload prepare --view candidates --item-id <item-id> --unwrap --format json`; request broader detail only when a CLI `next_action` or detail command explicitly asks for it. Never `grep` / `sed` / `jq` / `cat` / `head` workflow scratch files or `--format json` stdout to recover prepare fields, and do not Read / Glob / Grep / Write workspace `raw/` / `knowledge/` / `archive/` / `decisions/` — the prepare payload and review output are the only inputs.
|
|
23
23
|
- Ordinary compile prepare judgment belongs to `skill-compile-judge`. Use this skill for refresh/drop/non-compile reconcile, or when compile review asks for scope/omit/user-confirmation reasoning that is outside the judge handoff.
|
|
24
24
|
- Output: one YAML or JSON document conforming to `context schema semantic-decisions --format yaml`. The schema defines canonical `relation` and `action` enums and the per-action required fields; do not memorise the enum list from this skill.
|
|
25
25
|
- Accept a prepared `default_decision` with the compact form `{ item_id, accept_default: true }` (optionally `decided_by` / `rationale`); the CLI hydrates `target` / `proposed`. Empty `decisions: []` means "no items in prepare," not "accept all defaults." Without `--accept-safe-defaults`, emit one compact accept entry per safe default you intend to accept. With `--accept-safe-defaults`, the CLI auto-accepts mechanically safe no-candidate supported writes and reviewed-no-write skips, so emit only the manual decisions that still need judgment.
|
|
@@ -37,7 +37,7 @@ only; the CLI performs every write.
|
|
|
37
37
|
|---|---|
|
|
38
38
|
| `prepare.mode` is `drop` or `refresh` (covers `remove_unsupported` mode semantics, `reanchor`, `split_then_reanchor`) | [references/mode-semantics.md](references/mode-semantics.md) |
|
|
39
39
|
| review returned `support_confirmation`, `omit_confirmation`, `scope_review_required`, or any `ask_user` you need to upgrade to an executable decision | [references/user-confirmation.md](references/user-confirmation.md) |
|
|
40
|
-
| review
|
|
40
|
+
| review diagnostics or cutover hints returned `code: "context-only-leakage-high"` | [references/leakage-and-ownership.md](references/leakage-and-ownership.md) |
|
|
41
41
|
| items carry `temporal_prior` / `source_captured_at` / `temporal_disposition`, `source_support.evidence_block_*`, or prepared long `proposed.content` / `proposed.summary` | [references/temporal-and-evidence.md](references/temporal-and-evidence.md) |
|
|
42
42
|
| considering `action: omit`, or items look redundant / low-value / scope-wrong | [references/scope-review-and-omit.md](references/scope-review-and-omit.md) |
|
|
43
43
|
|
|
@@ -122,7 +122,7 @@ Drop-mode-only branches (`reanchor`, `split_then_reanchor`, `remove_unsupported`
|
|
|
122
122
|
|
|
123
123
|
Emit one document with `schema_version: "1.0"` and `decisions[]`. Include only executable final decisions plus unresolved `ask_user` questions. Do not include prose outside the document.
|
|
124
124
|
|
|
125
|
-
If the latest review rejected the batch with `context-only-leakage-high`, do not convert it into a generic `ask_user`. Follow [references/leakage-and-ownership.md](references/leakage-and-ownership.md): regenerate the affected decision using
|
|
125
|
+
If the latest review rejected the batch with `context-only-leakage-high`, do not convert it into a generic `ask_user`. Follow [references/leakage-and-ownership.md](references/leakage-and-ownership.md): regenerate the affected decision using the review diagnostic's explicit repair options and cited item ids, then rerun `context reconcile review`.
|
|
126
126
|
|
|
127
127
|
### Step 4 — Self-verify
|
|
128
128
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Context-only leakage and ownership upgrades
|
|
2
2
|
|
|
3
|
-
Consult this reference when `context reconcile review` returns
|
|
3
|
+
Consult this reference when `context reconcile review` returns diagnostics or cutover hints with `code: "context-only-leakage-high"`. For runs without that code, ignore this file.
|
|
4
4
|
|
|
5
5
|
## What the hint means
|
|
6
6
|
|
package/scripts/build-plugin.ts
CHANGED
|
@@ -34,6 +34,8 @@ const repoRoot = resolve(pkgRoot, "../..");
|
|
|
34
34
|
const PLUGINS_ROOT = process.env.C4A_PLUGINS_ROOT
|
|
35
35
|
? resolve(process.env.C4A_PLUGINS_ROOT)
|
|
36
36
|
: resolve(repoRoot, "c4a-plugins");
|
|
37
|
+
const MARKETPLACE_NAME = "c4a";
|
|
38
|
+
const PLUGIN_NAME = "context";
|
|
37
39
|
|
|
38
40
|
interface CommandSource {
|
|
39
41
|
slug: string;
|
|
@@ -116,7 +118,7 @@ function rewriteClaudeSlashCommandsForCursor(body: string): string {
|
|
|
116
118
|
.replace(/\/context:([a-z-]+)/g, (_match, slug: string) =>
|
|
117
119
|
slug === "context" ? "/context" : `/context-${slug}`
|
|
118
120
|
)
|
|
119
|
-
.replace(/^## Your
|
|
121
|
+
.replace(/^## Your [Tt]ask$/gm, "## Workflow")
|
|
120
122
|
.replace(/\bPackaged skill invoked by\b/g, "Internal procedure invoked by")
|
|
121
123
|
.replace(/\bnot a user slash command\b/g, "not a user command");
|
|
122
124
|
}
|
|
@@ -352,7 +354,7 @@ function stripHtmlComments(markdown: string): string {
|
|
|
352
354
|
function publicSkillBody(command: CommandSource, publicName: string): string {
|
|
353
355
|
const claudeCommand = claudeCommandForSlug(command.slug);
|
|
354
356
|
const rewrittenBody = rewritePackagedSkillReferences(command.body, publicEntrySkillPath)
|
|
355
|
-
.replace(/^## Your
|
|
357
|
+
.replace(/^## Your [Tt]ask$/gm, "## Workflow");
|
|
356
358
|
return `---\nname: ${publicName}\ndescription: >\n ${command.description} Equivalent to Claude ${claudeCommand}; use the local \`context\` CLI for workspace writes.\ntools:\n - Bash\n---\n\n# ${command.title}\n\nPublic C4A Context entry for agents that expose skills instead of Claude slash commands.\n\n- Public entry: \`${publicName}\`\n- Claude equivalent: \`${claudeCommand}\`\n- CLI primitive prefix: \`context ...\`\n- Internal procedures live under \`${INTERNAL_PROCEDURES_DIR}/\`; read each referenced file in full before following that step.\n\n---\n\n${rewrittenBody.trimEnd()}\n`;
|
|
357
359
|
}
|
|
358
360
|
|
|
@@ -601,29 +603,29 @@ async function ensurePluginsRoot(): Promise<void> {
|
|
|
601
603
|
|
|
602
604
|
async function writeMarketplaceManifests(version: string): Promise<void> {
|
|
603
605
|
const claudeMarketplace = {
|
|
604
|
-
name:
|
|
606
|
+
name: MARKETPLACE_NAME,
|
|
605
607
|
owner: { name: "c4a" },
|
|
606
608
|
plugins: [{
|
|
607
|
-
name:
|
|
609
|
+
name: PLUGIN_NAME,
|
|
608
610
|
source: "./claude",
|
|
609
611
|
description: "Context For AI — local knowledge workspace. Capture docs, extract code structure, compile into an interlinked wiki with source-traced facts.",
|
|
610
612
|
}],
|
|
611
613
|
};
|
|
612
614
|
const cursorMarketplace = {
|
|
613
|
-
name:
|
|
615
|
+
name: MARKETPLACE_NAME,
|
|
614
616
|
owner: { name: "Context4AI", email: "support@context4ai.dev" },
|
|
615
617
|
metadata: { description: "C4A Context plugin marketplace" },
|
|
616
618
|
plugins: [{
|
|
617
|
-
name:
|
|
619
|
+
name: PLUGIN_NAME,
|
|
618
620
|
source: "./cursor",
|
|
619
621
|
description: "Turn project sources into a local, source-linked knowledge workspace your agent can maintain and query.",
|
|
620
622
|
}],
|
|
621
623
|
};
|
|
622
624
|
const codexMarketplace = {
|
|
623
|
-
name:
|
|
625
|
+
name: MARKETPLACE_NAME,
|
|
624
626
|
interface: { displayName: "C4A Marketplace" },
|
|
625
627
|
plugins: [{
|
|
626
|
-
name:
|
|
628
|
+
name: PLUGIN_NAME,
|
|
627
629
|
source: { source: "local", path: "./codex" },
|
|
628
630
|
policy: { installation: "AVAILABLE", authentication: "ON_INSTALL" },
|
|
629
631
|
category: "Productivity",
|
|
@@ -37,8 +37,11 @@ The bucket contains:
|
|
|
37
37
|
- The code aspect uses `evidence.mode: none`: it does not generate
|
|
38
38
|
`raw/.evidence` block manifests. Symbols, files, and edges are already
|
|
39
39
|
represented by the bucket JSONL indexes.
|
|
40
|
-
-
|
|
41
|
-
|
|
40
|
+
- `context compile code` converts package and symbol rows into code-owned
|
|
41
|
+
Sections with code `source_ref` values such as
|
|
42
|
+
`src-1#package:<package>@<hash>` and
|
|
43
|
+
`src-1#symbol:<locator>:<kind>@<hash>`. These refs resolve against the raw
|
|
44
|
+
code snapshot JSONL indexes, not against prose evidence blocks.
|
|
42
45
|
- Runner raw extraction results are intentionally not written as a separate
|
|
43
46
|
bucket file. Future consumers should read `digests.jsonl` and the flat
|
|
44
47
|
package/symbol/edge projections instead.
|