-
Notifications
You must be signed in to change notification settings - Fork 28
Add Ai Suffix to account creation URL #90
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
annabellscha
wants to merge
1
commit into
main
Choose a base branch
from
annabellscha-patch-1
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
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.mdbut 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 Bumpssection requires that whenever published skill behavior changes,.claude-plugin/plugin.jsonand.cursor-plugin/plugin.jsonbe 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 (fromhttps://langfuse.com/cloudtohttps://langfuse.com/cloud-ai) but leaves both manifests at1.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:
skills/langfuse/SKILL.md, changinghttps://langfuse.com/cloud→https://langfuse.com/cloud-ai(line 74)..claude-plugin/plugin.jsonand.cursor-plugin/plugin.json: both still read"version": "1.4.4".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
versionto1.4.5in both.claude-plugin/plugin.jsonand.cursor-plugin/plugin.jsonin this PR.