You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
(verified by counting rust/crates/*/Cargo.toml — 11 manifests). This PR updates only that number; it does not restructure the layout or responsibilities sections.
Note on a second candidate fix (not included)
While investigating I also checked the reported broken link in how_to_run.md ([futute.md](futute.md)). I did not change it: neither futute.md nor a correctly-spelled future.md exists anywhere in the repository, so retargeting the link would not resolve to a real file. Left untouched pending a decision on whether that target doc should be created.
Good catch — docs that say one thing while the workspace defines another are a real source of confusion for new contributors. With 11 crates now, are you planning to document what the 11th is separately or leave it self-explanatory from the workspace layout?
The workspace uses members = ["crates/*"] so any directory dropped under rust/crates/ automatically becomes a member — there isn't really a single 11th crate, the count just drifted from 9 to 11 over time. All 11 are listed in the PR description (api, claw-analog, claw-rag-service, commands, compat-harness, mock-anthropic-service, plugins, runtime, rusty-claude-cli, telemetry, tools). I figured that plus the glob pattern makes it self-explanatory. Happy to add a one-liner listing them in the README if you think it'd help though.
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
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
Follow-up doc fix after #3268.
The Stats section of
rust/README.mdstates 9 crates in the workspace, but the workspace (members = ["crates/*"]) now contains 11 crates:api,claw-analog,claw-rag-service,commands,compat-harness,mock-anthropic-service,plugins,runtime,rusty-claude-cli,telemetry,tools(verified by counting
rust/crates/*/Cargo.toml— 11 manifests). This PR updates only that number; it does not restructure the layout or responsibilities sections.Note on a second candidate fix (not included)
While investigating I also checked the reported broken link in
how_to_run.md([futute.md](futute.md)). I did not change it: neitherfutute.mdnor a correctly-spelledfuture.mdexists anywhere in the repository, so retargeting the link would not resolve to a real file. Left untouched pending a decision on whether that target doc should be created.