aces1up/apify-keys/SKILL.md
Rotating Apify API key manager. Returns the least-recently-used active Apify key from the ColdCore database. Use before any Apify API call to get a fresh key with available credits.
npx skillsauth add openclaw/skills apify-keysInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Get a rotating Apify API key from the ColdCore database. Keys are rotated by least-recently-used with balance checking.
Get next available API key:
python3 ~/.openclaw/workspace/skills/apify-keys/scripts/get_key.py
Get key as JSON (for piping to other scripts):
python3 ~/.openclaw/workspace/skills/apify-keys/scripts/get_key.py --json
Check balance on a specific key:
python3 ~/.openclaw/workspace/skills/apify-keys/scripts/get_key.py --check-balance --key "apify_api_xxxxx"
List all available keys with balances:
python3 ~/.openclaw/workspace/skills/apify-keys/scripts/get_key.py --list
scrape_sm_accounts for active Apify accountslast_used timestamp (least recently used)last_used to current timestamp after selectionThe script reads database credentials from these environment variables (falls back to defaults):
COLDCORE_HOST — MySQL hostCOLDCORE_USER — MySQL usernameCOLDCORE_PASS — MySQL passwordCOLDCORE_DB — Database name (default: lead_generator)Default mode: prints just the API key string (for easy piping)
apify_api_xxxxx
JSON mode (--json):
{"id": 68, "api_key": "apify_api_xxxxx", "email": "[email protected]", "balance": 4.95}
Other skills that need Apify access should call this script to get a key:
APIFY_KEY=$(python3 ~/.openclaw/workspace/skills/apify-keys/scripts/get_key.py)
# Then use $APIFY_KEY in your API calls
Or in Python:
import subprocess
result = subprocess.run(
["python3", os.path.expanduser("~/.openclaw/workspace/skills/apify-keys/scripts/get_key.py"), "--json"],
capture_output=True, text=True
)
key_data = json.loads(result.stdout)
api_key = key_data["api_key"]
tools
Use when the user wants to connect to, test, or use the McDonalds service at mcp.mcd.cn, including checking authentication, probing MCP endpoints, listing tools, or calling McDonalds MCP tools through a reusable local CLI.
development
Web scraping platform — Twitter/X data, Vinted marketplace, and general web scraping API
development
SlowMist AI Agent Security Review — comprehensive security framework for skills, repositories, URLs, on-chain addresses, and products (Claude Code version)
data-ai
去除中文文本中的 AI 写作痕迹,使其读起来自然。基于维基百科 AI 写作特征指南,检测 24 种 AI 模式。触发词:humanizer-cn、去除 AI 痕迹、去除 AI 写作痕迹、中文文本人性化。