chore: add enterprise dev workflow#1
Merged
Merged
Conversation
Apply rustfmt to all crates to establish a clean formatting baseline. CI now enforces `cargo fmt --check` so this must pass before merge.
- Track CLAUDE.md in git (removed from .gitignore) so workflow rules are shared - Add Development Workflow section to CLAUDE.md: branching, conventional commits, PR process, release process, pre-commit checks - Add PR template with summary, changes, test plan sections - Add git-cliff config (cliff.toml) for automated changelog generation - Harden CI: add cargo fmt --check, add PR title lint via semantic-pull-request - Update CONTRIBUTING.md with new branch and commit conventions
- Replace `is_some()` + `unwrap()` with `if let Some()` (goals.rs)
- Replace `!x.is_none()` with `x.is_some()` (search.rs)
- Replace `.max().min()` with `.clamp()` (cloud/lib.rs)
- Replace `push_str("\n")` with `push('\n')` (dashboard/lib.rs)
- Replace `drain(..).collect()` with `std::mem::take()` (ingest.rs)
- Replace `for row { if let Ok }` with `.flatten()` (corpus.rs)
- Collapse identical if/else-if blocks (autonomous_headless.rs, event_loop.rs)
- Add `Default` impl for `OllamaProposer` (ollama.rs)
- Add `#[allow(clippy::too_many_arguments)]` for upsert_item (embeddings.rs)
markm39
added a commit
that referenced
this pull request
Mar 28, 2026
* chore: cargo fmt across workspace
Apply rustfmt to all crates to establish a clean formatting baseline.
CI now enforces `cargo fmt --check` so this must pass before merge.
* chore: add enterprise dev workflow
- Track CLAUDE.md in git (removed from .gitignore) so workflow rules are shared
- Add Development Workflow section to CLAUDE.md: branching, conventional commits,
PR process, release process, pre-commit checks
- Add PR template with summary, changes, test plan sections
- Add git-cliff config (cliff.toml) for automated changelog generation
- Harden CI: add cargo fmt --check, add PR title lint via semantic-pull-request
- Update CONTRIBUTING.md with new branch and commit conventions
* fix: resolve clippy warnings for Rust 1.94 CI compatibility
- Replace `is_some()` + `unwrap()` with `if let Some()` (goals.rs)
- Replace `!x.is_none()` with `x.is_some()` (search.rs)
- Replace `.max().min()` with `.clamp()` (cloud/lib.rs)
- Replace `push_str("\n")` with `push('\n')` (dashboard/lib.rs)
- Replace `drain(..).collect()` with `std::mem::take()` (ingest.rs)
- Replace `for row { if let Ok }` with `.flatten()` (corpus.rs)
- Collapse identical if/else-if blocks (autonomous_headless.rs, event_loop.rs)
- Add `Default` impl for `OllamaProposer` (ollama.rs)
- Add `#[allow(clippy::too_many_arguments)]` for upsert_item (embeddings.rs)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Changes
cargo fmt --checkstep, add PR title lint viaamannn/action-semantic-pull-requestcargo fmtapplied (62 files, formatting only)Test plan
cargo fmt --checkpassescargo build --workspace(pre-existing state, no logic changes)Notes
cargo fmtcommit is large (62 files) but contains zero logic changes -- purely whitespace/formatting.git/hooks/), not distributable via git. Contributors install it manually.