docs: fix stale package names, counts, and CLI subcommands

Sweep of the docs after the v2.0.0 rename and recent changes:
- Per-crate READMEs (13 files): rename leftover rustyhdf5-*/edgehdf5-*
  package names and badges to clawhdf5-*, bump usage versions to 2.1.0.
- README: update stale test badge (417 -> 1500+), workspace stats
  (15 crates/72K -> 17 crates/84K), agent crate stats (20.7K/32 modules),
  and add the missing clawhdf5-napi and clawhdf5-bench crates to the tree.
- CLAUDE.md: correct the CLI subcommand list (inspect/dump/index/search ->
  the actual create/save/search/recall/stats/flush-wal/agents-md/export/snapshot).

No code changes. Verified there are zero todo!()/unimplemented!() macros and
no TODO/FIXME comments in the tree.

Co-Authored-By: Claude Opus 4.8 (1M context) <[email protected]>
This commit is contained in:
osobh
2026-06-03 11:17:04 +00:00
co-authored by Claude Opus 4.8
parent 41a8fb7734
commit f1762f82a7
15 changed files with 77 additions and 73 deletions
+5 -5
View File
@@ -1,9 +1,9 @@
# rustyhdf5-filters
# clawhdf5-filters
[![crates.io](https://img.shields.io/crates/v/rustyhdf5-filters.svg)](https://crates.io/crates/rustyhdf5-filters)
[![docs.rs](https://docs.rs/rustyhdf5-filters/badge.svg)](https://docs.rs/rustyhdf5-filters)
[![crates.io](https://img.shields.io/crates/v/clawhdf5-filters.svg)](https://crates.io/crates/clawhdf5-filters)
[![docs.rs](https://docs.rs/clawhdf5-filters/badge.svg)](https://docs.rs/clawhdf5-filters)
Filter and compression pipeline for rustyhdf5.
Filter and compression pipeline for clawhdf5.
## Features
@@ -14,7 +14,7 @@ Filter and compression pipeline for rustyhdf5.
## Usage
```rust
use rustyhdf5_filters::{deflate_decode, deflate_encode};
use clawhdf5_filters::{deflate_decode, deflate_encode};
let compressed = deflate_encode(&data, 6).unwrap();
let decompressed = deflate_decode(&compressed).unwrap();