Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion skills/langfuse/SKILL.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@
export LANGFUSE_BASE_URL=https://cloud.langfuse.com # example for EU cloud. For US cloud it's us.cloud.langfuse.com, and can also be a self-hosted URL. The server must always be specified in order to access Langfuse.
```
If `LANGFUSE_BASE_URL` is used instead of `LANGFUSE_HOST`, run `export LANGFUSE_HOST="$LANGFUSE_BASE_URL"`.
If not set, ask the user to set them in their shell or a `.env` file. Keys are found in the Langfuse project under Settings -> API Keys; the user should create a project API key pair there. If they do not have a Langfuse account yet, share that they can create one for free at `https://langfuse.com/cloud`. Do not ask them to paste keys into chat for security reasons.
If not set, ask the user to set them in their shell or a `.env` file. Keys are found in the Langfuse project under Settings -> API Keys; the user should create a project API key pair there. If they do not have a Langfuse account yet, share that they can create one for free at `https://langfuse.com/cloud-ai`. Do not ask them to paste keys into chat for security reasons.

Check failure on line 74 in skills/langfuse/SKILL.md

View check run for this annotation

Claude / Claude Code Review

Missing plugin.json version bump

This PR fixes the Langfuse account-creation URL in `skills/langfuse/SKILL.md` but doesn't bump `.claude-plugin/plugin.json` / `.cursor-plugin/plugin.json` (both remain at 1.4.4). Per AGENTS.md's 'Plugin Version Bumps' section, this qualifies as a 'small content correction,' which is patch-bump-worthy, and both manifests must be bumped together in the same PR — please bump both to 1.4.5.

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🔴 This PR fixes the Langfuse account-creation URL in skills/langfuse/SKILL.md but doesn't bump .claude-plugin/plugin.json / .cursor-plugin/plugin.json (both remain at 1.4.4). Per AGENTS.md's 'Plugin Version Bumps' section, this qualifies as a 'small content correction,' which is patch-bump-worthy, and both manifests must be bumped together in the same PR — please bump both to 1.4.5.

Extended reasoning...

What's missing: AGENTS.md's Plugin Version Bumps section requires that whenever published skill behavior changes, .claude-plugin/plugin.json and .cursor-plugin/plugin.json be bumped together to the same version, in the same PR as the change. This PR changes the account-creation URL that the skill hands to users (from https://langfuse.com/cloud to https://langfuse.com/cloud-ai) but leaves both manifests at 1.4.4.

Why this isn't exempt: AGENTS.md carves out only three no-bump categories: typo fixes, formatting, and comment-only changes. This change is none of those — it's a deliberate correction to the actual destination URL a user is told to visit, i.e. observable, published skill behavior. That places it squarely in the 'small content corrections' / 'bug fixes in a skill' bucket, which the same section explicitly maps to a patch bump. The commit title itself ('Fix Langfuse account creation URL') confirms this is a fix, not cosmetic. AGENTS.md also adds a tie-breaker for ambiguous cases — 'If unsure whether a change warrants a bump, err on the side of bumping patch' — removing any doubt here.

Step-by-step proof:

  1. Diff touches only skills/langfuse/SKILL.md, changing https://langfuse.com/cloudhttps://langfuse.com/cloud-ai (line 74).
  2. Check .claude-plugin/plugin.json and .cursor-plugin/plugin.json: both still read "version": "1.4.4".
  3. Classify the change against AGENTS.md's bump table: not typo/formatting/comment-only (excluded list) → falls under 'small content corrections' → Patch bump required.
  4. AGENTS.md: 'Both manifests have a version field and must stay in lockstep — always bump them together to the same value, in the same PR as the change.' Neither was touched, so the rule is violated.

Why existing process doesn't catch it: there's no automated version-bump check in CI for this repo (based on the PR's file list, only SKILL.md changed) — this is a manual convention enforced purely through the AGENTS.md review checklist, which explicitly lists 'Version bumps in lockstep' as a required check for reviewers to apply. Because it's a repo-mandated, non-subjective rule (not a style preference), it should be treated as a real, fixable defect rather than a nit.

Fix: bump version to 1.4.5 in both .claude-plugin/plugin.json and .cursor-plugin/plugin.json in this PR.


### Detailed CLI Reference

Expand Down