Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
22 changes: 0 additions & 22 deletions .github/ISSUE_TEMPLATE/pioneer-claim.md

This file was deleted.

23 changes: 12 additions & 11 deletions .planning/STATE.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,19 +2,20 @@
gsd_state_version: 1.0
milestone: phase-1-canon-anchor
milestone_name: canon-anchor
status: initialized
last_updated: "2026-06-13T22:00:00-05:00"
last_activity: 2026-06-13
status: completed
last_updated: "2026-06-17T20:45:00-05:00"
last_activity: 2026-06-14
superseded_by: "../.planning/STATE.md (root control plane); shipped via root plans 02-03 + Phase 4 Category A/B"
progress:
total_phases: 3
completed_phases: 0
total_plans: 0
completed_plans: 0
percent: 0
total_phases: 1
completed_phases: 1
total_plans: 3
completed_plans: 3
percent: 100
product_readiness:
status: initialized
estimated_completion_band: "not started"
note: "This repo tracks public-methodology alignment."
status: completed
estimated_completion_band: "100% (public-methodology slice shipped + pushed)"
note: "Public-methodology alignment complete: 02-03 minimal drift fix, Phase 4 Category A (Dental Pack->dental denial + canon guard), Category B (pack->dataset de-pack), and the 2026-06-14 shim cleanup all done and pushed. No open follow-on. Local 3-phase skeleton superseded by root execution."
---

# State
Expand Down
18 changes: 17 additions & 1 deletion scripts/check-canon.sh
Original file line number Diff line number Diff line change
Expand Up @@ -35,4 +35,20 @@ if [ -n "$synth_hits" ]; then
exit 1
fi

echo "canon OK: no legacy pack/specialty identifiers or synthetic pack vocabulary"
# 3. Retired pricing/program framing. Pioneer / Founding 5 / "$49 locked for life"
# are RETIRED (2026-06-14 v2 de-drift; current tiers = Assist / Pay-as-you-go /
# Co-pilot / Autopilot). The pioneer-claim issue template survived checks 1-2
# because they only ban pack IDENTIFIERS, not pricing copy. Scanned on the public
# surfaces (README, reference docs, .github); .planning history is excluded.
RETIRED_PATTERN='pioneer|founding 5|founding pioneer|locked for life|\$49|\$349'
retired_hits="$(grep -rIniE "$RETIRED_PATTERN" "$ROOT/README.md" "$ROOT/reference" "$ROOT/.github" \
--exclude="check-canon.sh" 2>/dev/null || true)"

if [ -n "$retired_hits" ]; then
echo "FAIL: retired Pioneer / pricing framing on a public surface:" >&2
echo "$retired_hits" >&2
echo "Current canon: Assist (free) / Pay as you go / Co-pilot / Autopilot. No Pioneer." >&2
exit 1
fi

echo "canon OK: no legacy pack/specialty identifiers, synthetic pack vocabulary, or retired pricing framing"
Loading