The official plugin registry for OpenACP. This repository contains metadata for all community plugins discoverable via openacp plugin search.
| Plugin | Description | Category | Version | ||
|---|---|---|---|---|---|
| π | Hello World Plugin | Example plugin β greets users on session start | utility | 0.0.1 |
β verified |
| π’ | Workspace β Multi-User Collaboration | Multi-user collaboration for shared OpenACP sessions | utility | 2026.414.3 |
β verified |
| π€ | Cowork β Multi-Agent Coordination | Coordinate multiple AI agents working on the same codebase with status broadcasting and context injection | utility | 1.0.1 |
|
| π | Conversation Record & Context Bridge | Record session events to JSONL and bridge context between concurrent sessions via /context command | utility | 0.1.0 |
|
| π | Summary Plugin | Ask the AI agent to summarize the current session β what was accomplished, key files changed, decisions made, and current status | utility | 0.1.0 |
|
| π | Usage Plugin | Automatically tracks token usage and cost per agent session, supports configurable monthly budgets with warning notifications | utility | 0.1.0 |
Total: 6 plugins Β· Submit yours β
openacp plugin search <query>
openacp plugin install <plugin-name>Want to list your plugin? See CONTRIBUTING.md for submission instructions.
- Plugin authors submit a JSON file via Pull Request to
plugins/ - CI validates the submission (schema, npm existence, uniqueness)
- PR auto-merges if validation passes
registry.jsonis automatically rebuilt- OpenACP CLI fetches
registry.jsonto power plugin search and discovery - A daily CI job updates version numbers from npm
plugins/
example--openacp-hello.json # One JSON file per plugin
registry.json # Auto-generated aggregate (do not edit)
npm install
# Validate plugin files
npm run validate
# Check that npm packages exist
npm run check-npm
# Build registry.json + update README plugin list
npm run build
# Update versions from npm
npm run update-versions
# Run tests
npm test{
"name": "plugin-name",
"displayName": "Plugin Name",
"description": "What the plugin does",
"npm": "@scope/package-name",
"repository": "https://github.com/org/repo",
"author": { "name": "Author", "github": "username" },
"version": "1.0.0",
"minCliVersion": "2026.0326.0",
"category": "adapter|utility|integration|ai|security|media",
"tags": ["tag1", "tag2"],
"icon": "π",
"license": "MIT",
"verified": false,
"featured": false
}| Icon | Category | Description |
|---|---|---|
| π | Adapters | Messaging platform adapters (WhatsApp, Line, etc.) |
| π§ | Utilities | Utility plugins (translation, formatting, etc.) |
| π | Integrations | Third-party integrations (Jira, Linear, etc.) |
| π€ | AI & Models | AI model providers |
| π | Security | Security & access control |
| π΅ | Media | Voice, image, video processing |
MIT