openclaw-plugin-endpoints
v1.1.0
Published
Endpoints API toolkit with persistent memory (claw-ram/claw-drive) for OpenClaw
Maintainers
Readme
Endpoints Plugin for OpenClaw
Endpoints API toolkit with persistent memory (claw-ram/claw-drive).
Features
- Scan documents with AI extraction
- Manage categorized endpoints
- Persistent memory (claw-ram index + claw-drive storage)
- OpenClaw transcript support (~95% smaller payloads)
Installation
openclaw plugins install @openclaw/plugin-endpointsOr for development:
openclaw plugins install -l /path/to/moltbot-skillConfiguration
Add to your OpenClaw config:
{
"plugins": {
"entries": {
"endpoints": {
"enabled": true,
"config": {
"apiUrl": "https://endpoints.work",
"apiKey": "ep_your_api_key_here"
}
}
}
}
}Get your API key from: https://endpoints.work/api-keys
Slash Commands
These execute immediately without AI:
| Command | Description |
|---------|-------------|
| /endpoints list | List all endpoints by category |
| /endpoints inspect /path | Get endpoint details |
| /endpoints stats | Show usage statistics |
| /recall | View memory index |
| /save | Instructions for saving to memory |
Skills
These are model-invocable tools the AI can use:
| Skill | When It's Used |
|-------|----------------|
| endpoints | Managing endpoints, scanning documents |
| memory-saver | Saving research findings to claw-drive |
| memory-retriever | Fetching prior research from memory |
Memory System
Two-tier persistent storage:
- claw-ram/index - Quick-reference index with summaries and keywords
- claw-drive/{slug} - Full content storage
Example workflow:
- User: "Save this research about React patterns"
- AI invokes
memory-saverskill - Content saved to
claw-drive/react-patterns - Index updated in
claw-ram/index - Later: "What do I know about React?" → AI invokes
memory-retriever
Development
npm install
npm run typecheck