Conversation
- help.rs: const thread_local initializer
- spawn.rs: derive Default; use !contains_key; struct shorthand in tests
- term.rs: div_ceil; writeln! instead of write with newline
- tui/view.rs: to_string() instead of format!
- upgrade.rs: unwrap_or_default()
- http.rs: rename to snake_case
- cmd/{config_tui,dispatch,keys,menu,models}.rs: &PathBuf -> &Path
- cmd/dispatch.rs: match -> matches!
Co-Authored-By: Claude Code <noreply@anthropic.com>
5 tasks
Contributor
anyr size and startupStartup is wall time for a cold Size budget:
Budget check: ok raw timings[
{
"asset": "anyr-darwin-arm64",
"kind": "native",
"path": "/Users/runner/work/cli/cli/anyr-darwin-arm64",
"bytes": 2927672,
"size": "2.8 MiB",
"version": "0.1.11 (built 2026-09-14 16:00:59)",
"target": "aarch64-apple-darwin",
"os": "macos-latest",
"startup_version": {
"n": 21,
"min_ms": 3.36,
"median_ms": 4.62,
"p95_ms": 4.96,
"mean_ms": 4.46
},
"startup_help": {
"n": 21,
"min_ms": 3.54,
"median_ms": 4.51,
"p95_ms": 7.25,
"mean_ms": 4.94
}
},
{
"asset": "anyr-darwin-x86_64",
"kind": "native",
"path": "/Users/runner/work/cli/cli/anyr-darwin-x86_64",
"bytes": 3133600,
"size": "3.0 MiB",
"version": "0.1.11 (built 2026-09-14 16:01:36)",
"target": "x86_64-apple-darwin",
"os": "macos-latest",
"startup_version": {
"n": 21,
"min_ms": 33.06,
"median_ms": 39.58,
"p95_ms": 48.18,
"mean_ms": 40.06
},
"startup_help": {
"n": 21,
"min_ms": 31.95,
"median_ms": 34.92,
"p95_ms": 43.93,
"mean_ms": 36.15
}
},
{
"asset": "anyr-linux-arm64",
"kind": "native",
"path": "/home/runner/work/cli/cli/anyr-linux-arm64",
"bytes": 2888744,
"size": "2.8 MiB",
"version": "0.1.11 (built 2026-09-14 16:00:51)",
"target": "aarch64-unknown-linux-gnu",
"os": "ubuntu-24.04-arm",
"startup_version": {
"n": 21,
"min_ms": 0.78,
"median_ms": 0.83,
"p95_ms": 0.92,
"mean_ms": 0.83
},
"startup_help": {
"n": 21,
"min_ms": 0.8,
"median_ms": 0.83,
"p95_ms": 0.91,
"mean_ms": 0.85
}
},
{
"asset": "anyr-linux-x86_64",
"kind": "native",
"path": "/home/runner/work/cli/cli/anyr-linux-x86_64",
"bytes": 3229808,
"size": "3.1 MiB",
"version": "0.1.11 (built 2026-09-14 16:00:56)",
"target": "x86_64-unknown-linux-gnu",
"os": "ubuntu-latest",
"startup_version": {
"n": 21,
"min_ms": 1.01,
"median_ms": 1.04,
"p95_ms": 1.31,
"mean_ms": 1.08
},
"startup_help": {
"n": 21,
"min_ms": 0.99,
"median_ms": 1.02,
"p95_ms": 1.14,
"mean_ms": 1.04
}
},
{
"asset": "anyr-windows-x86_64.exe",
"kind": "native",
"path": "D:\\a\\cli\\cli\\anyr-windows-x86_64.exe",
"bytes": 2674688,
"size": "2.6 MiB",
"version": "0.1.11 (built 2026-09-14T16:02:14Z)",
"target": "x86_64-pc-windows-msvc",
"os": "windows-latest",
"startup_version": {
"n": 21,
"min_ms": 8.77,
"median_ms": 9.92,
"p95_ms": 11.1,
"mean_ms": 9.89
},
"startup_help": {
"n": 21,
"min_ms": 8.73,
"median_ms": 8.91,
"p95_ms": 9.15,
"mean_ms": 8.94
}
},
{
"asset": "anyr.wasm",
"kind": "wasm",
"path": "/home/runner/work/cli/cli/target/wasm-pkg/anyr_cli_bg.wasm",
"bytes": 180004,
"size": "175.8 KiB",
"version": "wasm",
"target": "wasm32-unknown-unknown",
"os": ""
}
] |
duyetbot
force-pushed
the
feat/cli-lint-gates
branch
from
September 14, 2026 15:59
ce0643b to
17fba63
Compare
Member
Author
|
The CI workflow changes couldn't be pushed directly because the Here are the CI changes that need to be applied separately (can be applied by a repo maintainer or by adding the $(cat /tmp/ci.yml.patch)Summary of what's in this PR so far:
🤖 Generated with Claude Code |
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 #22
continue-on-error: truefromcargo fmt --checkcargo clippy --locked --all-targets -- -D warningsas a required checkclippyto rust-toolchain componentssrc/so the gates passPreviously,
cargo fmt --checkwas marked optional (continue-on-error) and clippy was not run at all. This PR makes both into real CI gates.🤖 Generated with Claude Code