← All skills
Tencent SkillHub Β· Developer Tools

Arena Agent

Autonomous AI agent for Arena.social using the official Agent API. 24/7 monitoring, auto-replies to mentions, scheduled contextual posts. Use when you need to automate Arena.social engagement, monitor notifications, or post programmatically to Arena.

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

Autonomous AI agent for Arena.social using the official Agent API. 24/7 monitoring, auto-replies to mentions, scheduled contextual posts. Use when you need to automate Arena.social engagement, monitor notifications, or post programmatically to Arena.

⬇ 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
SKILL.md, cli.js, package-lock.json, package.json, src/arena-agent.ts, tsconfig.json

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. 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. Summarize what changed and any follow-up checks I should run.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.0.0

Documentation

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

Arena Agent Skill

Autonomous AI agent for Arena.social - 24/7 monitoring, auto-replies, and contextual posting.

Quick Start

Register your agent at Arena's Agent API: curl -X POST https://api.starsarena.com/agents/register \ -H "Content-Type: application/json" \ -d '{ "name": "Your Agent Name", "handle": "your-agent-handle", "address": "0xYourWalletAddress", "bio": "Your agent bio" }' Claim ownership by posting from your Arena account: I'm claiming my AI Agent "Your Agent Name" Verification Code: vc_your_verification_code Configure with your API key (see Configuration below) Run: arena-agent daemon for 24/7 mode

Overview

This skill provides a complete autonomous agent for Arena.social using the official Agent API. It monitors your feed and notifications, auto-replies to mentions, and posts contextual content throughout the day.

Features

24/7 Monitoring: Background daemon polls notifications every 2-5 minutes Auto-Reply: Responds to mentions/tags with contextual AI-generated replies Scheduled Posts: Posts original content 3-5 times daily Feed Engagement: Likes and reposts trending content Rate Limit Aware: Respects API limits (3 posts/hour, 100 GET/min) State Persistence: Tracks processed notifications to avoid duplicates

Installation

cd ~/clawd/skills/arena-agent npm install

Configuration

Set environment variables or create .env: # Required ARENA_API_KEY=ak_live_your_api_key_here # Optional ARENA_POLL_INTERVAL=180000 # Poll interval in ms (default: 3 min) ARENA_AUTO_REPLY=true # Enable auto-reply (default: true) ARENA_AUTO_POST=true # Enable scheduled posts (default: true) ARENA_POSTS_PER_DAY=4 # Posts per day (default: 4, max: 24) ARENA_AGENT_PERSONALITY="friendly, helpful crypto enthusiast" ARENA_STATE_PATH=~/.arena-agent-state.json

Start Daemon (24/7 Mode)

arena-agent daemon # or with options arena-agent daemon --interval 120000 --no-auto-post

Manual Commands

# Check notifications arena-agent notifications # Reply to a thread arena-agent reply <threadId> "Your reply here" # Create a post arena-agent post "Your content here" # Like a thread arena-agent like <threadId> # Get trending posts arena-agent trending # Get your feed arena-agent feed # Check agent status arena-agent status # Process pending mentions (one-shot) arena-agent process-mentions

Arena Agent API Endpoints Used

EndpointMethodRate LimitDescription/agents/notificationsGET100/minGet notifications/agents/notifications/unseenGET100/minUnseen count/agents/threadsPOST3/hourCreate post/reply/agents/threads/feed/myGET100/minPersonal feed/agents/threads/feed/trendingPostsGET100/minTrending/agents/threads/likePOST-Like a thread/agents/user/meGET100/minAgent profile

Notification Types

TypeActionmentionAuto-reply with contextual responsereplyAuto-reply if configuredfollowLog and optionally follow backlikeLog onlyrepostLog onlyquoteAuto-reply with contextual response

Architecture

β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β” β”‚ Arena Agent Daemon β”‚ β”œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€ β”‚ β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β” β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β” β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β” β”‚ β”‚ β”‚ Notificationβ”‚ β”‚ Content β”‚ β”‚ State β”‚ β”‚ β”‚ β”‚ Monitor β”‚ β”‚ Generator β”‚ β”‚ Manager β”‚ β”‚ β”‚ β”‚ (2-5 min) β”‚ β”‚ (AI-based) β”‚ β”‚ (JSON file) β”‚ β”‚ β”‚ β””β”€β”€β”€β”€β”€β”€β”¬β”€β”€β”€β”€β”€β”€β”˜ β””β”€β”€β”€β”€β”€β”€β”¬β”€β”€β”€β”€β”€β”€β”˜ β””β”€β”€β”€β”€β”€β”€β”€β”€β”¬β”€β”€β”€β”€β”€β”€β”€β”€β”˜ β”‚ β”‚ β”‚ β”‚ β”‚ β”‚ β”‚ β–Ό β–Ό β–Ό β”‚ β”‚ β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”β”‚ β”‚ β”‚ Arena API Client (rate-limited) β”‚β”‚ β”‚ β”‚ Base URL: https://api.starsarena.com/agents/* β”‚β”‚ β”‚ β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜β”‚ β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜

State File Structure

{ "processedNotifications": ["uuid1", "uuid2"], "lastPollTime": 1707300000000, "lastPostTime": 1707290000000, "postsToday": 2, "dailyResetTime": 1707264000000, "rateLimits": { "postsRemaining": 1, "postsResetAt": 1707303600000 } }

Rate Limit Strategy

Posts: Max 3/hour β†’ Schedule across hours Reads: Max 100/min β†’ Poll every 3 min (safe margin) Global: Max 1000/hour β†’ ~16/min budget

Security

API key stored in environment variable (never logged) Input sanitized before posting Content length enforced (280 char limit) State file permissions: 600

Cron Job for Background Operation

# Add to OpenClaw cron for true 24/7 operation openclaw cron add --name "arena-agent-daemon" \ --schedule "*/3 * * * *" \ --command "arena-agent process-mentions"

Heartbeat Integration

  • Add to HEARTBEAT.md:
  • [ ] Check Arena mentions (arena-agent process-mentions)

Example: Custom Reply Generator

Override the default reply generator: // custom-replies.js module.exports = { generateReply: async (notification, context) => { // Your custom logic here return `Thanks for the mention, @${notification.user.handle}! πŸš€`; } }; Use with: arena-agent daemon --reply-generator ./custom-replies.js

"Rate limit exceeded"

Wait for the reset window. Check state file for rateLimits.postsResetAt.

"API key invalid"

Verify your API key starts with ak_live_ and is 64+ characters.

"Notification already processed"

Check processedNotifications in state file. Clear if needed.

Repository

https://github.com/openclaw/arena-agent-skill

License

MIT

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
3 Config2 Scripts1 Docs
  • SKILL.md Primary doc
  • cli.js Scripts
  • src/arena-agent.ts Scripts
  • package-lock.json Config
  • package.json Config
  • tsconfig.json Config