9.0k★by mrgoodb
elastic – OpenClaw Skill
elastic is an OpenClaw Skills integration for writing workflows. Search and analyze data via Elasticsearch API. Index, search, and manage clusters.
9.0k stars1.4k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026writing
Skill Snapshot
| name | elastic |
| description | Search and analyze data via Elasticsearch API. Index, search, and manage clusters. OpenClaw Skills integration. |
| owner | mrgoodb |
| repository | mrgoodb/elastic |
| language | Markdown |
| license | MIT |
| topics | |
| security | L1 |
| install | openclaw add @mrgoodb/elastic |
| last updated | Feb 7, 2026 |
Maintainer

File Explorer
2 files
.
_meta.json
267 BSKILL.md
1.1 KBSKILL.md
name: elastic description: Search and analyze data via Elasticsearch API. Index, search, and manage clusters. metadata: {"clawdbot":{"emoji":"🔍","requires":{"env":["ELASTICSEARCH_URL","ELASTICSEARCH_API_KEY"]}}}
Elasticsearch
Distributed search and analytics.
Environment
export ELASTICSEARCH_URL="https://elastic.example.com:9200"
export ELASTICSEARCH_API_KEY="xxxxxxxxxx"
Cluster Health
curl "$ELASTICSEARCH_URL/_cluster/health" -H "Authorization: ApiKey $ELASTICSEARCH_API_KEY"
Search
curl -X POST "$ELASTICSEARCH_URL/my-index/_search" \
-H "Authorization: ApiKey $ELASTICSEARCH_API_KEY" \
-H "Content-Type: application/json" \
-d '{"query": {"match": {"message": "error"}}}'
Index Document
curl -X POST "$ELASTICSEARCH_URL/my-index/_doc" \
-H "Authorization: ApiKey $ELASTICSEARCH_API_KEY" \
-H "Content-Type: application/json" \
-d '{"message": "Log entry", "timestamp": "2024-01-30T10:00:00Z"}'
Links
README.md
No README available.
Permissions & Security
Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.
Requirements
- OpenClaw CLI installed and configured.
- Language: Markdown
- License: MIT
- Topics:
FAQ
How do I install elastic?
Run openclaw add @mrgoodb/elastic in your terminal. This installs elastic into your OpenClaw Skills catalog.
Does this skill run locally or in the cloud?
OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.
Where can I verify the source code?
The source repository is available at https://github.com/openclaw/skills/tree/main/skills/mrgoodb/elastic. Review commits and README documentation before installing.
