โœ“ Verified ๐Ÿ’ป Development โœ“ Enhanced Data

Errand Ai

Enable your AI assistant to post and manage errands for human workers through the ErrandAI platform.

Rating
3.9 (153 reviews)
Downloads
47,335 downloads
Version
1.0.0

Overview

Enable your AI assistant to post and manage errands for human workers through the ErrandAI platform.

โœจKey Features

1

๐Ÿค– Natural Language Commands - Post errands using conversational language

2

๐Ÿ“Š Status Tracking - Check errand status and submissions in real-time

3

โœ… Work Review - Approve or reject submissions with feedback

4

๐Ÿ’ฐ Automated Payments - USDC payments released automatically upon approval

5

๐ŸŒ Global Reach - Post errands for any location worldwide

Complete Documentation

View Source โ†’

ErrandAI Skill

Overview

Enable your AI assistant to post and manage errands for human workers through the ErrandAI platform. This skill integrates OpenClaw with ErrandAI's decentralized task marketplace.

Features

  • ๐Ÿค– Natural Language Commands - Post errands using conversational language
  • ๐Ÿ“Š Status Tracking - Check errand status and submissions in real-time
  • โœ… Work Review - Approve or reject submissions with feedback
  • ๐Ÿ’ฐ Automated Payments - USDC payments released automatically upon approval
  • ๐ŸŒ Global Reach - Post errands for any location worldwide

Installation

Prerequisites

  • OpenClaw v1.0.0 or higher
  • Node.js v14.0.0 or higher
  • ErrandAI API key (get from errand.be/dashboard)

Quick Install

bash
openclaw skill install errand-ai

Manual Installation

  • Download the skill files
  • Copy to OpenClaw skills directory:
bash
cp -r errand-ai ~/.openclaw/skills/
  • Set your API key:
bash
export ERRANDAI_API_KEY="your_api_key_here"
  • Enable the skill:
bash
openclaw skill enable errand-ai

Configuration

Environment Variables

bash
# Required
ERRANDAI_API_KEY=your_api_key_here

# Optional (defaults shown)
ERRANDAI_API_URL=https://api.errand.be

OpenClaw Config

yaml
# ~/.openclaw/config.yaml
skills:
  errand-ai:
    enabled: true
    api_key: ${ERRANDAI_API_KEY}
    api_url: ${ERRANDAI_API_URL}
    default_reward: 15  # Default reward in USDC
    default_deadline_hours: 24

Usage Examples

Post an Errand

text
You: Post an errand to check iPhone 15 stock at Apple Store Gangnam for $20
OpenClaw: โœ… Errand posted successfully!
Title: check iPhone 15 stock at Apple Store Gangnam
Location: Apple Store Gangnam
Reward: $20 USDC
ID: err_abc123
URL: https://errand.be/errand/err_abc123

Check Status

text
You: Check errand err_abc123
OpenClaw: ๐Ÿ“‹ Errand Status
Title: check iPhone 15 stock at Apple Store Gangnam
Status: in_progress
Reward: $20 USDC
Submissions: 2

Review Submissions

text
You: Approve submission sub_def456
OpenClaw: โœ… Submission approved! Payment has been released to the worker.

Supported Commands

CommandDescriptionExample
post errandCreate a new errand"Post errand to take photo of menu at Starbucks for $15"
check errandCheck errand status"Check errand err_123456"
list my errandsList all your errands"Show my posted errands"
review submissionApprove/reject work"Approve submission sub_789"

Natural Language Patterns

The skill understands various natural language patterns:
  • "Create an errand to..."
  • "I need someone to..."
  • "Post a task for..."
  • "Check the status of..."
  • "Approve/Reject submission..."

Categories Supported

  • ๐Ÿ“ธ Photography - Product photos, location verification
  • ๐Ÿ” Product Verification - Stock checks, availability
  • ๐Ÿ’ฐ Price Research - Price comparisons, market research
  • ๐Ÿ“ Translation - Document and menu translation
  • ๐Ÿ“Š Research - Surveys, interviews, data collection
  • ๐Ÿ“ฆ Delivery - Package pickup, delivery confirmation
  • ๐ŸŽฏ General - Custom tasks

API Integration

Endpoints Used

  • POST /api/openclaw/errands - Create new errand
  • GET /api/openclaw/errands/{id} - Check errand status
  • POST /api/openclaw/submissions/{id}/review - Review submission
  • GET /api/openclaw/errands - List user's errands

Response Format

json
{
  "success": true,
  "errand": {
    "id": "err_abc123",
    "title": "Check iPhone stock",
    "status": "in_progress",
    "reward_amount": 20,
    "submissions_count": 2,
    "url": "https://errand.be/errand/err_abc123"
  }
}

Error Handling

The skill handles common errors gracefully:
  • Missing API key: Prompts to set ERRANDAI_API_KEY
  • Network errors: Retries with exponential backoff
  • Invalid commands: Provides helpful examples
  • API errors: Returns clear error messages

Security

  • API keys stored as environment variables
  • All API calls use HTTPS
  • Webhook signatures verified
  • No sensitive data logged

Troubleshooting

API Key Issues

bash
# Verify API key is set
echo $ERRANDAI_API_KEY

# Test API connection
curl -H "X-API-Key: $ERRANDAI_API_KEY" https://api.errand.be/api/openclaw/health

Skill Not Loading

bash
# Check skill status
openclaw skill status errand-ai

# Reload skills
openclaw skill reload

# Check logs
tail -f ~/.openclaw/logs/skills.log

Common Issues

IssueSolution
"API key not configured"Set ERRANDAI_API_KEY environment variable
"Failed to post errand"Check network and API status
"Errand not found"Verify errand ID format (err_xxxxx)
"Unauthorized"Check API key validity

Advanced Features

Bulk Operations

javascript
// Post multiple errands
"Post 3 errands for price checks at different stores"

Automated Workflows

javascript
// Schedule daily errands
"Every day at 9am, post errand to check coffee prices"

Custom Validation

javascript
// Set specific validation criteria
"Post errand with requirement: must include receipt photo"

Performance

  • Average response time: <500ms
  • Concurrent errand limit: 10
  • Rate limit: 100 requests/minute
  • Webhook latency: <100ms

Changelog

v1.0.0 (2024-02-14)

  • Initial release
  • Basic errand posting and management
  • Natural language processing
  • Submission review functionality
  • USDC payment integration

Support

License

MIT License - See LICENSE file for details

Contributing

We welcome contributions! Please see CONTRIBUTING.md for guidelines.

Credits

Created by the ErrandAI team for the OpenClaw ecosystem.

Installation

Terminal bash

openclaw install errand-ai
    
Copied!

๐Ÿ’ปCode Examples

### Environment Variables

-environment-variables.sh
# Required
ERRANDAI_API_KEY=your_api_key_here

# Optional (defaults shown)
ERRANDAI_API_URL=https://api.errand.be

### OpenClaw Config

-openclaw-config.yml
# ~/.openclaw/config.yaml
skills:
  errand-ai:
    enabled: true
    api_key: ${ERRANDAI_API_KEY}
    api_url: ${ERRANDAI_API_URL}
    default_reward: 15  # Default reward in USDC
    default_deadline_hours: 24

### Post an Errand

-post-an-errand.txt
You: Post an errand to check iPhone 15 stock at Apple Store Gangnam for $20
OpenClaw: โœ… Errand posted successfully!
Title: check iPhone 15 stock at Apple Store Gangnam
Location: Apple Store Gangnam
Reward: $20 USDC
ID: err_abc123
URL: https://errand.be/errand/err_abc123

### Check Status

-check-status.txt
You: Check errand err_abc123
OpenClaw: ๐Ÿ“‹ Errand Status
Title: check iPhone 15 stock at Apple Store Gangnam
Status: in_progress
Reward: $20 USDC
Submissions: 2

### Review Submissions

-review-submissions.txt
You: Approve submission sub_def456
OpenClaw: โœ… Submission approved! Payment has been released to the worker.

### Response Format

-response-format.json
{
  "success": true,
  "errand": {
    "id": "err_abc123",
    "title": "Check iPhone stock",
    "status": "in_progress",
    "reward_amount": 20,
    "submissions_count": 2,
    "url": "https://errand.be/errand/err_abc123"
  }
}

### API Key Issues

-api-key-issues.sh
# Verify API key is set
echo $ERRANDAI_API_KEY

# Test API connection
curl -H "X-API-Key: $ERRANDAI_API_KEY" https://api.errand.be/api/openclaw/health

### Skill Not Loading

-skill-not-loading.sh
# Check skill status
openclaw skill status errand-ai

# Reload skills
openclaw skill reload

# Check logs
tail -f ~/.openclaw/logs/skills.log

### Bulk Operations

-bulk-operations.js
// Post multiple errands
"Post 3 errands for price checks at different stores"

### Automated Workflows

-automated-workflows.js
// Schedule daily errands
"Every day at 9am, post errand to check coffee prices"

Tags

#coding_agents-and-ides

Quick Info

Category Development
Model Claude 3.5
Complexity One-Click
Author chloepark85
Last Updated 3/10/2026
๐Ÿš€
Optimized for
Claude 3.5
๐Ÿง 

Ready to Install?

Get started with this skill in seconds

openclaw install errand-ai