prpm 2.0.1 → 2.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/format-capabilities.json +232 -0
- package/dist/index.js +1663 -322
- package/dist/schemas/format-capabilities.schema.json +101 -0
- package/dist/schemas/gemini-extension.schema.json +77 -0
- package/dist/schemas/kiro-hook.schema.json +52 -7
- package/dist/schemas/opencode-plugin.schema.json +391 -0
- package/dist/schemas/prpm-manifest.schema.json +25 -0
- package/dist/schemas/zed-extension.schema.json +238 -0
- package/dist/schemas/zed.schema.json +44 -0
- package/package.json +4 -4
- package/schemas/prpm-manifest.schema.json +25 -0
|
@@ -0,0 +1,232 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "../../schemas/format-capabilities.schema.json",
|
|
3
|
+
"version": "1.0.2",
|
|
4
|
+
"description": "Format capability matrix for PRPM converters - defines which subtypes each format supports and progressive disclosure fallbacks",
|
|
5
|
+
"lastVerified": "2025-12-06",
|
|
6
|
+
"verificationSources": {
|
|
7
|
+
"claude": "https://docs.claude.com/en/docs/agents-and-tools/agent-skills/overview",
|
|
8
|
+
"copilot": "https://github.blog/changelog/2025-08-28-copilot-coding-agent-now-supports-agents-md-custom-instructions/",
|
|
9
|
+
"cursor": "https://docs.cursor.com/context/rules",
|
|
10
|
+
"continue": "https://docs.continue.dev/reference",
|
|
11
|
+
"windsurf": "https://docs.codeium.com/windsurf/cascade",
|
|
12
|
+
"gemini": "https://geminicli.com/docs/extensions/",
|
|
13
|
+
"aider": "https://aider.chat/docs/usage/conventions.html",
|
|
14
|
+
"replit": "https://docs.replit.com/replitai/agent",
|
|
15
|
+
"zed": "https://zed.dev/docs/assistant/assistant-settings"
|
|
16
|
+
},
|
|
17
|
+
"formats": {
|
|
18
|
+
"cursor": {
|
|
19
|
+
"name": "Cursor",
|
|
20
|
+
"supportsSkills": false,
|
|
21
|
+
"supportsPlugins": false,
|
|
22
|
+
"supportsExtensions": false,
|
|
23
|
+
"supportsAgents": false,
|
|
24
|
+
"supportsAgentsMd": true,
|
|
25
|
+
"supportsSlashCommands": true,
|
|
26
|
+
"markdownFallback": "cursor-rules.md",
|
|
27
|
+
"notes": "Cursor supports AGENTS.md files for project instructions. Custom slash commands in .cursor/commands/*.md (introduced v1.6, Sept 2025). Built-in /summarize command. Rules are appended automatically, slash commands are explicit prompts with more weight. No native agent/skill/plugin packages."
|
|
28
|
+
},
|
|
29
|
+
"claude": {
|
|
30
|
+
"name": "Claude Code",
|
|
31
|
+
"supportsSkills": true,
|
|
32
|
+
"supportsPlugins": true,
|
|
33
|
+
"supportsExtensions": false,
|
|
34
|
+
"supportsAgents": true,
|
|
35
|
+
"supportsAgentsMd": false,
|
|
36
|
+
"markdownFallback": "CLAUDE.md",
|
|
37
|
+
"notes": "Claude Code supports skills, agents, and plugins. Uses CLAUDE.md (not AGENTS.md) for project-specific instructions. Feature request open for AGENTS.md support (Issue #6235)."
|
|
38
|
+
},
|
|
39
|
+
"continue": {
|
|
40
|
+
"name": "Continue",
|
|
41
|
+
"supportsSkills": false,
|
|
42
|
+
"supportsPlugins": false,
|
|
43
|
+
"supportsExtensions": false,
|
|
44
|
+
"supportsAgents": false,
|
|
45
|
+
"supportsAgentsMd": false,
|
|
46
|
+
"markdownFallback": "continue-prompts.md",
|
|
47
|
+
"notes": "Continue uses simple prompt files. No native support for advanced package types."
|
|
48
|
+
},
|
|
49
|
+
"windsurf": {
|
|
50
|
+
"name": "Windsurf",
|
|
51
|
+
"supportsSkills": false,
|
|
52
|
+
"supportsPlugins": false,
|
|
53
|
+
"supportsExtensions": false,
|
|
54
|
+
"supportsAgents": false,
|
|
55
|
+
"supportsAgentsMd": false,
|
|
56
|
+
"markdownFallback": "windsurf-rules.md",
|
|
57
|
+
"notes": "Windsurf uses markdown rules with 12K character limit. No advanced package support."
|
|
58
|
+
},
|
|
59
|
+
"copilot": {
|
|
60
|
+
"name": "GitHub Copilot",
|
|
61
|
+
"supportsSkills": false,
|
|
62
|
+
"supportsPlugins": false,
|
|
63
|
+
"supportsExtensions": false,
|
|
64
|
+
"supportsAgents": true,
|
|
65
|
+
"supportsAgentsMd": true,
|
|
66
|
+
"markdownFallback": "copilot-instructions.md",
|
|
67
|
+
"notes": "GitHub Copilot coding agent supports AGENTS.md, CLAUDE.md, GEMINI.md, and .instructions.md custom instructions (as of August 2025). Full agents.md support."
|
|
68
|
+
},
|
|
69
|
+
"kiro": {
|
|
70
|
+
"name": "Kiro AI",
|
|
71
|
+
"supportsSkills": false,
|
|
72
|
+
"supportsPlugins": false,
|
|
73
|
+
"supportsExtensions": false,
|
|
74
|
+
"supportsAgents": true,
|
|
75
|
+
"supportsAgentsMd": true,
|
|
76
|
+
"markdownFallback": "kiro-agent.md",
|
|
77
|
+
"notes": "Kiro supports agents in .kiro/agents/ directory. Full agents.md support."
|
|
78
|
+
},
|
|
79
|
+
"gemini": {
|
|
80
|
+
"name": "Gemini CLI",
|
|
81
|
+
"supportsSkills": false,
|
|
82
|
+
"supportsPlugins": false,
|
|
83
|
+
"supportsExtensions": true,
|
|
84
|
+
"supportsAgents": false,
|
|
85
|
+
"supportsAgentsMd": false,
|
|
86
|
+
"supportsSlashCommands": true,
|
|
87
|
+
"markdownFallback": "GEMINI.md",
|
|
88
|
+
"notes": "Gemini CLI uses extensions in gemini-extension.json. Custom slash commands in ~/.gemini/commands/ (user-scoped) or .gemini/commands/ (project-scoped). Built-in commands: /help, /copy, /mcp, /memory, /directory. Only supports GEMINI.md for project context. Does not support AGENT.md or AGENTS.md."
|
|
89
|
+
},
|
|
90
|
+
"opencode": {
|
|
91
|
+
"name": "OpenCode",
|
|
92
|
+
"supportsSkills": false,
|
|
93
|
+
"supportsPlugins": true,
|
|
94
|
+
"supportsExtensions": false,
|
|
95
|
+
"supportsAgents": true,
|
|
96
|
+
"supportsAgentsMd": true,
|
|
97
|
+
"supportsSlashCommands": true,
|
|
98
|
+
"markdownFallback": "opencode-agent.md",
|
|
99
|
+
"notes": "OpenCode supports agents with mode/model/temperature config. Plugins are JavaScript/TypeScript modules in .opencode/plugin with 40+ event hooks. Slash commands available. Full agents.md support."
|
|
100
|
+
},
|
|
101
|
+
"ruler": {
|
|
102
|
+
"name": "Ruler",
|
|
103
|
+
"supportsSkills": false,
|
|
104
|
+
"supportsPlugins": false,
|
|
105
|
+
"supportsExtensions": false,
|
|
106
|
+
"supportsAgents": true,
|
|
107
|
+
"supportsAgentsMd": true,
|
|
108
|
+
"markdownFallback": "ruler-rules.md",
|
|
109
|
+
"notes": "Ruler supports agents in .ruler/agents/ directory. Full agents.md support."
|
|
110
|
+
},
|
|
111
|
+
"droid": {
|
|
112
|
+
"name": "Factory Droid",
|
|
113
|
+
"supportsSkills": true,
|
|
114
|
+
"supportsPlugins": false,
|
|
115
|
+
"supportsExtensions": false,
|
|
116
|
+
"supportsAgents": true,
|
|
117
|
+
"supportsAgentsMd": true,
|
|
118
|
+
"markdownFallback": "droid-skill.md",
|
|
119
|
+
"notes": "Factory Droid supports both skills and agents. Full agents.md support."
|
|
120
|
+
},
|
|
121
|
+
"trae": {
|
|
122
|
+
"name": "Trae",
|
|
123
|
+
"supportsSkills": false,
|
|
124
|
+
"supportsPlugins": false,
|
|
125
|
+
"supportsExtensions": false,
|
|
126
|
+
"supportsAgents": false,
|
|
127
|
+
"supportsAgentsMd": false,
|
|
128
|
+
"markdownFallback": "trae-rules.md",
|
|
129
|
+
"notes": "Trae uses simple markdown rules. No advanced package support."
|
|
130
|
+
},
|
|
131
|
+
"aider": {
|
|
132
|
+
"name": "Aider",
|
|
133
|
+
"supportsSkills": false,
|
|
134
|
+
"supportsPlugins": false,
|
|
135
|
+
"supportsExtensions": false,
|
|
136
|
+
"supportsAgents": false,
|
|
137
|
+
"supportsAgentsMd": false,
|
|
138
|
+
"markdownFallback": "CONVENTIONS.md",
|
|
139
|
+
"notes": "Aider uses CONVENTIONS.md for coding standards. No advanced package support."
|
|
140
|
+
},
|
|
141
|
+
"zencoder": {
|
|
142
|
+
"name": "Zencoder",
|
|
143
|
+
"supportsSkills": false,
|
|
144
|
+
"supportsPlugins": false,
|
|
145
|
+
"supportsExtensions": false,
|
|
146
|
+
"supportsAgents": false,
|
|
147
|
+
"supportsAgentsMd": false,
|
|
148
|
+
"markdownFallback": "zencoder-rules.md",
|
|
149
|
+
"notes": "Zencoder uses simple rules with glob patterns. No advanced package support."
|
|
150
|
+
},
|
|
151
|
+
"replit": {
|
|
152
|
+
"name": "Replit Agent",
|
|
153
|
+
"supportsSkills": false,
|
|
154
|
+
"supportsPlugins": false,
|
|
155
|
+
"supportsExtensions": false,
|
|
156
|
+
"supportsAgents": true,
|
|
157
|
+
"supportsAgentsMd": true,
|
|
158
|
+
"markdownFallback": "AGENTS.md",
|
|
159
|
+
"notes": "Replit Agent supports AGENTS.md for custom agent instructions. Full agents.md support following the agent-rules.org standard."
|
|
160
|
+
},
|
|
161
|
+
"zed": {
|
|
162
|
+
"name": "Zed",
|
|
163
|
+
"supportsSkills": false,
|
|
164
|
+
"supportsPlugins": false,
|
|
165
|
+
"supportsExtensions": true,
|
|
166
|
+
"supportsAgents": false,
|
|
167
|
+
"supportsAgentsMd": true,
|
|
168
|
+
"supportsSlashCommands": true,
|
|
169
|
+
"markdownFallback": ".rules",
|
|
170
|
+
"notes": "Zed supports .rules files (plain markdown, no frontmatter). Slash commands can be used in rules with /file, /diagnostics, /fetch, etc. Extensions written in Rust/WASM with extension.toml manifest. Also reads .cursorrules, .windsurfrules, .clinerules, AGENTS.md, CLAUDE.md, GEMINI.md in priority order. Extensions installed to ~/Library/Application Support/Zed/extensions (macOS). License required: MIT, Apache 2.0, BSD 3-Clause, or GPLv3."
|
|
171
|
+
},
|
|
172
|
+
"codex": {
|
|
173
|
+
"name": "OpenAI Codex CLI",
|
|
174
|
+
"supportsSkills": false,
|
|
175
|
+
"supportsPlugins": false,
|
|
176
|
+
"supportsExtensions": false,
|
|
177
|
+
"supportsAgents": true,
|
|
178
|
+
"supportsAgentsMd": true,
|
|
179
|
+
"supportsSlashCommands": false,
|
|
180
|
+
"slashCommandFallback": "agents.md",
|
|
181
|
+
"markdownFallback": "AGENTS.md",
|
|
182
|
+
"notes": "OpenAI Codex CLI uses AGENTS.md for project instructions. No native slash commands - slash commands are converted to named sections in AGENTS.md that users invoke by saying the command name (e.g., 'build-actions' not '/build-actions')."
|
|
183
|
+
},
|
|
184
|
+
"agents.md": {
|
|
185
|
+
"name": "agents.md (Universal)",
|
|
186
|
+
"supportsSkills": false,
|
|
187
|
+
"supportsPlugins": false,
|
|
188
|
+
"supportsExtensions": false,
|
|
189
|
+
"supportsAgents": true,
|
|
190
|
+
"supportsAgentsMd": true,
|
|
191
|
+
"markdownFallback": "agents.md",
|
|
192
|
+
"notes": "Universal agents.md format - works with OpenAI, Gemini, Claude, and most AI systems."
|
|
193
|
+
},
|
|
194
|
+
"mcp": {
|
|
195
|
+
"name": "Model Context Protocol",
|
|
196
|
+
"supportsSkills": false,
|
|
197
|
+
"supportsPlugins": true,
|
|
198
|
+
"supportsExtensions": false,
|
|
199
|
+
"supportsAgents": false,
|
|
200
|
+
"supportsAgentsMd": false,
|
|
201
|
+
"markdownFallback": "mcp-server.json",
|
|
202
|
+
"notes": "MCP is a server protocol, not a package format. Supports plugins via server configuration."
|
|
203
|
+
},
|
|
204
|
+
"generic": {
|
|
205
|
+
"name": "Generic (Markdown)",
|
|
206
|
+
"supportsSkills": false,
|
|
207
|
+
"supportsPlugins": false,
|
|
208
|
+
"supportsExtensions": false,
|
|
209
|
+
"supportsAgents": true,
|
|
210
|
+
"supportsAgentsMd": true,
|
|
211
|
+
"markdownFallback": "README.md",
|
|
212
|
+
"notes": "Generic markdown format for maximum compatibility. Supports agents.md convention."
|
|
213
|
+
}
|
|
214
|
+
},
|
|
215
|
+
"agentsMdSupport": {
|
|
216
|
+
"description": "Formats that intelligently support agents.md for progressive disclosure",
|
|
217
|
+
"formats": [
|
|
218
|
+
"cursor",
|
|
219
|
+
"copilot",
|
|
220
|
+
"kiro",
|
|
221
|
+
"opencode",
|
|
222
|
+
"ruler",
|
|
223
|
+
"droid",
|
|
224
|
+
"replit",
|
|
225
|
+
"zed",
|
|
226
|
+
"codex",
|
|
227
|
+
"agents.md",
|
|
228
|
+
"generic"
|
|
229
|
+
],
|
|
230
|
+
"notes": "These formats can use AGENTS.md as a universal fallback. Claude Code uses CLAUDE.md instead (not AGENTS.md). Gemini uses GEMINI.md instead. Cursor added AGENTS.md support in version 1.6+. GitHub Copilot added AGENTS.md support in August 2025. Zed reads AGENTS.md along with other rule file formats."
|
|
231
|
+
}
|
|
232
|
+
}
|