RE

research-lightdash-api

Researches and verifies Lightdash API behavior through documentation and live execution.

Install

mkdir -p .claude/skills/research-lightdash-api && curl -L -o skill.zip "https://agentskills.codes/api/skills/download/12221" && unzip -o skill.zip -d .claude/skills/research-lightdash-api && rm skill.zip

Installs to .claude/skills/research-lightdash-api

Activation

This is the description your AI agent reads to decide when to run this skill — the better it matches your request, the more reliably it fires.

Research and investigate Lightdash API endpoints to understand request/response schemas and behavior.
101 charsno explicit “when” trigger
Intermediate

Key capabilities

  • Search for API endpoint details in Lightdash documentation
  • Analyze documentation for request parameters and response structures
  • Check for the standard API Response Envelope
  • Perform live schema verification using `curl` or a Go script
  • Compare live JSON responses with documentation for discrepancies
  • Draft Go struct definitions based on verified schemas

How it works

The skill researches Lightdash API documentation and performs live verification against a running instance to confirm request/response schemas and identify discrepancies.

Inputs & outputs

You give it
Lightdash API Endpoint, HTTP Method, and optional Documentation URL
You get back
Verified JSON schema, documented discrepancies, and drafted Go struct definitions

When to use research-lightdash-api

  • Verify API endpoint behavior
  • Confirm request/response schema
  • Debug API integrations

About this skill

Research Lightdash API

Description

This skill is used to thoroughly research and investigate a Lightdash API endpoint. It involves researching official documentation and performing live verification against a running Lightdash instance to confirm the actual JSON schema, including request parameters and response bodies.

Input

The user should provide:

  1. API Endpoint: (e.g., /api/v1/projects/:projectUuid/spaces)
  2. HTTP Method: (GET, POST, PUT, DELETE, PATCH)
  3. Documentation URL: (Optional) Link to the official Lightdash API docs.

Workflow

1. Documentation Research

  • Search: Use web_search or WebFetch to find the endpoint details in the Lightdash API Docs.
  • Analysis:
    • Identify required and optional request parameters (path, query, body).
    • Note the expected response structure.
    • Check if it uses the standard API Response Envelope.

2. Live Schema Verification

If you have access to a Lightdash instance and an API key:

  • Environment Setup:

    • Check for LIGHTDASH_API_KEY and LIGHTDASH_URL (defaults to https://app.lightdash.cloud) in the environment or .env file.
    • If missing, inform the user: "To perform live verification, please provide LIGHTDASH_API_KEY and LIGHTDASH_URL."
  • Execution:

    • Use curl to fetch the live response. This is the preferred method.

      # Example for GET request
      curl -X GET "${LIGHTDASH_URL}/api/v1/your/endpoint" \
          -H "Authorization: ApiKey ${LIGHTDASH_API_KEY}" \
          -H "Content-Type: application/json"
      
    • For POST/PUT requests with a body:

      curl -X POST "${LIGHTDASH_URL}/api/v1/your/endpoint" \
          -H "Authorization: ApiKey ${LIGHTDASH_API_KEY}" \
          -H "Content-Type: application/json" \
          -d '{"key": "value"}'
      
    • Alternatively, use the Schema Verification Script if a Go-based execution is preferred:

      LIGHTDASH_API_KEY=your_key LIGHTDASH_URL=https://app.lightdash.cloud go run .claude/skills/research-lightdash-api/assets/verify_schema.go /api/v1/your/endpoint
      
  • Discrepancy Analysis:

    • Compare the live JSON response with the documentation.
    • Document any undocumented fields, differences in data types, or unexpected behaviors.
    • For POST/PUT/PATCH requests, verify if the request body schema matches the documentation.

3. Response Analysis

  • Envelope Check: Verify if the response is wrapped in the standard { "status": "ok", "results": ... } envelope.
  • Model Mapping: Draft the Go struct definitions (models) based on the verified schema, ensuring proper types (e.g., UUID strings, timestamps, nullable fields).

Reference

Assets

When not to use it

  • When there is no access to a Lightdash instance or API key for live verification
  • When the API endpoint is not part of Lightdash
  • When the user does not provide the API endpoint or HTTP method

Prerequisites

LIGHTDASH_API_KEYLIGHTDASH_URL

Limitations

  • Requires `LIGHTDASH_API_KEY` and `LIGHTDASH_URL` for live verification
  • Focuses on Lightdash API endpoints
  • Compares live JSON response with documentation

How it compares

This skill combines documentation research with live API verification to ensure the accuracy of Lightdash API schemas, providing a more thorough audit than relying solely on documentation or manual testing.

Compared to similar skills

research-lightdash-api side by side with the closest alternatives in the catalog.

SkillInstallsUpdatedSafetyDifficulty
research-lightdash-api (this skill)06moCautionIntermediate
n8n-expression-syntax64moNo flagsBeginner
claude-in-chrome-troubleshooting22moReviewIntermediate
openrouter-common-errors327dCautionIntermediate

Try saying

Example prompts that trigger this skill in your AI assistant.

You might also like

n8n-expression-syntax

czlonkowski

Validate n8n expression syntax and fix common errors. Use when writing n8n expressions, using {{}} syntax, accessing $json/$node variables, troubleshooting expression errors, or working with webhook data in workflows.

6111

claude-in-chrome-troubleshooting

trailofbits

Diagnose and fix Claude in Chrome MCP extension connectivity issues. Use when mcp__claude-in-chrome__* tools fail, return "Browser extension is not connected", or behave erratically.

211

openrouter-common-errors

jeremylongshore

Execute diagnose and fix common OpenRouter API errors. Use when troubleshooting failed requests. Trigger with phrases like 'openrouter error', 'openrouter not working', 'openrouter 401', 'openrouter 429', 'fix openrouter'.

39

linear-common-errors

jeremylongshore

Diagnose and fix common Linear API errors. Use when encountering Linear API errors, debugging integration issues, or troubleshooting authentication problems. Trigger with phrases like "linear error", "linear API error", "debug linear", "linear not working", "linear authentication error".

16

gamma-common-errors

jeremylongshore

Debug and resolve common Gamma API errors. Use when encountering authentication failures, rate limits, generation errors, or unexpected API responses. Trigger with phrases like "gamma error", "gamma not working", "gamma API error", "gamma debug", "gamma troubleshoot".

12

groq-common-errors

jeremylongshore

Diagnose and fix Groq common errors and exceptions. Use when encountering Groq errors, debugging failed requests, or troubleshooting integration issues. Trigger with phrases like "groq error", "fix groq", "groq not working", "debug groq".

12

Search skills

Search the agent skills registry