vichhka-git

OpenTor — AI skill for Claude Code

AI community

Tor/Dark Web access skill for AI agents (OpenCode & Claude Code).

How to install OpenTor

This entry records only its repository, not the path inside it, so there is no exact command to give. Open vichhka-git/OpenTor and copy the folder into ~/.claude/skills/, or the file into ~/.claude/agents/.

What OpenTor does

Tor/Dark Web access skill for AI agents (OpenCode & Claude Code). Search 12 dark web engines, spider .onion sites, extract IOCs. Orchestrator-conductor architecture — zero external LLM deps.

Alternatives in AI

  • Omniget — Udemy & Hotmart course downloader, YouTube downloader (yt-dlp GUI, 1,800+ sites) + desktop app for AI agents 13.9k ★
  • AGENTS.md - Skill Seekers — Concise reference for AI coding agents 11.1k ★
  • Architecture Diagram Generator — Generate beautiful dark-themed system architecture diagrams as standalone HTML/SVG files 7k ★

README

OpenTor 🧅

[![skills.sh](https://skills.sh/badge/vichhka-git/OpenTor)](https://skills.sh/vichhka-git/OpenTor)

**Tor / Dark Web Access for AI Agents — OpenCode & Claude Code Skill**

OpenTor gives LLMs full access to the Tor network and .onion hidden services. Not a standalone tool — an **orchestrator-conductor architecture** where the LLM is the intelligence and the Python modules provide mechanical transport, search, and entity extraction.

npx skills add vichhka-git/OpenTor    # install via skills.sh
# Quick start — the LLM runs these:
pip install -r requirements.txt            # install dependencies
python3 scripts/setup.py                   # interactive setup
python3 scripts/opentor.py check           # verify Tor
python3 scripts/opentor.py search "ransomware leak"  # search dark web

Install as a Skill

Claude Code

# Clone into Claude Code skills directory
git clone https://github.com/opentor/opentor ~/.claude/skills/open-tor

# Or copy from local
cp -r OpenTor ~/.claude/skills/open-tor

# Run setup (the LLM can do this itself)
cd ~/.claude/skills/open-tor
pip install -r requirements.txt
python3 scripts/setup.py

After install, start a **new Claude Code session**. The skill loads automatically when you ask about dark web topics, .onion URLs, ransomware groups, credential leaks, or Tor-based OSINT.

OpenCode

# Copy to OpenCode skills directory
cp -r OpenTor ~/.config/opencode/skills/open-tor

LLM Self-Install

The orchestrator (Claude) can install itself. Just say:

"Install OpenTor and set up Tor access"

The LLM will:

  1. Clone the repo to the skills directory
  2. Run pip install -r requirements.txt (asking for sudo/venv choice)
  3. Run python3 scripts/setup.py for interactive configuration
  4. Install and start Tor if not present
  5. Verify with python3 scripts/opentor.py check

Standalone (without skill system)

git clone https://github.com/opentor/opentor
cd opentor
pip in