skills/integrations/langfuse/langfuse-datasets/SKILL.md
Manage Langfuse datasets, items, runs, and run-items. Load when user says 'list datasets', 'create dataset', 'get dataset', 'dataset items', 'dataset runs', 'add test case', 'evaluation results', 'delete dataset item', 'delete dataset run'.
npx skillsauth add beam-ai-team/beam-next-skills langfuse-datasetsInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Unified skill for Langfuse dataset management — datasets, items, runs, and run-items.
Replaces: langfuse-list-datasets, langfuse-create-dataset, langfuse-get-dataset, langfuse-list-dataset-items, langfuse-create-dataset-item, langfuse-get-dataset-item, langfuse-delete-dataset-item, langfuse-list-dataset-runs, langfuse-get-dataset-run, langfuse-delete-dataset-run, langfuse-list-dataset-run-items, langfuse-create-dataset-run-item.
All operations go through a single script with --resource and --action:
uv run python scripts/datasets.py --resource <resource> --action <action> [options]
# List datasets
uv run python scripts/datasets.py --resource datasets --action list --limit 50
# List all datasets (paginated)
uv run python scripts/datasets.py --resource datasets --action list --all
# Create a dataset
uv run python scripts/datasets.py --resource datasets --action create --name "my-eval-set" --description "Regression tests"
# Get a dataset by name
uv run python scripts/datasets.py --resource datasets --action get --name "my-eval-set"
# List items (optionally filter by dataset)
uv run python scripts/datasets.py --resource items --action list --dataset "my-eval-set"
# Create an item (test case)
uv run python scripts/datasets.py --resource items --action create \
--dataset "my-eval-set" \
--input '{"query": "What is LangChain?"}' \
--expected '{"answer": "A framework for LLM apps"}'
# Get item by ID
uv run python scripts/datasets.py --resource items --action get --id "item-uuid"
# Delete item
uv run python scripts/datasets.py --resource items --action delete --id "item-uuid"
# List runs for a dataset
uv run python scripts/datasets.py --resource runs --action list --dataset "my-eval-set"
# Get a specific run
uv run python scripts/datasets.py --resource runs --action get --dataset "my-eval-set" --run "run-name"
# Delete a run
uv run python scripts/datasets.py --resource runs --action delete --dataset "my-eval-set" --run "run-name"
# List run items (filter by dataset and/or run)
uv run python scripts/datasets.py --resource run-items --action list --dataset "my-eval-set" --run "run-name"
# Create a run item (log an evaluation result)
uv run python scripts/datasets.py --resource run-items --action create \
--run "run-name" --dataset-item "item-uuid" --trace "trace-uuid"
| Option | Description |
|--------|-------------|
| --limit | Max results per page (default 50, max 100) |
| --page | Page number (default 1) |
| --all | Fetch all pages (for list actions) |
| --max-pages | Stop after N pages with --all |
| --output, -o | Write JSON to file instead of stdout |
| Resource | Action | Method | Endpoint |
|----------|--------|--------|----------|
| datasets | list | GET | /api/public/v2/datasets |
| datasets | create | POST | /api/public/v2/datasets |
| datasets | get | GET | /api/public/v2/datasets/{name} |
| items | list | GET | /api/public/dataset-items |
| items | create | POST | /api/public/dataset-items |
| items | get | GET | /api/public/dataset-items/{id} |
| items | delete | DELETE | /api/public/dataset-items/{id} |
| runs | list | GET | /api/public/datasets/{name}/runs |
| runs | get | GET | /api/public/datasets/{name}/runs/{run} |
| runs | delete | DELETE | /api/public/datasets/{name}/runs/{run} |
| run-items | list | GET | /api/public/dataset-run-items |
| run-items | create | POST | /api/public/dataset-run-items |
tools
Build a Palantir-shape, PDF-native use-case proposal document for a sophisticated enterprise account: research-grounded use cases (each with description, challenge, impact, value), an operating-graph ontology page, a recommended PoC with a week-by-week plan, and a closing page that asks for one decision. Load when a client asks us to 'propose high-impact use cases', requests a use-case presentation/catalog for a function (finance, HR, ops), or when a technical evaluation team will review candidates to pick a PoC. NOT for single-account cold outreach (use prospect-brief), full process diagnostics (use operating-diagnostic), or priced proposals (use proposal-creation).
development
Convert Beam Figma slide designs into high-fidelity, editable HTML presentation decks. Use when Codex is asked to audit Figma slides, extract slide templates, rebuild Beam slides as HTML decks, decide whether Figma imagery should be exported or rebuilt in HTML/CSS, create Beam/Prism-compatible deck templates, or improve fidelity of existing Beam HTML slide rebuilds.
development
Use the Beam AI reusable slide library: individual HTML slide templates extracted from Beam Figma rebuilds, kept separate from deck themes and full deck templates. Load when the user asks for a slide library, specific Beam slide patterns, reusable Figma-inspired slides, Prism slide-library items, or slide-level HTML templates.
development
Use Beam AI deck and report design packs, HTML templates, and curated examples to create sales decks, customer intro decks, RPO decks, and DIN A4 use-case proposal reports. Load when the user asks for Beam-branded presentation templates, Prism-compatible deck templates, Beam report templates, customer intro decks, commercial proposals, or reusable HTML deck/report examples.