Conversation
Upgrade the `dirs` crate from v5 to v6 and consolidate all `thiserror` references to the v2.x line, removing the stale v1.x entries from the lock file. Also drop several unused dependencies across the workspace, including `serde_json` from tinyagents-definition, `chrono`, `reqwest`, and `sha2` from tinyagents-graph, `bytes` from tinyagents-harness, and `tinyagents-graph` from tinyagents-registry, along with the associated `windows-sys 0.48` targets that are no longer needed. Auto-committed-on: dragonfly Co-authored-by: Medulla <medulla@tinyhumans.ai>
Tiny Sweeper reviewTiny Sweeper reviewed this change across 6 lane(s) and found 0 active actionable finding(s). Detailed lane evidence and any incomplete work are listed below. State: Ready for maintainer review Review snapshot
Completeness: Complete What changedThe review could not produce a supported behavioral summary; inspect the cited changed surface and lane details below. FeaturesNone identified with supported citations. TestsNo supported feature-to-test mapping was produced. Test execution is not inferred. FindingsNo active actionable findings. Before mergeNone. Agent review detailscritique
security
tests
commits
description
e2e
Evidence and run details
|
|
Warning Review paused — included plan limit reachedKeep your review moving with free on-demand reviews.
On-demand reviews are free for one more day. Promotion and pricing detailsOn-demand reviews are free for one more day. After that, they cost $0.25 per reviewed file. Review limit detailsOr wait 32 minutes for your next included review. Limit details: You’ve used the included review currently available. Review configuration: ⚙️ Run configurationConfiguration used: Organization UI Review profile: CHILL Plan: Advanced Run ID: ⛔ Files ignored due to path filters (1)
📒 Files selected for processing (4)
Comment |
Codex Review SummaryThis comment shows the latest Codex review activity on this pull request.
ℹ️ About Codex in GitHubYour team has set up Codex to review pull requests in this repo. Reviews are triggered when you
Codex reacts with 👀 while any review is running, comments if it has suggestions, and reacts with 👍 once all reviews finish with no findings. |
There was a problem hiding this comment.
tinysweeper found nothing blocking. Approving.
$0.0082 · 136,429 in / 6,131 out · 8,656 cached (6%) · ladder/vectors, gpt-5.6-luna, deepseek-v4-flash · 191 embedded
critique: $0.0040 · 63,861 in / 873 out · 4,060 cached (6%) · gpt-5.6-luna
security: $0.0040 · 63,237 in / 943 out · 3,572 cached (6%) · gpt-5.6-luna
description: $0.0002 · 7,033 in / 1,450 out · 1,024 cached (15%) · deepseek-v4-flash
Summary
Found by the cross-repo dependency audit in tinyhumansai/openhuman#6353 (
pnpm dep:audit, tinyanalyzer-driven), verified by grep against this tree atmain:tinyagents-registry: droptinyagents-graph— no source in the crate references it; it was only mentioned by thetracingfeature forward, which now forwards to the harness alone.tinyagents-graph: dropreqwest,sha2,chrono— declared but never referenced (chronoonly appears in a doc comment).tinyagents-definition: drop dev-dependencyserde_json.tinyagents-harness: dropbytes(the word only appears in comments); bumpdirs5 → 6, which also removesthiserror 1.xand thewindows-* 0.48family from the lockfile and lets openhuman (already ondirs 6) stop compiling both.No source changes; manifest and lockfile only.
API Or Behavior Changes
None. The
tinyagents-registry/tracingfeature still enables tracing in the harness; it no longer namestinyagents-graph, which the registry never depended on in code.Tests
cargo fmt --checkcargo clippy --all-targets -- -D warnings(via--workspace)cargo clippy --all-targets --all-features -- -D warningscargo build --all-targets(cargo check --workspace --all-targets)cargo build --all-targets --all-features(cargo check --workspace --all-targets --all-features)cargo test(covered by the all-features run)cargo test --workspace --all-features— all suites green (1061 tests in the largest crate)Documentation
Not needed: no public surface or behaviour changed.