openclaw-starter-kit

Verified·Scanned 2/17/2026

This skill is an AIsa API client and CLI that provides Twitter, web/scholar search, news, and LLM routing via https://api.aisa.one and the scripts/aisa_client.py tool. It requires AISA_API_KEY and includes example curl/python commands and login flows that accept credentials (--password, --totp); these behaviors are purpose-aligned and low risk.

from clawhub.ai·v0e668f1·37.1 KB·0 installs
Scanned from 1.0.4 at 0e668f1 · Transparency log ↗
$ vett add clawhub.ai/aisa-one/openclaw-starter-kit

OpenClaw Starter Kit 🦞

The definitive starting point for autonomous agents. Powered by AIsa.


Why OpenClaw Starter Kit?

Building autonomous agents shouldn't require juggling dozens of API keys. OpenClaw Starter Kit gives you unified access to everything your agent needs:

CapabilityWhat You Get
🐦 Twitter/XRead timelines, search tweets, post, like, retweet
🔍 Web SearchReal-time search results
📚 Scholar SearchAcademic papers and research
📰 NewsCompany news by stock ticker
🤖 LLM RoutingGPT-4, Claude, Gemini, Qwen, Deepseek, Grok

One API key. One integration. Infinite possibilities.


Quick Start (30 Seconds)

1. Get Your API Key

Sign up at aisa.one and grab your API key.

2. Set Environment Variable

export AISA_API_KEY="your-api-key-here"

3. Start Using

# Get Twitter user info
python scripts/aisa_client.py twitter user-info --username elonmusk

# Search the web
python scripts/aisa_client.py search web --query "autonomous agents 2024"

# Query an LLM
python scripts/aisa_client.py llm complete --model gpt-4 --prompt "Explain quantum computing"

What Can Your Agent Do?

Morning Briefing (Scheduled Task)

"Send me a daily briefing at 8am with:
- My portfolio performance (NVDA, TSLA, BTC)
- Twitter trends in AI
- Top news in my industry"

Competitor Intelligence

"Monitor @OpenAI - alert me on new tweets, news mentions, and paper releases"

Investment Research

"Full analysis on NVDA: price trends, insider trades, analyst estimates, 
SEC filings, and Twitter sentiment"

Startup Validation

"Research the market for AI writing tools - find competitors, 
Twitter discussions, and academic papers on the topic"

Installation

Requirements

  • Python 3.8+
  • curl (for shell examples)

Setup

# Clone the repository
git clone https://github.com/anthropic/openclaw-starter-kit.git
cd openclaw-starter-kit

# Set your API key
export AISA_API_KEY="your-api-key"

# Test the installation
python scripts/aisa_client.py twitter trends

API Examples

Twitter/X - Read

# User info
curl "https://api.aisa.one/apis/v1/twitter/user/info?userName=elonmusk" \
  -H "Authorization: Bearer $AISA_API_KEY"

# Advanced search
curl "https://api.aisa.one/apis/v1/twitter/tweet/advanced_search?query=AI+agents&queryType=Latest" \
  -H "Authorization: Bearer $AISA_API_KEY"

# Trending topics
curl "https://api.aisa.one/apis/v1/twitter/trends?woeid=1" \
  -H "Authorization: Bearer $AISA_API_KEY"

Twitter/X - Write (Requires Login)

# Step 1: Login
curl -X POST "https://api.aisa.one/apis/v1/twitter/user_login_v3" \
  -H "Authorization: Bearer $AISA_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"user_name":"myaccount","email":"me@example.com","password":"xxx","proxy":"http://user:pass@ip:port"}'

# Step 2: Post tweet
curl -X POST "https://api.aisa.one/apis/v1/twitter/send_tweet_v3" \
  -H "Authorization: Bearer $AISA_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"user_name":"myaccount","text":"Hello from OpenClaw Starter Kit!"}'

Web & Scholar Search

# Web search
curl -X POST "https://api.aisa.one/apis/v1/scholar/search/web?query=AI+frameworks&max_num_results=10" \
  -H "Authorization: Bearer $AISA_API_KEY"

# Academic papers
curl -X POST "https://api.aisa.one/apis/v1/scholar/search/scholar?query=transformer+models&max_num_results=10" \
  -H "Authorization: Bearer $AISA_API_KEY"

LLM Routing (OpenAI Compatible)

curl -X POST "https://api.aisa.one/v1/chat/completions" \
  -H "Authorization: Bearer $AISA_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"model": "gpt-4", "messages": [{"role": "user", "content": "Hello!"}]}'

Supported Models: GPT-4, Claude-3, Gemini, Qwen, Deepseek, Grok, and more.


Python Client Reference

# Twitter
python scripts/aisa_client.py twitter user-info --username <username>
python scripts/aisa_client.py twitter tweets --username <username>
python scripts/aisa_client.py twitter search --query <query>
python scripts/aisa_client.py twitter trends

# Twitter Write (login required)
python scripts/aisa_client.py twitter login --username <u> --email <e> --password <p> --proxy <proxy>
python scripts/aisa_client.py twitter post --username <u> --text "Hello!"
python scripts/aisa_client.py twitter like --username <u> --tweet-id <id>

# Search
python scripts/aisa_client.py search web --query <query>
python scripts/aisa_client.py search scholar --query <query>
python scripts/aisa_client.py search smart --query <query>

# News
python scripts/aisa_client.py news --ticker AAPL

# LLM
python scripts/aisa_client.py llm complete --model gpt-4 --prompt "Your prompt"
python scripts/aisa_client.py llm chat --model claude-3-sonnet --messages '[{"role":"user","content":"Hi"}]'

Pricing

APICost
Twitter query~$0.0004
Twitter post/like~$0.001
Web search~$0.001
Scholar search~$0.002
News~$0.001
LLMToken-based

Every response includes usage.cost and usage.credits_remaining.


OpenClaw Starter Kit vs. Alternatives

FeatureOpenClaw Starter KitDIY API Integration
Setup time30 secondsHours/Days
API keys needed15-10+
Twitter read/writeComplex
Web + Scholar searchMultiple providers
LLM routingSeparate integration
Server-friendlyVaries
Pay-per-useMultiple billing

Documentation

  • SKILL.md - OpenClaw skill specification
  • API Reference - Complete endpoint documentation
  • AIsa Docs - Full API documentation

Contributing

Contributions are welcome! Please read our contributing guidelines before submitting PRs.

  1. Fork the repository
  2. Create your feature branch (git checkout -b feature/amazing-feature)
  3. Commit your changes (git commit -m 'Add amazing feature')
  4. Push to the branch (git push origin feature/amazing-feature)
  5. Open a Pull Request

License

Apache 2.0 License - see LICENSE for details.


Links

  • 🦞 OpenClaw - The autonomous agent framework
  • AIsa - Unified API backend
  • 📖 API Docs - Full documentation

<p align="center"> <b>OpenClaw Starter Kit</b> - Built for the next generation of autonomous agents. </p>