advisor
Advisor mode. Consult a stronger (or different) model at key checkpoints: before major decisions, when stuck on an error, and before declaring a task done. Use…
Run the full repository compatibility pass: scanner score, startup path, validation loop, and docs reliability.
$ npx -y skills add cursor/plugins --skill check-agent-compatibility --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/check-agent-compatibilityContext preview
The summary Claude sees to decide when to auto-load this skill.
Run the full repository compatibility pass: scanner score, startup path, validation loop, and docs reliability.
name: check-agent-compatibility description: Run the full repository compatibility pass: scanner score, startup path, validation loop, and docs reliability.
Use when the user wants the full compatibility pass for a repo.
1. Launch `compatibility-scan-review` to run the CLI and capture the raw repository score and main issues. 2. Launch `startup-review` to verify whether the repo can actually be booted by an agent. 3. Launch `validation-review` to check whether an agent can verify a small change without an unnecessarily heavy loop. 4. Launch `docs-reliability-review` to see whether the documented setup and run paths reliably match reality. 5. Use one subagent per task. Do not collapse these checks into one agent prompt. 6. Compute an internal workflow score as the rounded average of:
7. Compute an `Agent Compatibility Score` as:
8. Synthesize the results into one final response.
When scoring internally, use specific non-round workflow scores for the behavioral checks rather than coarse round buckets. If startup, validation, or docs mostly work, treat them as good-with-friction rather than defaulting to the mid-60s. Do not create a low workflow score just because logs are noisy or the error text is rough.
Respond in markdown, but keep it minimal. Do not use fenced code blocks.
Show only one score, as a level-two heading: `## Agent Compatibility Score: N/100`. Do not show how it was computed, including weights, formula, deterministic score, workflow score, per-check scores, or arithmetic, unless the user explicitly asks for a breakdown.
Then a flat, prioritized list labeled `Top fixes` with one issue per line, each line starting with `- `.
If the deterministic scanner cannot be run because of tool environment issues, say that separately and do not treat it as a repo defect or penalize the repo. Fold deterministic and behavioral findings into that one list instead of separate sections. Focus on the fixes that would most improve real agent workflows. Do not include a separate summary unless the user asks for more detail.
Example shape:
Top fixes
Official Cursor plugins for popular developer tools, frameworks, and SaaS products. Each plugin is a standalone directory at the repository root with its own .cursor-plugin/plugin.json manifest.
Repo: cursor/plugins
Advisor mode. Consult a stronger (or different) model at key checkpoints: before major decisions, when stuck on an error, and before declaring a task done. Use…
Designs or reviews CLIs so coding agents can run them reliably: non-interactive flags, layered --help with examples, stdin/pipelines, fast actionable errors,…
Orchestrate continual learning by delegating transcript mining and AGENTS.md updates to `agents-memory-updater`.
Create a new Cursor plugin scaffold with a valid manifest, component directories, and marketplace wiring. Use when starting a new plugin or adding a plugin to…
Audit a Cursor plugin for marketplace readiness. Use when validating manifests, component metadata, discovery paths, and submission quality before publishing.
Guide users building apps, scripts, CI pipelines, or automations on top of the Cursor TypeScript SDK (`@cursor/sdk`). Use this skill whenever the user mentions…