Plugins that connect coding agents to Fulfil, the ERP for modern commerce.
| Plugin | What it does |
|---|---|
fulfil |
Connect to your Fulfil workspace — query records, read live API docs, run reports, query the data warehouse, and build Micro Apps |
From Cursor Directory — open the plugin page and add it to Cursor:
As a team marketplace — on Cursor Teams or Enterprise, import this repository from the Cursor dashboard to make these plugins installable across your organisation.
Each plugin's own README covers its setup and configuration.
.cursor-plugin/marketplace.json # lists the plugins in this repo
plugins/<name>/
├── .cursor-plugin/plugin.json # plugin manifest
├── mcp.json # MCP servers
├── rules/*.mdc # rules
├── skills/<skill>/SKILL.md # skills
├── commands/*.md # slash commands
├── assets/logo.svg
└── README.md CHANGELOG.md LICENSE
scripts/validate.mjs
- Create
plugins/<name>/with a.cursor-plugin/plugin.jsonmanifest, a README, a CHANGELOG, a LICENSE, and a logo. - Add the components it needs —
rules/,skills/,commands/,agents/,hooks/,mcp.json— and declare each one in the manifest. - Register it in
.cursor-plugin/marketplace.json. - Run the validator.
node scripts/validate.mjsChecks every manifest against the marketplace schema, verifies declared component paths exist, requires frontmatter on rules, skills, agents and commands, and cross-checks that MCP variables are both declared and used.
MIT