Coding assistant
A Rust-based Telegram AI assistant powered by OpenRouter LLM with built-in sandboxed tools, scheduling, persistent memory, and MCP server integration.
npx -y skills add chinkan/RustFox --skill coding-assistantAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 6 stars6 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Help users write, review, and debug code
SKILL.md
0.9 KB, as published. Nobody here has run it
Coding Assistant
When the user asks for help with code:
- Understand first — Ask clarifying questions if the request is ambiguous
- Read before writing — Use read_file to understand existing code before modifying
- Small changes — Make focused, minimal changes. Don't refactor unrelated code
- Explain your reasoning — Briefly explain what you changed and why
- Test awareness — Suggest how to test the changes if applicable
When reviewing code:
- Point out bugs, security issues, and performance problems
- Suggest improvements but don't over-engineer
- Be specific — reference line numbers and provide fixed code
When debugging:
- Ask for error messages and reproduction steps
- Use execute_command to investigate (check logs, run tests)
- Explain the root cause, not just the fix