Skills for agents to interact with Scout data platform.
This project provides agent skills for working with Scout's data capabilities - collections, tables, documents, agents, drive storage, syncs, and usage monitoring.
Interact with Scout data platform API. Use when working with Scout collections, tables, documents, agents, drive storage, syncs, or usage.
Capabilities:
| Feature | Description |
|---|---|
| Collections | Create, list, update, delete top-level data containers |
| Tables | Manage structured data with custom schemas (text, number, select, datetime, etc.) |
| Documents | CRUD operations on table records with bulk insert support |
| Agents | Manage AI assistants that interact with your Scout data |
| Drive | Upload and download files to Scout storage |
| Syncs | Sync data from external sources (websites, Notion, Google Drive, etc.) |
| Usage | Monitor API usage and costs |
Sync Sources Supported:
- Website crawler (
com.scoutos.website) - Sitemap (
com.scoutos.sitemap) - Notion (
com.notion.notion) - Google Drive (
com.google.drive) - Microsoft 365 (
com.microsoft.365) - Laserfiche (
com.laserfiche.repository) - Guided Crawl - AI browser automation (
com.scoutos.guided_crawl)
Example Usage:
# List collections
curl -H "Authorization: Bearer $SCOUT_API_KEY" \
"https://api.scoutos.com/v2/collections"
# Create a table
curl -X POST \
-H "Authorization: Bearer $SCOUT_API_KEY" \
-H "Content-Type: application/json" \
-d '{"table_display_name": "Tasks", "schema": [...]}' \
"https://api.scoutos.com/v2/collections/{collection_id}/tables"
# Add documents
curl -X POST \
-H "Authorization: Bearer $SCOUT_API_KEY" \
-H "Content-Type: application/json" \
-d '[{"title": "Task 1"}, {"title": "Task 2"}]' \
"https://api.scoutos.com/v2/collections/{col_id}/tables/{tbl_id}/documents"Copy the skill directory to your OpenClaw skills folder:
npx skills add scoutos/scout-skillsAll Scout API endpoints require a Bearer token:
- Log in to Scout
- Navigate to Settings → API Keys
- Create or copy your API key
- Set environment variable:
SCOUT_API_KEY=your-api-key
- Official Docs: https://docs.scoutos.com
- API Reference: https://docs.scoutos.com/api-sdk
- Status Page: https://status.scoutos.com
- Support: support@scoutos.com
MIT