Single-commit clean baseline after security scrub of niche-tells, project codenames, internal jargon, and contributor-email leaks. Contents: - 100 Rust crates (_primitives/_rust/) - 37 agent manifests (_manifests/) + generated specs (_generated/) - 67 user-invocable skills (skills/) - 33 hooks (hooks/) - Composition blocks (_blocks/) - Documentation (docs/, README.md) - TS adapter packages (_ts_packages/) - Assembler (_assembler/) - Roles (_roles/) - Templates (_templates/) - Forgejo CI (.forgejo/) Author: Denis Parfionovich <info@greendragon.info> License: see LICENSE.
1.2 KiB
1.2 KiB
STACK — Rust CLI / tooling
Cargo workspace. Default language — no language justification needed.
Layout:
- Workspace root
Cargo.tomldeclaresmembers = [...]; one crate per cube. - Binaries under
<crate>/src/bin/*.rs; library root<crate>/src/lib.rs. - Integration tests in
<crate>/tests/*.rs; unit tests inline with#[cfg(test)].
Hard invariants:
- File > 200 LOC → split (Constructor Pattern). Function > 30 LOC → split.
clippy::pedanticin CI; warnings = errors onmain.thiserrorfor library error enums,anyhow::Resultfor binaries only. NeverBox<dyn Error>in new code.- NO
.unwrap()/.expect()in prod paths. Allowed in tests and one-shot scripts flagged// SCRIPT. - Benchmarks live under
benches/withcargo bench(Criterion) and the documented number is ALWAYS fromcargo test --release/cargo bench— never debug timings.
CI gate:
cargo fmt --check && cargo clippy --all-targets -- -D warnings && cargo test --release
Pre-commit: cargo fmt && cargo clippy --fix --allow-dirty && cargo test.
Forbidden: Rc<RefCell<...>> in hot paths (use &mut or Arc<Mutex<_>>); unsafe without a // SAFETY: comment explaining the invariant; panic-on-parse in library crates.