The official plugin marketplace for Quantcept — an AI-powered finance terminal. Plugins here can contribute skills, slash commands, agents, hooks, MCP servers, and finance data connectors.
This repository is just a catalog: a single quantcept-marketplace.json that lists plugins and where
to fetch each one. New entries become installable only after a maintainer reviews and merges a Pull
Request — that review + merge is the approval gate (enforced by branch protection + the validation
CI below).
# Add this marketplace (it is also Quantcept's default, so this is usually already done)
quantcept plugin marketplace add github:Fincept-Corporation/quantcept-marketplace
# Browse / install
quantcept plugin install quantcept-sample@quantcept-marketplaceOr from the TUI: /plugins → Marketplaces → browse → install.
See CONTRIBUTING.md. In short: fork, add one entry to
quantcept-marketplace.json, run node scripts/validate.mjs, and open a PR. CI validates the
manifest on every PR; a maintainer reviews and merges; your plugin is then live for everyone.
Each entry in plugins[]:
| field | required | notes |
|---|---|---|
name |
yes | unique, kebab-case; users install it as name@quantcept-marketplace |
source |
yes | where to fetch the plugin (see below) |
description |
recommended | shown when browsing |
version |
no | pin a version; otherwise the source's latest |
category, tags |
no | for discovery |
source is a string shorthand or an object:
"github:owner/repo"— a plugin repo{ "source": "git-subdir", "url": "https://…/repo.git", "path": "plugins/my-plugin" }— a subdir of a repo"npm:my-plugin-package"— an npm package"https://…/plugin.tar.gz"— a tarball
Local paths (./…, ../…) are not portable and are rejected for a published entry.
The machine-readable schema is in schema/marketplace.schema.json.