Design & Medialow risk

add-yourself-to-team-langfuse

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.

langfuse/langfuse-docs·.agents/skills/add-yourself-to-team-langfuse/SKILL.md
75/ 100品質分

匯入這個 Skill

選擇你的 coding agent,複製專案級或個人級安裝指令。

固定至平台收錄的 commit
匯入目前專案.agents/skills/add-yourself-to-team-langfuse
npx skills add https://github.com/langfuse/langfuse-docs/tree/9f35e7282fad428e80804521b5db9e2cdf613f1b/.agents/skills/add-yourself-to-team-langfuse -a codex -y
匯入個人環境~/.agents/skills/add-yourself-to-team-langfuse
npx skills add https://github.com/langfuse/langfuse-docs/tree/9f35e7282fad428e80804521b5db9e2cdf613f1b/.agents/skills/add-yourself-to-team-langfuse -a codex -g -y
手動放置目錄.agents/skills/add-yourself-to-team-langfuseOfficial docs ↗
匯入目前專案.claude/skills/add-yourself-to-team-langfuse
npx skills add https://github.com/langfuse/langfuse-docs/tree/9f35e7282fad428e80804521b5db9e2cdf613f1b/.agents/skills/add-yourself-to-team-langfuse -a claude-code -y
匯入個人環境~/.claude/skills/add-yourself-to-team-langfuse
npx skills add https://github.com/langfuse/langfuse-docs/tree/9f35e7282fad428e80804521b5db9e2cdf613f1b/.agents/skills/add-yourself-to-team-langfuse -a claude-code -g -y
手動放置目錄.claude/skills/add-yourself-to-team-langfuseOfficial docs ↗
匯入目前專案.agents/skills/add-yourself-to-team-langfuse
npx skills add https://github.com/langfuse/langfuse-docs/tree/9f35e7282fad428e80804521b5db9e2cdf613f1b/.agents/skills/add-yourself-to-team-langfuse -a github-copilot -y
匯入個人環境~/.copilot/skills/add-yourself-to-team-langfuse
npx skills add https://github.com/langfuse/langfuse-docs/tree/9f35e7282fad428e80804521b5db9e2cdf613f1b/.agents/skills/add-yourself-to-team-langfuse -a github-copilot -g -y
手動放置目錄.agents/skills/add-yourself-to-team-langfuseOfficial docs ↗
匯入目前專案.agents/skills/add-yourself-to-team-langfuse
npx skills add https://github.com/langfuse/langfuse-docs/tree/9f35e7282fad428e80804521b5db9e2cdf613f1b/.agents/skills/add-yourself-to-team-langfuse -a cursor -y
匯入個人環境~/.cursor/skills/add-yourself-to-team-langfuse
npx skills add https://github.com/langfuse/langfuse-docs/tree/9f35e7282fad428e80804521b5db9e2cdf613f1b/.agents/skills/add-yourself-to-team-langfuse -a cursor -g -y
手動放置目錄.agents/skills/add-yourself-to-team-langfuseOfficial docs ↗
匯入目前專案.agents/skills/add-yourself-to-team-langfuse
npx skills add https://github.com/langfuse/langfuse-docs/tree/9f35e7282fad428e80804521b5db9e2cdf613f1b/.agents/skills/add-yourself-to-team-langfuse -a gemini-cli -y
匯入個人環境~/.gemini/skills/add-yourself-to-team-langfuse
npx skills add https://github.com/langfuse/langfuse-docs/tree/9f35e7282fad428e80804521b5db9e2cdf613f1b/.agents/skills/add-yourself-to-team-langfuse -a gemini-cli -g -y
Native Gemini CLIgemini skills install https://github.com/langfuse/langfuse-docs.git --scope workspace --path .agents/skills/add-yourself-to-team-langfuse
手動放置目錄.agents/skills/add-yourself-to-team-langfuseOfficial docs ↗
⚠ 安裝指令使用開源 skills CLI。執行前請檢查來源、腳本與權限。
Add a new team member to Langfuse. Ask the user for the following information before proceeding:

1. **Full name** (including any special characters, e.g. umlauts)
2. **Role/title** (e.g. "Growth & Developer Relations")
3. **GitHub username** (e.g. from https://github.com/username)
4. **LinkedIn URL** (e.g. https://www.linkedin.com/in/handle/)
5. **X/Twitter handle** (e.g. from https://x.com/handle) — optional
6. **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`):

```json
"<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:

```md
| **<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:

```mdx
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.