docs: add Copyright + StrayMark notice; SPDX headers on Rust sources#17
Merged
Conversation
…ders on sources - README: add "Built with AI · Powered by StrayMark" and "Copyright" sections mirroring the format used in StrangeDaysTech/arborist-metrics, adapted to this CLI's surface (clap, table/JSON/CSV output, self-update, 29-test integration suite). - Add SPDX-License-Identifier + Copyright header to every Rust source under src/ and tests/cli/ (in line with the Rust ecosystem convention and the identical change made in arborist-metrics v0.1.3). - tests/fixtures/*.rs intentionally left untouched — those files are inputs to the analyzer in integration tests; modifying them would change the expected metrics. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
The shell loop that prepended the SPDX header used `$(cat ...)` which strips trailing newlines, leaving every patched file without its final `\n`. cargo fmt --check (run in CI) flagged all 20 files. Running cargo fmt restores the trailing newline; no semantic changes. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This was referenced May 20, 2026
Merged
montfort
added a commit
that referenced
this pull request
May 20, 2026
Patch bump rolling up: - arborist-metrics 0.1.2 → 0.1.3 (#16) - README: Copyright + "Built with AI · Powered by StrayMark" sections (#17, #18) - SPDX headers on all Rust sources under src/ and tests/cli/ (#17) Also expands `package.exclude` in Cargo.toml to match the upstream arborist-metrics convention, dropping agent-tooling directories (.agent/, .claude/, .cursor/, .gemini/) and StrayMark governance docs (CLAUDE.md, GEMINI.md, STRAYMARK.md, AGENTS.md) from the crates.io tarball. The package goes from 61 → 33 files. Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
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
arborist-metrics:arborist-metricsv0.1.3 to every Rust source undersrc/andtests/cli/:tests/fixtures/*.rsintentionally left untouched — those files are inputs to the analyzer in integration tests; modifying them would change the expected metrics.Test plan
cargo build— cleancargo test— 29/29 passingcargo clippy -- -D warnings— no warnings🤖 Generated with Claude Code