chore(repo): add git-cliff config, sort deps, add rust-version
Some checks failed
Public Repo Readiness / Check Public Repo Readiness (push) Has been cancelled

- Add cliff.toml with GitHub remote wiring, issue link parsers, and
  clean group names (no sort prefixes)
- Add rust-version = "1.87.0" and codegen-units = 1 to workspace
- Sort workspace.dependencies alphabetically; add notstrap path entry
- Add CLAUDE.md preflight block; reformat workspace table to 100-col
- Delete stale brainstorm artifacts and root HANDOFF.md
This commit is contained in:
2026-07-14 10:14:43 -04:00
parent d9f476ff79
commit d34a4f9363
16 changed files with 147 additions and 156 deletions

View File

@@ -3,7 +3,7 @@
A `rust-script` preflight that surfaces repo context in one shot: shell detection, git state,
tracked-file tree, and HANDOFF document read/update.
```rust
````rust
#!/usr/bin/env rust-script
//! ```cargo
//! [dependencies]
@@ -238,7 +238,7 @@ fn main() -> Result<()> {
println!("\n{}", "╚══ done ══╝".bold().yellow());
Ok(())
}
```
````
## Usage
@@ -253,13 +253,13 @@ rust-script preflight.rs
## What it surfaces
| Section | Details |
|---------|---------|
| Environment | Current shell (`$SHELL`), cwd, git root |
| Git status | Branch name, short status (clean or dirty file list) |
| Git history | Last 7 commits, one-line with decoration |
| Tracked file tree | `git ls-files` output rendered as an indented tree, depth ≤ 3 |
| HANDOFF docs | Full content (first 40 lines) of any `HANDOFF.*` file at repo root; stamps `last_preflight:` timestamp |
| Section | Details |
| ----------------- | ------------------------------------------------------------------------------------------------------ |
| Environment | Current shell (`$SHELL`), cwd, git root |
| Git status | Branch name, short status (clean or dirty file list) |
| Git history | Last 7 commits, one-line with decoration |
| Tracked file tree | `git ls-files` output rendered as an indented tree, depth ≤ 3 |
| HANDOFF docs | Full content (first 40 lines) of any `HANDOFF.*` file at repo root; stamps `last_preflight:` timestamp |
## Dependencies