From sundial-org-awesome-openclaw-skills-4
Routes coding tasks to remote AI models (Claude, Codex, Gemini) via HokiPoki CLI P2P network. Use for second opinions, switching models when stuck, or sharing AI access in provider mode.
npx claudepluginhub joshuarweaver/cascade-ai-ml-agents-misc-2 --plugin sundial-org-awesome-openclaw-skills-4This skill uses the workspace's default tool permissions.
Route tasks to different AI CLIs (Claude, Codex, Gemini) via the HokiPoki P2P network. API keys never leave the provider's machine; only encrypted requests and results are exchanged.
Guides Next.js Cache Components and Partial Prerendering (PPR) with cacheComponents enabled. Implements 'use cache', cacheLife(), cacheTag(), revalidateTag(), static/dynamic optimization, and cache debugging.
Guides building MCP servers enabling LLMs to interact with external services via tools. Covers best practices, TypeScript/Node (MCP SDK), Python (FastMCP).
Generates original PNG/PDF visual art via design philosophy manifestos for posters, graphics, and static designs on user request.
Route tasks to different AI CLIs (Claude, Codex, Gemini) via the HokiPoki P2P network. API keys never leave the provider's machine; only encrypted requests and results are exchanged.
HokiPoki CLI must be installed and authenticated:
npm install -g @next-halo/hokipoki-cli
hokipoki login
Verify with hokipoki whoami. If not installed, guide the user through setup.
Send a task to a remote AI model. Always use --json for parseable output:
# Specific files
hokipoki request --tool claude --task "Fix the auth bug" --files src/auth.ts --json
# Entire directory
hokipoki request --tool codex --task "Add error handling" --dir src/services/ --json
# Whole project (respects .gitignore)
hokipoki request --tool gemini --task "Review for security issues" --all --json
# Route to a team workspace
hokipoki request --tool claude --task "Optimize queries" --files src/db.ts --workspace my-team --json
# Skip auto-apply (just save the patch)
hokipoki request --tool codex --task "Refactor module" --dir src/ --no-auto-apply --json
Tool selection: if the user doesn't specify a tool, ask which model to use or omit --tool to let HokiPoki choose.
Patches auto-apply when the target directory is a git repo with committed files. If auto-apply fails, inform the user and suggest:
git init && git add . && git commit -m "initial"
Register and listen for incoming requests:
# Register as a provider (one-time)
hokipoki register --as-provider --tools claude codex gemini
# Start listening
hokipoki listen --tools claude codex
Tasks execute in isolated Docker containers (read-only filesystem, tmpfs workspace, auto-cleanup). Docker must be running.
hokipoki whoami # Current user info
hokipoki status # Account, workspaces, history
hokipoki dashboard # Open web dashboard in browser
See references/commands.md for all CLI options, auth token locations, and advanced usage.