MCPcopy Create free account
hub / github.com/ScriptedAlchemy/tracedecay / cursor_files

Function cursor_files

src/agents/plugin_bundle.rs:266–276  ·  view source on GitHub ↗

Files Cursor deploys: manifest + Cursor rules + Cursor agents + Cursor native commands + the shared skill files *without* the `tracedecay-*` dispatcher skills (those slugs are native commands on Cursor).

()

Source from the content-addressed store, hash-verified

264/// native commands + the shared skill files *without* the `tracedecay-*`
265/// dispatcher skills (those slugs are native commands on Cursor).
266pub fn cursor_files() -> Vec<(&'static str, &'static str)> {
267 compose(
268 &[
269 CURSOR_MANIFEST_FILES,
270 CURSOR_RULE_FILES,
271 CURSOR_AGENT_FILES,
272 CURSOR_COMMAND_FILES,
273 ],
274 cursor_skill_files(),
275 )
276}
277
278/// Files Codex deploys: manifest + every skill file (all 30 skills incl.
279/// dispatchers, plus any support files). Codex ships no agents/commands/rules.

Calls 2

composeFunction · 0.85
cursor_skill_filesFunction · 0.85