Documentation fixes across five repositories
By RepoJournal , from @latent-9's public GitHub activity
Recoordinate spent the day fixing stale and broken documentation across solana-playground, orchestkit, sol-trade-sdk, llm-compressor, and mlx, while orchestkit shipped two releases.
The day's largest piece was removing a deprecated and non-functional step from llm-compressor's model-free PTQ guides [6][7]. The `reindex_fused_weights` command is a no-op marked deprecated, yet the NVFP4 and microscale sections of the guides still walked users through calling it before quantization, creating a broken workflow. Recoordinate removed those references so users follow the correct path directly to `model_free_ptq`.
Three other documentation fixes addressed similar staleness. In solana-playground, the client README documented a Docker Compose profile named `standalone` that does not exist in `compose.yaml` [1][2]. The actual profile is `client-standalone`, which the root README already referenced correctly. In sol-trade-sdk, two README examples imported types from the crate root that only exist in their modules, causing compilation failures [5]. In mlx, the distributed-launch guide documented a `--no-verify-script` flag for the launcher that was removed in PR #3513 [8]. Recoordinate removed the reference so the documentation matched the actual launcher interface.
Orchestrip released v9.6.0 on August 3 with a native OrchestKit adapter for codex [3], then shipped v9.6.1 on August 4 to clear npm-audit warnings via in-range transitive updates [4].
One email a day. Unsubscribe in one click.
A short briefing every day latent-9 ships something — in about 3 minutes.
One email a day. Unsubscribe in one click. Read a past issue →
References
- [1] Fix nonexistent Docker Compose profile in client README (#469) solana-playground/solana-playground
- [2] docs: fix nonexistent Docker Compose profile in client README ↗ solana-playground/solana-playground
- [3] v9.6.0 ↗ yonatangross/orchestkit
- [4] v9.6.1 ↗ yonatangross/orchestkit
- [5] docs: fix README example imports so the SWQoS and trading snippets compile ↗ 0xfnzero/sol-trade-sdk
- [6] docs: drop deprecated reindex_fused_weights step from model-free PTQ guides (#2989) vllm-project/llm-compressor
- [7] docs: drop deprecated reindex_fused_weights step from model-free PTQ guides ↗ vllm-project/llm-compressor
- [8] docs: remove references to removed --no-verify-script launch flag ↗ ml-explore/mlx