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 the Cursor marketplace — search for Fulfil in
Cursor Settings → Plugins, or run /add-plugin fulfil in chat.
From this repository — add it as a marketplace in Cursor Settings → Plugins, then install the plugins you want.
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