The official Claude Code plugin marketplace catalog for the AkaLab-Tech organization.
This repository contains a single file (.claude-plugin/marketplace.json) that lists every plugin AkaLab-Tech publishes. Each plugin lives in its own repository; this catalog just points users at them.
In a Claude Code session, register the marketplace once:
/plugin marketplace add AkaLab-Tech/claude-plugins
Then install whichever plugins you want:
/plugin install atelier@akalab-tech
/plugin install claude-roadmap-tools@akalab-tech
Subsequent additions to this catalog become available with /plugin marketplace update akalab-tech.
| Plugin | Repository | What it does |
|---|---|---|
atelier |
AkaLab-Tech/atelier | AI-operated workstation for autonomous software delivery |
claude-roadmap-tools |
AkaLab-Tech/claude-roadmap-tools | ROADMAP / IN_PROGRESS / HISTORY tracking flow with /create-roadmap and /migrate-roadmap |
coolify-integration |
AkaLab-Tech/coolify-integration | Coolify VPS deployment integration for atelier agents (validate, deploy, manage apps) |
vercel-integration |
AkaLab-Tech/vercel-integration | Vercel deployment integration for atelier agents (deploy, logs, env, rollback) |
neon-integration |
AkaLab-Tech/neon-integration | Neon Postgres integration for atelier agents (branches, connection strings, projects) |
- Publish the plugin in its own repository under
AkaLab-Tech/<plugin-name>, with a.claude-plugin/plugin.jsonmanifest at its root. The plugin repository must not contain its own.claude-plugin/marketplace.json— this catalog is the single source of truth for theakalab-techmarketplace. - Open a PR against this repository adding a new entry to the
pluginsarray in.claude-plugin/marketplace.json:{ "name": "<plugin-name>", "source": { "source": "github", "repo": "AkaLab-Tech/<plugin-name>" }, "description": "...", "homepage": "https://github.com/AkaLab-Tech/<plugin-name>", "repository": "https://github.com/AkaLab-Tech/<plugin-name>", "category": "...", "tags": ["..."] } - Run
claude plugin validate .locally to confirm the manifest still parses. - After merge, users get the new plugin with
/plugin marketplace update akalab-techfollowed by/plugin install <plugin-name>@akalab-tech.
A single shared marketplace per organization (rather than one marketplace per plugin) is the pattern recommended by the Claude Code marketplace docs. It means:
- Users add one marketplace and get all current and future AkaLab-Tech plugins.
- Each plugin keeps its own repository, release cadence, and version history.
- Plugin entries reference their source repository remotely via the
githubsource type, so this catalog stays a tiny JSON file with no plugin content of its own.
MIT — see LICENSE.