Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add skills/leolin990405/r-analytics-skill/elasticnpx skills add LeoLin990405/r-analytics-skill --skill elasticgit clone --depth 1 https://github.com/LeoLin990405/r-analytics-skillWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/leolin990405/r-analytics-skill/elastic)<a href="https://agentmods.dev/skills/leolin990405/r-analytics-skill/elastic"><img src="https://agentmods.dev/badge/skills/leolin990405/r-analytics-skill/elastic.svg" alt="Measured on agentmods" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00018 | $0.00960 |
| Opus 5 | $0.00009 | $0.00480 |
| Sonnet 5 | $0.00004 | $0.00192 |
| Haiku 4.5 | $0.00002 | $0.00096 |
Grade A, and why
elastic scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 6d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 203 lines — stays where its author put it; the contents beside it link to each section on GitHub.
elastic
Elasticsearch client for R.
Connection
library(elastic)
# Connect to local Elasticsearch
connect()
# Connect with options
connect(
host = "localhost",
port = 9200,
user = "elastic",
pwd = "password"
)
# Check connection
ping()
Index Operations
# Create index
index_create("myindex")
# Create with settings
index_create("myindex", body = '{
"settings": {
"number_of_shards": 1,
"number_of_replicas": 0
},
"mappings": {
"properties": {
"title": {"type": "text"},
"date": {"type": "date"},
"count": {"type": "integer"}
}
}
}')
# Check if exists
index_exists("myindex")
# Delete index
index_delete("myindex")
# List indices
cat_indices()
Indexing Documents
# Index single document
docs_create(index = "myindex", id = 1, body = list(
title = "Hello",
content = "World",
date = Sys.Date()
))
# Bulk index
docs_bulk(df, index = "myindex")
# Bulk from file
docs_bulk("data.json", index = "myindex")
Search
# Simple search
Search(index = "myindex", q = "hello")
# Query DSL
Search(index = "myindex", body = '{
"query": {
"match": {
"title": "hello"
}
}
}')
# Bool query
Search(index = "myindex", body = '{
"query": {
"bool": {
"must": [
{"match": {"title": "hello"}},
{"range": {"date": {"gte": "2024-01-01"}}}
]
}
}
}')
# With pagination
Search(index = "myindex", size = 10, from = 0)
# With sorting
Search(index = "myindex", body = '{
"query": {"match_all": {}},
"sort": [{"date": "desc"}]
}')
Aggregations
# Terms aggregation
Search(index = "myindex", body = '{
"size": 0,
"aggs": {
"categories": {
"terms": {"field": "category.keyword"}
}
}
}')
# Date histogram
Search(index = "myindex", body = '{
"size": 0,
"aggs": {
"by_month": {
"date_histogram": {
"field": "date",
"calendar_interval": "month"
}
}
}
}')
# Nested aggregations
Search(index = "myindex", body = '{
"size": 0,
"aggs": {
"by_category": {
"terms": {"field": "category.keyword"},
"aggs": {
"avg_price": {"avg": {"field": "price"}}
}
}
}
}')
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 6d ago First seen · 203 lines · 18 tokens per session scan A f2f31ef797de
elastic is a skill published in the GitHub repository LeoLin990405/r-analytics-skill (5 stars, last pushed 5mo ago), licensed MIT. It adds 18 tokens to every session and 960 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other skills, from other repositories
databricks-live-unity-catalog-grant-guard-at-azure
Mutating-runtime live guard for Unity Catalog privilege management on Azure Databricks. Executes exactly ONE GRANT or REVOKE of a single privilege on a single Unity Catalog securable (schema, table, or volume) to a single principal — with explicit written human approval, dry-run preflight, prior-state capture, and a…
alibaba-live-rds-polardb-mutation-guard
Gate RDS/PolarDB instance deletion, spec downgrade, and backup policy removal — database deletion without verified backup is permanently destructive.
alibaba-waf-reliability-review
Assess Alibaba Cloud workload reliability: multi-AZ ECS topology, SLB/ALB/NLB load balancing, Auto Scaling health policies, RDS/PolarDB HA failover, backup and cross-region DR, and Cloud Monitor/ARMS observability coverage.
alibaba-analyticdb-realtime
Operate AnalyticDB for MySQL and PostgreSQL, Hologres real-time OLAP analytics, and DAS real-time diagnostics for sub-second interactive analytics workloads.
alibaba-polardb-rds-dba
Operate PolarDB (MySQL/PG/Oracle) clusters and RDS instances — DAS diagnostics, database proxy, Global Database Network, backup strategy, and performance tuning.
azure-cosmosdb-application-developer
Use this skill for Azure Cosmos DB application development work, especially NoSQL data modeling, document structure, partition-aware access patterns, point reads, query design, SDK usage, transactional batch scope, consistency-aware reads, change feed integration, and Cosmos DB development guidance.