skills$openclaw/elastic
mrgoodb9.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

nameelastic
descriptionSearch and analyze data via Elasticsearch API. Index, search, and manage clusters. OpenClaw Skills integration.
ownermrgoodb
repositorymrgoodb/elastic
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @mrgoodb/elastic
last updatedFeb 7, 2026

Maintainer

mrgoodb

mrgoodb

Maintains elastic in the OpenClaw Skills directory.

View GitHub profile
File Explorer
2 files
.
_meta.json
267 B
SKILL.md
1.1 KB
SKILL.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"
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"}}}'
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"}'
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.