Skip to content

Commit a905ce9

Browse files
committed
feat(skills): add Cursor plugin manifest
Closes #662. The Codex/Cursor/opencode plugin PR (#507) added Cursor as a `pup skills install` platform and shipped Codex marketplace manifests, but never created the Cursor plugin manifest. Cursor discovers plugins via `.cursor-plugin/plugin.json` (mirror of `.claude-plugin/`), so without it Cursor Cloud Agents can't pre-install the pup skills from the marketplace. - Add .cursor-plugin/plugin.json mirroring the .codex-plugin sibling (name, version, description, author, repository, license, keywords, and skills => ./skills/). - Document the Cursor manifest alongside Claude Code and Codex in README.
1 parent 1eec9fb commit a905ce9

2 files changed

Lines changed: 15 additions & 0 deletions

File tree

.cursor-plugin/plugin.json

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
"name": "pup",
3+
"version": "0.62.0",
4+
"description": "Datadog API CLI with 49 command groups, 300+ subcommands. Skills and domain agents for monitoring, logs, APM, security, and infrastructure.",
5+
"author": {
6+
"name": "Datadog",
7+
"email": "support@datadoghq.com"
8+
},
9+
"repository": "https://github.com/DataDog/pup",
10+
"license": "Apache-2.0",
11+
"keywords": ["datadog", "monitoring", "logs", "apm", "metrics", "security", "infrastructure"],
12+
"skills": "./skills/"
13+
}

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -599,6 +599,8 @@ Pup ships plugin manifest files for several AI coding assistants:
599599
/plugin marketplace add DataDog/pup
600600
601601
# Codex (reads .codex-plugin/plugin.json from the repo, or marketplace.json from ~/.agents/plugins/)
602+
603+
# Cursor (reads .cursor-plugin/plugin.json from the repo)
602604
```
603605

604606
## ACP Server

0 commit comments

Comments
 (0)