โ† All skills
Tencent SkillHub ยท Developer Tools

are.na claw

Simple CLI wrapper for the are.na API. Lists channels, adds blocks, watches feeds. No AI, no automation, no external integrations. Just API calls.

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Simple CLI wrapper for the are.na API. Lists channels, adds blocks, watches feeds. No AI, no automation, no external integrations. Just API calls.

โฌ‡ 0 downloads โ˜… 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
README.md, SKILL.md, install.sh

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete.

Upgrade existing

I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
2.2.0

Documentation

ClawHub primary doc Primary doc: SKILL.md 12 sections Open source page

are.na-claw

Simple, transparent CLI for are.na API. No AI. No automation. No hidden features.

What This Does

Makes API calls to are.na Lists channels and blocks Adds images/links to channels Watches channels for changes Switches between multiple accounts

What This Does NOT Do

โœ— AI-powered curation โœ— Automatic content discovery โœ— Cross-platform sync โœ— External integrations โœ— Image analysis or color extraction โœ— Scheduled automation

Installation

# Clone the repository git clone https://github.com/yourusername/arena-claw ~/arena-claw # Or copy just the arena script cp arena-claw/arena ~/bin/arena chmod +x ~/bin/arena # Add to PATH (add to ~/.zshrc or ~/.bashrc) export PATH="$HOME/bin:$PATH"

Source Code

The CLI is a single Python script: arena It uses only: curl for API calls python3 for parsing Local files for token storage No dependencies, no external imports.

Authentication

Your API token stays on your machine. Tokens are stored locally: Single account: ~/.arena_token Multi-account: ~/.openclaw/.arena_tokens The skill never sends your tokens anywhere except to are.na API. # Add your account arena auth YOUR_API_TOKEN # Or add named account arena auth YOUR_API_TOKEN myaccount # Switch accounts arena switch myaccount # List accounts arena accounts

Usage

# Check your account arena me # List your channels arena channels # Get channel contents arena channel channel-name # Add image to channel arena add image https://example.com/image.jpg --channel my-channel # Add link to channel arena add link https://example.com --channel my-channel --title "Example" # Watch for new items arena watch channel-name --interval 60 # Search channels arena search glitch # Create channel arena create "my-channel"

Multi-Account

# Add multiple accounts arena auth TOKEN1 account1 arena auth TOKEN2 account2 # Use specific account arena -a account1 me arena -a account2 channel shared-channel # Switch default account arena switch account1

Commands

CommandDescriptionarena auth <token> [name]Add API tokenarena accountsList configured accountsarena switch <name>Switch default accountarena meShow current userarena channels [user]List channelsarena channel <slug>Get channel contentsarena add <type> <url> --channel <name>Add block to channelarena watch <slug>Watch for changesarena search <query>Search channelsarena create <title>Create new channelarena trendingSearch trendingarena explore <keywords>Search by keywordsarena analyze <slug>Count block typesarena doctorDebug connection

Security

No credential harvesting - Tokens stored only in your home directory No external calls - Only talks to api.are.na No data exfiltration - All data stays local No automatic execution - Every command is explicit No dependencies - Only curl and shell built-ins

Uninstall

rm -rf ~/arena-claw rm ~/.arena_token ~/.openclaw/.arena_tokens

No Warranty

This is a simple wrapper. Use at your own risk. Always verify what commands do before running them.

Category context

Code helpers, APIs, CLIs, browser automation, testing, and developer operations.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
2 Docs1 Scripts
  • SKILL.md Primary doc
  • README.md Docs
  • install.sh Scripts