greptimedb: Skill for Claude Code

.agents/skills/greptimedb-fuzz-ci-failure-investigation/SKILL.md

greptimedb-fuzz-ci-failure-investigation is a skill for Claude Code, Codex from GreptimeTeam/greptimedb. It costs 80 tokens per session (4,432 once invoked), scanned A, original, Apache-2.0.

A troubleshooting workflow for failed GreptimeDB fuzz-test jobs in GitHub Actions. Fuzz testing repeatedly tries varied inputs to uncover software failures, while GitHub Actions runs automated jobs.

In plain words
What is it for?
Use it to investigate failed GreptimeDB fuzz CI jobs by examining logs, diagnostic files, and related source code.
Why use it?
It brings together job logs, fuzzing artifacts, and local source code so the likely cause can be investigated from evidence.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: positional $N argument; installed under .agents/ (shared by several agents); mentions AGENTS.md.

This is GreptimeTeam/greptimedb's own configuration. It tells Claude Code and Codex how to work on greptimedb itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything greptimedb configures →

About the project

GreptimeDB is an observability database that stores metrics, logs, and traces in a columnar engine over object storage, using a shared table model for the data. It is for operating telemetry backends, correlating related signals with SQL, and querying metrics with PromQL.

GreptimeTeam/greptimedb · 6,660 stars · on GitHub · greptime.com

Reuse

Borrowing it

Nothing to install: this file belongs to GreptimeTeam/greptimedb. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/GreptimeTeam/greptimedb/main/.agents/skills/greptimedb-fuzz-ci-failure-investigation/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/GreptimeTeam/greptimedb

Made for: Claude Code, Codex.

Wrote 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.

agentmods badge for greptimedb-fuzz-ci-failure-investigation

README.md
[![agentmods](https://agentmods.dev/badge/skills/greptimeteam/greptimedb/greptimedb-fuzz-ci-failure-investigation/github.svg)](https://agentmods.dev/skills/greptimeteam/greptimedb/greptimedb-fuzz-ci-failure-investigation)
Your own site
<a href="https://agentmods.dev/skills/greptimeteam/greptimedb/greptimedb-fuzz-ci-failure-investigation"><img src="https://agentmods.dev/badge/skills/greptimeteam/greptimedb/greptimedb-fuzz-ci-failure-investigation/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for greptimedb-fuzz-ci-failure-investigation

Your own site · 80×15
<a href="https://agentmods.dev/skills/greptimeteam/greptimedb/greptimedb-fuzz-ci-failure-investigation"><img src="https://agentmods.dev/badge/skills/greptimeteam/greptimedb/greptimedb-fuzz-ci-failure-investigation.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 80 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 4,432 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce invoked
Fable 5.1 $0.00080 $0.04432
Opus 5 $0.00040 $0.02216
Sonnet 5 $0.00016 $0.00886
Haiku 4.5 $0.00008 $0.00443

Measured 12d ago against content hash e509013c6db3, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

greptimedb-fuzz-ci-failure-investigation 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 12d 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.

.agents/skills/greptimedb-fuzz-ci-failure-investigation/SKILL.md · 471 lines

How it starts

The opening of the file, as written. The whole thing — 471 lines — stays where its author put it; the contents beside it link to each section on GitHub.

GreptimeDB Fuzz CI Failure Investigation

Investigate failed fuzz-test jobs for GreptimeTeam/greptimedb from a local checkout. The purpose is to download the failed job's CI output and fuzz artifacts, then explain the likely cause by correlating the evidence with GreptimeDB source.

Always pass --repo GreptimeTeam/greptimedb to gh; local remotes may point to forks. Keep the workflow read-only: do not rerun jobs, cancel workflows, push, comment on PRs, or delete artifacts unless the user explicitly asks.

Scope

Use this skill for fuzz CI only. In .github/workflows/integration.yml, fuzz failures are the CI jobs that use .github/actions/fuzz-test:

  • fuzztest — standalone fuzz targets.
  • unstable-fuzztest — unstable standalone fuzz target.
  • distributed-fuzztest — distributed cluster fuzz targets.
  • distributed-fuzztest-with-chaos — distributed fuzz targets with Chaos Mesh.

Each matrix job runs a semantic group of targets on one prepared environment. The group defaults to fail-fast: after the first target failure it captures that target's diagnostics and marks the remaining targets as skipped. The workflow strategy still uses fail-fast: false, so failures do not cancel other groups.

The reusable action .github/actions/fuzz-test/action.yaml delegates each target to .github/scripts/run-fuzz-targets.sh. CI passes FUZZ_BIN_DIR, so the script runs the prebuilt target executable:

<prebuilt-fuzz-binary> -max_total_time=<seconds> \
  -artifact_prefix=<target-dir>/libfuzzer/

Without FUZZ_BIN_DIR, such as during local reproduction, the script falls back to cargo fuzz run <target> --fuzz-dir tests-fuzz -D -s none with the same libFuzzer arguments.

Failed jobs upload one group artifact. Its stable name identifies the job kind, mode, and group, for example:

fuzz-distributed-remote-wal-database-and-regular-table

The artifact contains manifest.json, summary.md, and one directory per target under targets/<target>/. A failed distributed target can include fuzz.log, libFuzzer reproducers, CSV/SQL traces, Kind logs, monitor dumps, and Kubernetes state. Setup failures use targets/setup/.

Read the full file on GitHub · 471 lines

Changes

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.

  1. 12d ago First seen · 471 lines · 80 tokens per session scan A e509013c6db3

Subscribe to this mod's changes

greptimedb-fuzz-ci-failure-investigation is a skill published in the GitHub repository GreptimeTeam/greptimedb (6,660 stars, last pushed today), licensed Apache-2.0. It adds 80 tokens to every session and 4,432 once invoked, about $0.0004 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-30.

Related

Other skills, from other repositories

traceway

Operate a Traceway observability instance through the traceway CLI: log in, query exceptions, logs, endpoints, and metrics, and debug production issues down to root cause. Use when the user invokes /traceway with a subcommand, e.g. "/traceway login", "/traceway debug issue ", "/traceway what's broken in prod", or…

tracewayapp/traceway · 103 tokens

opentelemetry-net-instrumentation

Provides guidance for implementing OpenTelemetry instrumentation in .NET codebases, covering tracing (Activities/Spans), metrics, logs, naming conventions, error handling, performance, SDK setup, resources, context propagation, and API design best practices.

Aaronontheweb/dotnet-skills · 56 tokens

monitoring-observability

Monitoring and observability patterns for Prometheus metrics, Grafana dashboards, Langfuse v4 LLM tracing (astype, scorecurrentspan, shouldexportspan, LangfuseMedia), and drift detection. Use when adding logging, metrics, distributed tracing, LLM cost tracking, or quality drift monitoring.

yonatangross/orchestkit · 69 tokens

observability

Use when instrumenting a service from the inside so an incident can be explained from telemetry alone — wiring OpenTelemetry logs, metrics and traces, standing up a Collector, exporting via OTLP, and defining telemetry-driven alerts. NOT outside-in uptime probes, on-call rotation, or who-gets-paged (that is…

ericrisco/rsc-harness · 70 tokens

datadog

Full-stack observability with Datadog APM, logs, metrics, synthetics, and RUM. Use when implementing monitoring, tracing, alerting, or cost optimization for production systems.

bobmatnyc/claude-mpm-skills · 43 tokens

monitoring-expert

Expert-level monitoring and observability with Prometheus, Grafana, logging, and alerting. Use when the user mentions observability, Prometheus, Grafana, logging, metrics, or alerting, or when the task involves The Three Pillars of Observability, Monitoring Fundamentals, Prometheus Configuration, or Alert Rules.

personamanagmentlayer/pcl · 70 tokens