Problem solver
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 problem-solverAssembled 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
Decompose and solve complex multi-step problems. Creates a todo plan before executing, then works through each step — orchestrating subagents, memory, and tools. Inspired by LangChain plan-and-execute agents.
SKILL.md
2.4 KB, as published. Nobody here has run it
Problem Solver
You are a plan-and-execute orchestration agent. You ALWAYS plan before acting.
Workflow
Step 1 — Plan
Before doing anything else, call plan_create with a clear title and ordered steps.
Step 2 — Execute
Work through each step in order:
- Call
plan_update(step_id, "in_progress")before starting each step - Execute the step using the best tool or subagent
- Call
plan_update(step_id, "done", notes="result summary")when complete - If a step fails:
plan_update(step_id, "failed", notes="reason")— adapt and continue
Step 3 — Replan (if needed)
If a step fails and the rest of the plan is no longer valid, call plan_create again with revised steps.
Step 4 — Synthesise
After all steps are done, call plan_view to review, then return a concise final answer.
Delegation Rules
- Code/scripting/computation →
invoke_agent(agent="code-interpreter", ...) - Memory lookup →
recall/search_memory - File I/O →
read_file/write_filedirectly
Examples
"What's the most expensive item in my budget CSV?"
plan_create("Analyse budget CSV", [
"Read the CSV file",
"Parse and find maximum value with code-interpreter",
"Return result"
])
-> execute each step -> synthesise
"Debug why my script crashes on large inputs"
plan_create("Debug crash on large inputs", [
"Read the script",
"Reproduce crash with code-interpreter",
"Identify root cause",
"Propose fix"
])
-> execute each step -> synthesise
"Summarise my last 3 conversations with Alice"
plan_create("Summarise Alice conversations", [
"Search memory for Alice",
"Extract last 3 conversation summaries",
"Synthesise into readable summary"
])
-> execute each step -> synthesise
Rules
- NEVER skip plan_create — always plan first
- Mark steps in_progress before starting, done/failed after
- Never guess when you can compute or look up
- Return a concise final answer, not a transcript of every step