V1 release pass: polish first-time user path for 0.1.0 - #30
Merged
Conversation
Closes #28 Add CHANGELOG.md with Keep-a-Changelog format covering all V1 capabilities and known limitations. Verified: ./scripts/check passes.
- Extract Cli struct and parse() from main.rs into src/cli.rs as a public module - Add assert_cmd + predicates dev-dependencies for integration tests - Add tests/cli.rs with 8 integration tests covering all acceptance criteria: --help, --version, --demo --check-config, --config kitchen-sink, --config dogfood, unknown argument, missing config file, --config without path - Add 5 unit tests for Cli::parse() in src/cli.rs - All 33 tests pass (25 existing + 8 new integration + 5 new unit, 5 unit overlap with parse coverage) Closes #19
- Add LICENSE file with standard MIT license, copyright 2026 Travis Nesland - Add description, license, repository, and readme fields to Cargo.toml - Package metadata verified via cargo metadata --no-deps Closes #25
- Add tests/examples.rs that discovers all examples/*.toml and validates each with HudConfig::load_from_path (the real config parser) - Future example configs are automatically covered - A broken example config will now fail ./scripts/check Closes #21
- Add examples/starter.toml: self-contained config using only printf, date, and pwd — no external tools or authentication required - Polish examples/kitchen-sink.toml: remove gh action (assumes auth), replace issue table with generic service table, clarify orientation text - All examples validated by ./scripts/check and --check-config Closes #24
- Add Quality Policy section to AGENTS.md - ./scripts/check is the local definition of done - Behavior changes need automated coverage or documented exception - Docs-only changes must leave the repo green Closes #20
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.
Closes #18
This PR bundles the release-pass sub-issues that polish hud for a public 0.1.0:
CI:
./scripts/checkpasses all 39 tests (30 unit, 8 CLI integration, 1 example validation).cargo fmtis clean.Why a single PR: These are all sub-issues of #18 and each commit addresses exactly one issue. The commits are ordered to be independently reviewable — but since they all land before the 0.1.0 tag, a single PR keeps the merge sequence clean.