Install
Quick install
npx skills add https://github.com/langfuse/langfuse/tree/HEAD/.agents/skills/agent-setup-maintenancenpx skills add langfuse/langfuse --skill agent-setup-maintenance --agent claude-codenpx skills add langfuse/langfuse --skill agent-setup-maintenance --agent cursornpx skills add langfuse/langfuse --skill agent-setup-maintenance --agent codexnpx skills add langfuse/langfuse --skill agent-setup-maintenance --agent opencodenpx skills add langfuse/langfuse --skill agent-setup-maintenance --agent github-copilotnpx skills add langfuse/langfuse --skill agent-setup-maintenance --agent windsurfMore install options
Shorthand — useful for multi-skill repos:
npx skills add langfuse/langfuse --skill agent-setup-maintenanceManual — clone the repo and drop the folder into your agent's skills directory:
git clone https://github.com/langfuse/langfuse.gitcp -r langfuse/.agents/skills/agent-setup-maintenance ~/.claude/skills/agent-setup-maintenance
Use this skill when changing the shared agent setup for the repository.
agent-setup-maintenanceby langfuse
Use this skill when changing the shared agent setup for the repository.npx skills add https://github.com/langfuse/langfuse --skill agent-setup-maintenanceDownload ZIPGitHub
Agent Setup Maintenance
Use this skill when changing the shared agent setup for the repository.
Start Here
- Read
../../README.mdfor the shared config and shim model.
- Read root
../../AGENTS.mdfor repo-level expectations.
- When adding or editing shared skills, use
../skill-creator/SKILL.md, then apply the
repo-specific checks in this skill.
- Inspect
../../../scripts/agents/sync-agent-shims.mjs
- Inspect
../../../scripts/postinstall.sh
../../../package.json when changing install-time
sync behavior.
Workflow
- Edit the canonical files under
.agents/, not generated provider outputs.
- Keep root
AGENTS.mdandCLAUDE.mdas discovery symlinks; do not turn
- Treat tool-specific directories such as
.claude/,.cursor/,.codex/,
.vscode/, and .mcp.json as generated discovery surfaces unless the tool
requires a truly tool-specific feature.
- Keep root
AGENTS.mdconcise. Move detailed or conditional workflows into
AGENTS.md files.
- Treat developer feedback as a learning loop: when a task reveals a durable
AGENTS.md or shared skill.
- When adding or changing a shared skill, keep
SKILL.mdas the entrypoint; do
AGENTS.md.
- When shared setup behavior changes materially, update
README.mdand
Docker / Install-Time Constraint
pnpm installruns in environments that may not contain the full repo source
- In Docker builds, Turbo's pruned install stage can run root
postinstall
scripts/ and .agents/ are available in the image.
- Keep install-time agent setup logic robust in those pruned contexts: skip
Required Verification
Run after changing shared agent setup:
pnpm run agents:sync
pnpm run agents:check
Run additional verification when relevant:
pnpm run postinstallwhen install-time behavior changes
- targeted tests for any scripts you changed
Design Rules
- Prefer one repo-owned source of truth over duplicated provider-specific files.
- Keep shared setup tool-neutral where possible.
- Only keep provider-specific files in source control when the provider requires
More skills from langfuse
add-model-priceby langfuseUse when editing worker/src/constants/default-model-prices.json, packages/shared/src/server/llm/types.ts, pricing tiers, tokenizer IDs, or matchPattern regexes…backend-dev-guidelinesby langfuseShared backend guide for Langfuse's Next.js, tRPC, BullMQ, and TypeScript monorepo. Use when creating or reviewing tRPC routers, public REST endpoints, BullMQ…changelog-writingby langfuseUse this skill when a completed feature branch needs a changelog entry.clickhouse-best-practicesby langfuseMUST USE when reviewing ClickHouse schemas, queries, or configurations. Contains 28 rules that MUST be checked before providing recommendations. Always read…code-reviewby langfuseUse this skill when the task is to review code changes rather than implement a feature.frontend-browser-reviewby langfuseUse this skill when a change affects what users see or do in the browser.skill-developerby langfuseCreate and manage Claude Code skills following Anthropic best practices. Use when creating new skills, modifying skill-rules.json, understanding trigger…turborepoby langfuseBuild system for JavaScript/TypeScript monorepos. Turborepo caches task outputs and runs tasks in parallel based on dependency graph.---
Source: https://github.com/langfuse/langfuse/tree/HEAD/.agents/skills/agent-setup-maintenance
Author: langfuse
Discovered via: mcpservers.org
SKILL.md source
--- name: agent-setup-maintenance description: Use this skill when changing the shared agent setup for the repository. --- # agent-setup-maintenance Use this skill when changing the shared agent setup for the repository. # agent-setup-maintenanceby langfuse Use this skill when changing the shared agent setup for the repository. `npx skills add https://github.com/langfuse/langfuse --skill agent-setup-maintenance`Download ZIPGitHub ## Agent Setup Maintenance Use this skill when changing the shared agent setup for the repository. ## Start Here * Read `../../README.md` for the shared config and shim model. * Read root `../../AGENTS.md` for repo-level expectations. * When adding or editing shared skills, use `../skill-creator/SKILL.md`, then apply the repo-specific checks in this skill. * Inspect `../../../scripts/agents/sync-agent-shims.mjs` before changing generated outputs or provider discovery behavior. * Inspect `../../../scripts/postinstall.sh` and `../../../package.json` when changing install-time sync behavior. ## Workflow * Edit the canonical files under `.agents/`, not generated provider outputs. * Keep root `AGENTS.md` and `CLAUDE.md` as discovery symlinks; do not turn them back into manually maintained copies. * Treat tool-specific directories such as `.claude/`, `.cursor/`, `.codex/`, `.vscode/`, and `.mcp.json` as generated discovery surfaces unless the tool requires a truly tool-specific feature. * Keep root `AGENTS.md` concise. Move detailed or conditional workflows into shared skills or package `AGENTS.md` files. * Treat developer feedback as a learning loop: when a task reveals a durable repo convention, recurring pitfall, reusable workflow, or verification pattern, update the smallest relevant `AGENTS.md` or shared skill. * When adding or changing a shared skill, keep `SKILL.md` as the entrypoint; do not add skill-by-skill links to root `AGENTS.md`. * When shared setup behavior changes materially, update `README.md` and contributor-facing docs in the same PR. ## Docker / Install-Time Constraint * `pnpm install` runs in environments that may not contain the full repo source tree. * In Docker builds, Turbo's pruned install stage can run root `postinstall` before `scripts/` and `.agents/` are available in the image. * Keep install-time agent setup logic robust in those pruned contexts: skip cleanly when the required repo-owned files are not present. ## Required Verification Run after changing shared agent setup: * `pnpm run agents:sync` * `pnpm run agents:check` Run additional verification when relevant: * `pnpm run postinstall` when install-time behavior changes * targeted tests for any scripts you changed ## Design Rules * Prefer one repo-owned source of truth over duplicated provider-specific files. * Keep shared setup tool-neutral where possible. * Only keep provider-specific files in source control when the provider requires a fixed discovery path or feature that cannot be expressed through the shared setup model. ## More skills from langfuse add-model-priceby langfuseUse when editing worker/src/constants/default-model-prices.json, packages/shared/src/server/llm/types.ts, pricing tiers, tokenizer IDs, or matchPattern regexes…backend-dev-guidelinesby langfuseShared backend guide for Langfuse's Next.js, tRPC, BullMQ, and TypeScript monorepo. Use when creating or reviewing tRPC routers, public REST endpoints, BullMQ…changelog-writingby langfuseUse this skill when a completed feature branch needs a changelog entry.clickhouse-best-practicesby langfuseMUST USE when reviewing ClickHouse schemas, queries, or configurations. Contains 28 rules that MUST be checked before providing recommendations. Always read…code-reviewby langfuseUse this skill when the task is to review code changes rather than implement a feature.frontend-browser-reviewby langfuseUse this skill when a change affects what users see or do in the browser.skill-developerby langfuseCreate and manage Claude Code skills following Anthropic best practices. Use when creating new skills, modifying skill-rules.json, understanding trigger…turborepoby langfuseBuild system for JavaScript/TypeScript monorepos. Turborepo caches task outputs and runs tasks in parallel based on dependency graph. --- **Source**: https://github.com/langfuse/langfuse/tree/HEAD/.agents/skills/agent-setup-maintenance **Author**: langfuse **Discovered via**: mcpservers.org
Related skills 6
running-claude-code-via-litellm-copilot
Use when routing Claude Code through a local LiteLLM proxy to GitHub Copilot, reducing direct Anthropic spend, configuring ANTHROPIC_BASE_URL or ANTHROPIC_MODEL overrides, or troubleshooting Copilot proxy setup failures such as model-not-found, no localhost traffic, or GitHub 401/403 auth errors.
skills-cli
Use when users ask to discover, install, list, check, update, remove, back up, restore, sync, or initialize Agent Skills, mention `bunx skills`, `npx skills`, `skills.sh`, or `skills-lock.json`, ask "find a skill for X", or want help extending agent capabilities with installable skills.
repo-intake-and-plan
Narrow RigorPilot helper for README-first deep learning repo reproduction. Use when the task is specifically to scan a repository, read the README and common project files, extract documented commands, classify inference, evaluation, and training candidates, and return the smallest trustworthy reproduction plan to the main orchestrator. Do not use for environment setup, asset download, command execution, final reporting, paper lookup, or end-to-end orchestration.
image-to-video
Animate any still image on RunComfy — this skill is a smart router that matches the user's intent to the right i2v model in the RunComfy catalog. Picks HappyHorse 1.0 I2V (Arena #1, native audio, identity preservation) for general animations, Wan 2.7 with `audio_url` for custom-voiceover lip-sync, or Seedance 2.0 Pro for multi-modal animation from image + reference video + reference audio. Bundles each model's documented prompting patterns so the caller gets sharper output without burning ite...
video-edit
Edit existing video on RunComfy — this skill is a smart router that matches the user's intent to the right edit model in the RunComfy catalog. Picks Wan 2.7 Edit-Video (general restyle / background swap / packaging swap, identity + motion preservation), Kling 2.6 Pro Motion Control (transfer precise motion from a reference video to a target character), or Lucy Edit Restyle (lightweight identity-stable restyle / outfit swap). Bundles each model's documented prompting patterns so the skill gets...
nano-banana-2
Generate images with Google Nano Banana 2 (Gemini-family flash-tier text-to-image) on RunComfy — bundled with the model's documented prompting patterns so the skill gets sharper output than naive prompting against the same model. Documents Nano Banana 2's strengths (rapid iteration, in-image typography rendering, predictable framing, optional web-grounded context), the resolution-tier pricing, the safety-tolerance dial, and when to route to Nano Banana Pro / GPT Image 2 / Flux 2 / Seedream in...