Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

ReasonKit Onboarding Quick Reference

One-page reference for getting started with ReasonKit.

🚀 5-Minute Quick Start

# Install
curl -fsSL https://get.reasonkit.sh | bash

# Verify
rk doctor

# Learn
rk onboard --tutorial core

📋 Common Commands

Analysis

# Quick analysis (70% confidence, ~2s)
rk think --profile quick "Your question"

# Standard analysis (80% confidence, ~5s)
rk think --profile balanced "Your question"

# Deep analysis (85% confidence, ~8s)
rk think --profile deep "Your question"

# Maximum rigor (95% confidence, ~15s)
rk think --profile paranoid "Your question"

Verification

# Verify claim with sources
rk verify "Claim to verify" --sources 3

Web Research

# Quick research
rk web "Topic" --depth quick

# Deep research
rk web "Topic" --depth deep

# Save to file
rk web "Topic" --output report.md

Knowledge Base (requires memory feature)

# Ingest document
rk ingest document.pdf --type paper

# Query knowledge base
rk query "Your question" --top-k 5

# RAG query
rk rag query "Your question" --mode thorough

🎯 Profile Selection Guide

ProfileConfidenceTimeUse For
--quick70%~2sBrainstorming, drafts, exploration
--balanced80%~5sStandard decisions, most use cases
--deep85%~8sImportant decisions, complex problems
--paranoid95%~15sCritical decisions, high stakes

🛠️ Troubleshooting

rk: command not found

# Add to PATH
export PATH="$HOME/.cargo/bin:$PATH"

# Or restart shell
exec $SHELL

API key not configured

# Set API key
export ANTHROPIC_API_KEY="your-key"
# or
export OPENAI_API_KEY="your-key"

Chrome not found (for web features)

# macOS
brew install --cask google-chrome

# Ubuntu
sudo apt-get install chromium-browser

# Set path
export CHROME_BIN=/usr/bin/google-chrome

📚 Learning Resources

ResourceCommand/PathDescription
Interactive Tutorialrk onboardHands-on guided learning
Examplescargo run --exampleProgressive code examples
Use Casesdocs/use-cases/Problem-oriented guides
API Docsdocs.rs/reasonkit-coreComplete API reference

  • Website: https://reasonkit.sh
  • Docs: https://docs.reasonkit.sh
  • GitHub: https://github.com/reasonkit/reasonkit
  • Issues: https://github.com/reasonkit/reasonkit/issues

💡 MCP (Pro) Tips

  1. Start with --profile quick for exploration, then use --profile balanced for decisions
  2. Run rk doctor after installation to verify everything works
  3. Use rk onboard --list to see all available tutorials
  4. Check examples with ls reasonkit-core/examples/

Print this page and keep it handy while learning!