ワンクリックで
clawd
Install the clawd CLI tool — run NanoClawd agent containers from the command line without opening a chat app.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Install the clawd CLI tool — run NanoClawd agent containers from the command line without opening a chat app.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Access comprehensive financial data - stocks, crypto, SEC filings, financial statements, and news via Financial Datasets API. Use for market research, fundamental analysis, and financial insights.
NanoClawd Wallet: self-custodial Solana wallet built into this agent. Every agent gets a unique keypair at birth, stored in its private workspace. Supports SOL transfers, SPL token balances, and token swaps via Jupiter v6. Use for on-chain payments, DeFi swaps, balance checks, and Solana interactions.
Add Bux browser agent to NanoClawd — gives a Clawd agent a real persistent Chromium session via Browser Use Cloud, plus agency Telegram action cards. Use when the user wants their agent to browse the web with a real browser (cookies persist, logins stick) or handle 2FA/CAPTCHA hand-off.
Integrate the OpenClawd Framework (sovereign lobster agents on Solana) into NanoClawd. Wires the Framework's pulse loop, identity, survival mechanics, and $CLAWD token payments into NanoClawd agent groups. Use when setting up a fully sovereign Clawd agent with on-chain identity, self-funding, and autonomous operation.
Launch an Upstash Box pre-packaged with NanoClawd and a Solana wallet at birth. Provisions a cloud box, clones NanoClawd, generates a Solana keypair, configures credentials, and starts the agent — wallet-at-birth, ready to be sovereign. Use when the user wants a one-command cloud NanoClawd deploy with on-chain identity from spawn.
Dark Ralph OODA Loop v0 — paper-trading, devnet-only, stdlib-Python agent that runs a safety-contract OODA cycle (Observe→Orient→Decide→Act) for Pump.fun bonding curves. Zero external deps, kill-switch on consecutive losses.
| name | clawd |
| description | Install the clawd CLI tool — run NanoClawd agent containers from the command line without opening a chat app. |
clawd is a Python CLI that sends prompts directly to a NanoClawd agent container from the terminal. It reads registered groups from the NanoClawd database, picks up secrets from .env, and pipes a JSON payload into a container run — no chat app required.
-g needed for most use)-s <session-id>--pipe) for scripting and piping--list-groupscontainer or docker runtime (or override with --runtime)-v) shows the command, redacted payload, and exit codenanoclawd-agent:latest)container (Apple Container, macOS 15+) or docker available in PATHRun this skill from within the NanoClawd directory. The script auto-detects its location, so the symlink always points to the right place.
mkdir -p scripts
cp "${CLAUDE_SKILL_DIR}/scripts/clawd" scripts/clawd
chmod +x scripts/clawd
mkdir -p ~/bin
ln -sf "$(pwd)/scripts/clawd" ~/bin/clawd
Make sure ~/bin is in PATH. Add this to ~/.zshrc or ~/.bashrc if needed:
export PATH="$HOME/bin:$PATH"
Then reload the shell:
source ~/.zshrc # or ~/.bashrc
clawd --list-groups
You should see registered groups. If NanoClawd isn't running or the database doesn't exist yet, the list will be empty — that's fine.
# Send a prompt to the main group
clawd "What's on my calendar today?"
# Send to a specific group by name (fuzzy match)
clawd -g "family" "Remind everyone about dinner at 7"
# Send to a group by exact JID
clawd -j "120363336345536173@g.us" "Hello"
# Resume a previous session
clawd -s abc123 "Continue where we left off"
# Read prompt from stdin
echo "Summarize this" | clawd --pipe -g dev
# Pipe a file
cat report.txt | clawd --pipe "Summarize this report"
# List all registered groups
clawd --list-groups
# Force a specific runtime
clawd --runtime docker "Hello"
# Use a custom image tag (e.g. after rebuilding with a new tag)
clawd --image nanoclawd-agent:dev "Hello"
# Verbose mode (debug info, secrets redacted)
clawd -v "Hello"
# Custom timeout for long-running tasks
clawd --timeout 600 "Run the full analysis"
Install Docker Desktop or Apple Container (macOS 15+), or pass --runtime explicitly.
The script auto-detects your NanoClawd directory and reads .env from it. Check that the file exists and contains at least one of: CLAUDE_CODE_OAUTH_TOKEN, ANTHROPIC_API_KEY, ANTHROPIC_AUTH_TOKEN.
The default timeout is 300 seconds. For longer tasks, pass --timeout 600 (or higher). If the container consistently hangs, check that your nanoclawd-agent:latest image is up to date by running ./container/build.sh.
Run clawd --list-groups to see what's registered. Group lookup does a fuzzy partial match on name and folder — if your query matches multiple groups, you'll get an error listing the ambiguous matches.
Containers run with --rm so they are automatically removed. If the agent crashes before emitting the output sentinel, clawd falls back to printing raw stdout. Use -v to see what the container produced. Rebuild the image with ./container/build.sh if crashes are consistent.
If clawd can't find your database or .env, set the NANOCLAWD_DIR environment variable:
export NANOCLAWD_DIR=/path/to/your/nanoclawd