Skip to main content

@a16njs/plugin-cursor

0.12.0 (2026-03-06)

Features

0.11.1 (2026-03-05)

Bug Fixes

  • plugin-cursor: emit ManualPrompts to Commands, not Skills (#75) (8917612)

0.11.0 (2026-02-23)

Features

  • support name field on GlobalPrompts (#68) (399f596)

0.10.1 (2026-02-19)

Bug Fixes

  • SimpleAgentSkill and AgentSkillIO invocable names were lost in translation (#64) (3266bff)

0.10.0 (2026-02-17)

Features

  • make the plugin infrastructure real and good (#59) (e3d1190)

0.9.1 (2026-02-09)

Bug Fixes

  • nested paths were not preserved during translation (#44) (d1565b0)

0.9.0 (2026-02-07)

Features

  • Phase 9 Milestone 7 - Documentation & Polish (#40) (8779631)

0.8.0 (2026-02-06)

⚠ BREAKING CHANGES

  • Phase 9 Milestone 1 - IR Versioning & AgentSkills.io Utilities (#32)

Features

  • Phase 9 Milestone 1 - IR Versioning & AgentSkills.io Utilities (#32) (f9a4484)
  • Phase 9 Milestone 3 - Frontmatter Parsing & Formatting (#36) (cf4a8da)
  • plugin-a16n: Phase 9 M4 - IR Emission + CLI Integration (#37) (b13ed62)

0.7.0 (2026-02-04)

Features

  • Add Codecov coverage tracking with per-package flags (#31) (228b89f)

Bug Fixes

  • docs: Update package.json homepages to docsite links (4a5f242)

0.6.0 (2026-02-01)

Features

  • Phase 8 - handle full AgentSkills.io packages AND Claude Code "rules" (#27) (ab4001e)

0.5.0 (2026-02-01)

Features

  • docs: Fill out docs and make them mostly right (#25) (e37eba3)

0.4.0 (2026-01-28)

Features

  • Phase 7 - AgentSkills open standard alignment, AgentCommand->ManualPrompt (#15) (3f367c2)

0.3.0 (2026-01-28)

Features

  • add npm publishing infrastructure (#5) (104c8a2)
  • AgentCommand (phase 4) (#8) (051a464)
  • Phase 2 - FileRule and AgentSkill support (#3) (3ff1ed7)
  • Phase 3 - AgentIgnore support and CLI polish (#4) (eba0dd4)
  • Phase 5 - gitignore management (#11) (b39e658)
  • Phase1 - GlobalPrompt MVP (592d4c7)
  • Task 1 - Monorepo setup with pnpm workspaces (4016df2)
  • Task 3 - Cursor plugin discovery with TDD (9ae8f27)
  • Task 4 - Cursor plugin emission with TDD (4d2700e)

Bug Fixes

  • address PR #1 round 2 feedback (51fbeb9)
  • docs: Remove erroneous claim of MIT license (e44260a)
  • PR Feedback (972f2b7)
  • recursive discovery in .cursor/rules subdirectories (2665a22)

0.2.0

Minor Changes

  • 051a464: feat: Add AgentCommand support (Cursor commands → Claude skills)

    • Add AgentCommand type to models package with commandName field
    • Add isAgentCommand() type guard
    • Cursor plugin discovers .cursor/commands/**/*.md files
      • Simple commands (plain prompt text) become AgentCommand
      • Complex commands ($ARGUMENTS, !, @, allowed-tools) are skipped with warning
    • Claude plugin emits AgentCommand as .claude/skills/*/SKILL.md
      • Skills include description: "Invoke with /command-name" for slash invocation
    • Claude plugin never discovers AgentCommand (one-way conversion)
    • Cursor plugin supports command pass-through emission

Patch Changes

  • Updated dependencies [051a464]
    • @a16njs/models@0.1.0

0.1.0

Minor Changes

  • eba0dd4: Add AgentIgnore bidirectional support and CLI polish

    Phase 3 implementation:

    • Cursor plugin: .cursorignore discovery and emission
    • Claude plugin: permissions.deny Read rules discovery and emission
    • Bidirectional conversion between .cursorignorepermissions.deny
    • CLI --verbose flag for debugging output
    • Improved warning formatting with icons and hints (chalk)
    • Improved error messages with suggestions