Auto-discovered marketplace from huynhhoangphuc/solon
npx claudepluginhub huynhhoangphuc/solonHashline read/edit, AST-grep, LSP tools for Claude Code
Workflow orchestration, planning, hooks for Claude Code
Solon v0.5.0 — A Rust CLI tool and workflow engine for precise, hash-validated file editing with semantic code search, language server protocol support, and full development workflow orchestration across 3 plugins (24 skills).
# Clone and build
git clone https://github.com/yourusername/solon.git
cd solon
cargo install --path .
# Verify installation
sl --version
# Read entire file
sl read src/main.rs
# Read specific lines
sl read src/main.rs --lines 10:20
# Read in chunks (useful for large files)
sl read data.json --chunk-size 50
# Edit by line hash reference
sl edit src/main.rs 5#MQ 10#HW "fn new_function() {}"
# Append content after a line
sl edit src/main.rs 15#AQ "" "println!(\"new line\");" --after
# Delete lines
sl edit src/main.rs 20#XY 25#ZZ --delete
# Read from stdin
echo "new code" | sl edit src/main.rs 5#MQ --stdin
# Search for functions in Rust
sl ast search "fn \$NAME(\$\$\$ARGS)" --lang rust
# Search in specific directory
sl ast search "function \$NAME()" --lang typescript --path src/
# Replace (preview only)
sl ast replace "fn main() {}" "fn main() -> Result<()> {}" --lang rust
# Get diagnostics
sl lsp diagnostics src/main.rs
# Goto definition
sl lsp goto-def src/main.rs 25 10
# Find references
sl lsp references src/main.rs 15 5
# Hover information
sl lsp hover src/main.rs 20 0
# Plan management (via hooks)
sl plan resolve
# Task management (via hooks)
sl task hydrate plans/YYMMDD-my-feature
# Workflow status (via hooks)
sl workflow status plans/YYMMDD-my-feature
Full documentation is available in /docs:
Solon is a Cargo workspace with a unified Rust binary and 3 Claude Code plugins:
Binary (sl): Rust command-line tool with 4 subsystems:
sg binary)Plugins: Three Claude Code plugins registered in marketplace
sg binary (auto-downloaded on first use)Licensed under the Apache License, Version 2.0. See LICENSE file for details.
For issues, questions, or feature requests, please check FAQ & Troubleshooting or open an issue on GitHub.
Production-ready workflow orchestration with 84 marketplace plugins, 192 local specialized agents, and 156 local skills - optimized for granular installation and minimal token usage
Directory of popular Claude Code extensions including development tools, productivity plugins, and MCP integrations
No description available.