mirror of
https://github.com/anthropics/claude-plugins-official.git
synced 2026-04-21 16:42:40 +00:00
Local-path plugins (source is a string like "./plugins/foo" in
marketplace.json) without a manifest version cache at
~/.claude/plugins/cache/{marketplace}/{plugin}/unknown/ forever.
The cache check in claude-cli's copyPluginToVersionedCache sees
pathExists(.../unknown/) → true → skips re-extraction, even after
the marketplace content updates. Users are stuck with stale plugin
files until they manually delete the cache.
Adding "version": "1.0.0" fixes this because calculatePluginVersion
reads the manifest from the freshly-synced marketplace tree (not the
stale cache), and manifest.version is priority #1 in version
resolution. New version → new cache path → cache miss → re-extract.
This is preferable to the GCS-SHA fallback approach
(anthropics/claude-cli-internal#24773) because:
- Per-plugin granularity: only bumped plugins re-extract, not all
27 on every marketplace push
- No disk accumulation from unrelated marketplace churn
- Fixes both the runtime loader path AND the migration path
(manifest.version is priority #1 in both)
- No claude-cli code change needed
Remote-sourced plugins (github/git/url) already get a git SHA as
their version and are unaffected.
Greptile
Greptile is an AI code review agent for GitHub and GitLab that automatically reviews pull requests. This plugin connects Claude Code to your Greptile account, letting you view and resolve Greptile's review comments directly from your terminal.
Setup
1. Create a Greptile Account
Sign up at greptile.com and connect your GitHub or GitLab repositories.
2. Get Your API Key
- Go to API Settings
- Generate a new API key
- Copy the key
3. Set Environment Variable
Add to your shell profile (.bashrc, .zshrc, etc.):
export GREPTILE_API_KEY="your-api-key-here"
Then reload your shell or run source ~/.zshrc.
Available Tools
Pull Request Tools
list_pull_requests- List PRs with optional filtering by repo, branch, author, or stateget_merge_request- Get detailed PR info including review analysislist_merge_request_comments- Get all comments on a PR with filtering options
Code Review Tools
list_code_reviews- List code reviews with optional filteringget_code_review- Get detailed code review informationtrigger_code_review- Start a new Greptile review on a PR
Comment Search
search_greptile_comments- Search across all Greptile review comments
Custom Context Tools
list_custom_context- List your organization's coding patterns and rulesget_custom_context- Get details for a specific patternsearch_custom_context- Search patterns by contentcreate_custom_context- Create a new coding pattern
Example Usage
Ask Claude Code to:
- "Show me Greptile's comments on my current PR and help me resolve them"
- "What issues did Greptile find on PR #123?"
- "Trigger a Greptile review on this branch"
Documentation
For more information, visit greptile.com/docs.