Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
eef9df6
docs: draft native Kubernetes execution provider plan
JAORMX Sep 15, 2026
819b6af
docs: select gRPC and real-provider kind qualification
JAORMX Sep 16, 2026
a503054
docs: renumber native Kubernetes execution ADR
JAORMX Sep 16, 2026
622a57c
docs: reconcile native Kubernetes shipping contract
JAORMX Sep 21, 2026
23d9e4b
Merge origin/main into native Kubernetes execution plan
JAORMX Sep 21, 2026
2a123e0
fix(tooling): drain acceptance checker category pipelines
JAORMX Sep 21, 2026
1efd983
docs: resolve native Kubernetes draft ADR number collision
JAORMX Sep 21, 2026
5f49a36
docs: repair custom-provider metadata proof pointer
JAORMX Sep 21, 2026
f6fed8e
docs: specify exact native migration receipt replay
JAORMX Sep 21, 2026
7172ce8
docs: trace native execution acceptance to implemented proofs
JAORMX Sep 21, 2026
9f3d287
docs: map native execution coverage to verified candidate
JAORMX Sep 21, 2026
a81d773
docs: close bounded native execution proofs and clarify evidence limits
JAORMX Sep 21, 2026
3761f63
docs(plan): bind rotation to immutable material publication
JAORMX Sep 21, 2026
11597f5
docs(plan): record deterministic rotation repair evidence
JAORMX Sep 21, 2026
7d9e37a
docs(plan): bound manual native execution completion qualification
JAORMX Sep 21, 2026
fd25717
docs(plan): synchronize native execution repair evidence
JAORMX Sep 21, 2026
dfc1705
docs(execution): record completed native candidate qualification
JAORMX Sep 22, 2026
6f29e76
Merge origin/main into native execution plan
JAORMX Sep 23, 2026
4ffb2c2
Merge latest origin/main into native execution plan
JAORMX Sep 23, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,20 @@ sed_in_place 's/\*\*Expected tasks:\*\* deferred to orchestration/\*\*Expected t
sed_in_place 's|<!-- combined rationale fixture placeholder -->|**Combined rationale:** The fixture is one indivisible documentation check, so separate plan review adds no value.|' "$combined_valid"
bash "$checker" "$combined_valid" >/dev/null

# Exceed pipe capacity after the first category: an early-exiting reader must
# not turn a valid Split or Combined contract into a SIGPIPE failure.
for source in "$valid" "$combined_valid"; do
large="$root/acceptance/large-${source##*/}"
awk '
{ print }
/^- \*\*gRPC \/ protobuf:\*\*/ {
for (i = 0; i < 16384; i++)
print " Additional interface detail keeps the contract larger than a pipe buffer."
}
' "$source" >"$large"
bash "$checker" "$large" >/dev/null
done

for case_name in missing-contract invalid-contract missing-category bare-none placeholder bad-delivery bad-status proposed-unchecked missing-human placeholder-human checked-without-decision; do
cp "$valid" "$root/acceptance/$case_name.md"
done
Expand Down
3 changes: 3 additions & 0 deletions docs/acceptance/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,9 @@ PR after verification. There is no cleanup or status-only PR.

## Plans

- [Native Kubernetes execution provider](native-kubernetes-execution.md) — separately deployed,
optional controller/executor service in this monorepo, with retained workspaces and kind
qualification. Status: draft; implementation is planned as a draft PR stacked on the plan PR.
- [Purpose-attributed auxiliary token usage](auxiliary-token-usage.md) — records every reachable session-associated auxiliary LLM call in the canonical ledger under a purpose-specific provider/model-attributed kind, without changing main-run accounting or budgets. Status: proposed.
- [Development-spine work classification](adr-scope-classification.md) — routes Spike,
Routine, Bounded, and Architectural work; keeps acceptance planning for substantive work
Expand Down
Loading
Loading