Langfuse Team Onboarding
Add new team members to Langfuse's canonical team data and website pages.
Installation
- Make sure Claude is on your device and in your terminal.
Skills load from
~/.claude/skills/when Claude Code starts up — so you need it on your machine first. If you don't have it yet, install it once with the command below, then runclaudein any terminal to verify.One-time setupnpm i -g @anthropic-ai/claude-codeAlready have it? Skip ahead.
- Paste into Claude Code or into your terminal.
This copies the whole skill folder into
~/.claude/skills/add-yourself-to-team-langfuse-langfuse/— the SKILL.md plus any scripts, reference docs, or templates the skill ships with. Safe default: works for every skill.Faster alternative (instruction-only skills)
Skips the clone and grabs only the SKILL.md file. Don't use this if the skill ships Python scripts, reference markdowns, or asset templates — they won't be downloaded and the skill will fail when it tries to load them.
Quick install (SKILL.md only)Sign up to copy - Restart Claude Code.
Quit and reopen Claude Code (or any other agent that loads from
~/.claude/skills/). New skills are picked up on startup. - Just ask Claude.
Skills auto-activate when your request matches the skill's description — no slash command needed. Trigger phrases live in the skill's own frontmatter; you can read them in the “What this skill does” section above.
Prefer to read the source first? Open on GitHub.
When Claude uses it
Add a new team member to Langfuse's canonical team data and shared team table. Use when onboarding a new employee who needs to appear on the website team, press, about, careers, or handbook pages.
What this skill does
Add a new team member to Langfuse. Ask the user for the following information before proceeding:
- Full name (including any special characters, e.g. umlauts)
- Role/title (e.g. "Growth & Developer Relations")
- GitHub username (e.g. from https://github.com/username)
- LinkedIn URL (e.g. https://www.linkedin.com/in/handle/)
- X/Twitter handle (e.g. from https://x.com/handle) — optional
- Profile photo — remind them to add it to
public/images/people/<key>.jpg
Once you have the information, update the following source files:
1. data/authors.json
Add a new entry at the end (before the closing }). Use a lowercase, no-special-chars version of the name as the key (e.g. annabellschafer):
"<key>": {
"firstName": "<first name>",
"name": "<full name>",
"title": "<role>",
"image": "/images/people/<key>.jpg",
"twitter": "<twitter handle>", // omit if not provided
"github": "<github username>", // omit if not provided
"linkedin": "<linkedin handle>" // omit if not provided
}
2. components-mdx/team-members.mdx
This is the canonical website team list. It is rendered by the press, about, careers, and handbook team pages. Append a new table row at the end:
| **<Full Name>** | <Role> | [Twitter](https://x.com/<twitter>), [LinkedIn](https://www.linkedin.com/in/<linkedin>/), [GitHub](https://github.com/<github>) |
Omit any social links that were not provided.
3. Confirm shared usage
Do not add team rows directly to any other page. Those pages should import and render the canonical component:
import TeamMembers from "@/components-mdx/team-members.mdx";
<TeamMembers />
If a page has a hand-written team table or list, replace it with the shared
TeamMembers import instead of adding another copy. Please do a quick search for some team members to confirm that there are no copies of this table.
Related skills
Claude API Helper
anthropics
Build, debug, and optimize Claude API applications with caching and model migration support.
Documentation Co-Authoring
anthropics
Guide structured workflows for writing docs, proposals, and technical specs collaboratively.
PPTX Text Extractor
axoviq-ai
Extract text and speaker notes from PowerPoint presentations.
Memory Search
davila7
Search conversation history and recall previous discussions, decisions, and context.