一键导入
research-lightdash-api
Research and investigate Lightdash API endpoints to understand request/response schemas and behavior.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Research and investigate Lightdash API endpoints to understand request/response schemas and behavior.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | research-lightdash-api |
| description | Research and investigate Lightdash API endpoints to understand request/response schemas and behavior. |
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.
The user should provide:
/api/v1/projects/:projectUuid/spaces)web_search or WebFetch to find the endpoint details in the Lightdash API Docs.If you have access to a Lightdash instance and an API key:
Environment Setup:
LIGHTDASH_API_KEY and LIGHTDASH_URL (defaults to https://app.lightdash.cloud) in the environment or .env file.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:
{ "status": "ok", "results": ... } envelope.Accountability for identifying deprecated Lightdash API usage in the provider by comparing code patterns against the official OpenAPI specification. Use when tasked to audit the codebase for technical debt or outdated API dependencies.
Guide the execution of Lightdash Terraform provider acceptance tests, ensuring correct environment setup and targeted test execution.
Run formatting, linters, unit tests, and build checks, then fix violations.
Implement verified Lightdash API clients with documentation research and live schema verification.
Implement Terraform Resources and Data Sources in `internal/provider` with comprehensive testing.
Comprehensive security review of the Terraform provider codebase using gosec, trunk, osv-scanner, and trivy.