832375f2ac
All 176 files in the four accumulating directories now use a zero-padded 4-digit counter prefix that reflects creation order (`NNNN-slug.md`). The counter is assigned per directory in strict git-log creation order; ties broken alphabetically by original name. The old `YYYY-MM-DD-` prefix on docs/specs/ and docs/plans/ files is dropped — the date is recoverable from git log and the counter carries the ordering. A file's counter is stable for the life of the file: never reassigned, never reused, never compacted. Deleted files retire their counter; subsequent files do not fill the gap. This is the property that lets cross-references stay literal — refs use the full filename including the counter (`design/contracts/0007-honesty-rule.md`) so they grep cleanly and resolve directly without a glob step. 313 cross-references updated across .md/.rs/.toml/.c/.json files (test pins, include_str! paths, design-INDEX entries, baseline notes, runtime C comments, inter-contract markdown links incl. bare basename and `../models/foo.md` forms). CLAUDE.md gets a new "File-naming convention" section spelling out the rule and rationale. skills/brainstorm/SKILL.md and skills/planner/SKILL.md updated so new spec/plan creation produces counter-prefixed names from the start. The full test suite (cargo test --workspace) passes.
30 lines
1.3 KiB
Rust
30 lines
1.3 KiB
Rust
//! pd.3 (`prelude-decouple` milestone): pin that
|
|
//! `examples/prelude.ail.json` does NOT exist on disk. Surfaces
|
|
//! immediately if the file is recreated by accident or a future
|
|
//! refactor reverts the embed-source swap.
|
|
//!
|
|
//! Companion to the `examples_ail_json_inventory_matches_carve_outs`
|
|
//! test in `crates/ailang-core/tests/carve_out_inventory.rs`: that
|
|
//! one asserts the carve-out list is exactly seven; this one
|
|
//! asserts the eighth (retired) file specifically does not exist.
|
|
//! Either test detects an accidental re-introduction; this one
|
|
//! pinpoints the file by name in the error message.
|
|
|
|
use std::path::Path;
|
|
|
|
#[test]
|
|
fn prelude_ail_json_does_not_exist_on_disk() {
|
|
let path = Path::new("../../examples/prelude.ail.json");
|
|
assert!(
|
|
!path.exists(),
|
|
"examples/prelude.ail.json must NOT exist after the prelude-\
|
|
decouple milestone (closed 2026-05-14). The prelude is now \
|
|
embedded as prelude.ail in ailang-surface. If you intentionally \
|
|
re-introduced this file, you must also: (a) remove this pin, \
|
|
(b) restore the §C4 (b) entry in carve_out_inventory.rs, \
|
|
(c) revert the §C4 (b) status marker in \
|
|
docs/specs/0025-form-a-default-authoring.md, and \
|
|
(d) record the rationale in the commit body."
|
|
);
|
|
}
|