Help us improve
Share bugs, ideas, or general feedback.
Share bugs, ideas, or general feedback.
Share bugs, ideas, or general feedback.
npx claudepluginhub spences10/ralph-town --plugin ralph-townUse when working with Daytona SDK - uploadFile(Buffer, path), Bun install, CodeLanguage options
Ralph-town development guidelines. Use for code style, project structure, and build commands.
Daytona sandbox security. Use for token handling, credential security, full paths in SSH.
Daytona sandbox troubleshooting. Use for known issues, common mistakes, workarounds.
Use for teammate sandbox operations - SSH access, git workflow, full paths required
Share bugs, ideas, or general feedback.
Own this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge.
Sign in to claimOwn this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge.
Sign in to claimBased on adoption, maintenance, documentation, and repository signals. Not a security audit or endorsement.
Teaches Claude core tsk commands for delegating development tasks to AI agents in sandboxed containers.
Multi-agent orchestration for Claude Code. 12 specialized agents working in parallel — planning, building, reviewing, debugging. Plus a Hub for always-alive multi-project sessions controllable from Telegram or Slack.
Development environment setup: git worktrees, terminal optimization
Claude Code skill pack for Replit (30 skills)
High-intelligence Claude Code copilot with deep code reasoning, evidence-driven planning, orchestration-first execution, model routing, context budgeting, CI/CD integration, enterprise security, plugin development, prompt engineering, performance profiling, agent teams, channels (event-driven autonomy with CI webhook, mobile approval relay, Discord bridge, and fakechat dev profile), interactive tutorials, LSP integration, security-hardened hook script library, MCP Prompts coverage, common workflow packs, runtime selection guide, computer-use patterns, checkpointing, scheduled-task blueprints, repo bootstrap scanner, hook policy engine (8 installable packs), layered memory deployment, role-based subagent packs (implementer, debugger, migration-lead, dependency-auditor, release-coordinator), 5 agent-team topology kits, autonomy operating mode (4 profiles + 3 gates), and a queryable 15-tool MCP documentation server with autonomy advisor.
Manus-style persistent markdown files for planning, progress tracking, and knowledge storage. Works with Claude Code, Kiro, Clawd CLI, Gemini CLI, Cursor, Continue, Hermes, and 17+ AI coding assistants. Now with Arabic, German, Spanish, and Chinese (Simplified & Traditional) support.
Svelte 5 runes, SvelteKit data flow, routing, and structure patterns
Development environment setup: git worktrees, terminal optimization
Core skills: ecosystem guide, skill creator, research patterns, session reflection, and plugin development. Includes UserPromptSubmit hook for forced skill evaluation.
Claude Code workflow patterns: prompting, CLAUDE.md maintenance, multi-agent orchestration
Development practices: TDD workflow with red-green-refactor
Daytona sandbox management for Claude Code teams.
When Claude Code spawns teammates, they all share the same filesystem. This causes problems:
Solution: Give each teammate their own isolated Daytona sandbox.
Claude Code Team Lead (local)
├── Creates sandbox (~1.3s with cached image)
├── Gets SSH credentials for teammate
│
├── Teammate A ──SSH──> Sandbox A ──> feature-branch-a
├── Teammate B ──SSH──> Sandbox B ──> feature-branch-b
└── Teammate C ──SSH──> Sandbox C ──> feature-branch-c
Each teammate works in complete isolation. Push branches, create PRs, delete sandboxes when done.
npm install -g ralph-town
# Create a sandbox
ralph-town sandbox create [--name NAME]
# Get SSH credentials
ralph-town sandbox ssh <id>
# List active sandboxes
ralph-town sandbox list
# Execute command in sandbox
ralph-town sandbox exec <id> <command>
# Delete sandbox
ralph-town sandbox delete <id>
# Create sandbox for teammate
ralph-town sandbox create --name feature-work
# => Sandbox ID: abc123
# Get SSH access
ralph-town sandbox ssh abc123
# => ssh xyz789@ssh.app.daytona.io
# Teammate SSHs in and works
ssh xyz789@ssh.app.daytona.io
$ git clone https://github.com/user/repo.git
$ cd repo && git checkout -b feature/new-thing
$ # ... make changes ...
$ git push -u origin feature/new-thing
# Cleanup
ralph-town sandbox delete abc123
| Operation | Time |
|---|---|
| First sandbox (builds image) | ~18s |
| Subsequent sandboxes (cached) | ~1.3s |
14x speedup after first run.
DAYTONA_API_KEY - Get from daytona.ioGH_TOKEN - For git push operations (optional)| Package | Description |
|---|---|
packages/cli | Main CLI tool |
packages/mcp-ralph-town | MCP server for Claude Code |
bun dev # Development mode
bun run build # Compile TypeScript
See docs/RESEARCH.md for architecture notes and findings from our exploration.