Open Plugins agent extensions for Currents.
Provides the Currents MCP Server and supporting skills, agents, and rules — packaged as a single installable plugin for Cursor, Claude Code, and other conformant hosts.
- Install the plugin via your tool's plugin mechanism.
- Set the
CURRENTS_API_KEYenvironment variable (get a key).
agent-plugin/
├── .plugin/
│ └── plugin.json # Manifest
├── skills/
│ └── hello/SKILL.md # Greeting / onboarding skill
├── commands/
│ └── status.md # /agent-plugin:status
├── agents/
│ └── reviewer.md # Code review sub-agent
├── rules/
│ └── prefer-const.mdc # Coding standard
├── hooks/
│ └── hooks.json # Post-write lint hook
├── scripts/
│ └── lint.sh # Hook script
├── .mcp.json # Currents MCP server
└── .lsp.json # LSP servers (placeholder)
The plugin installs the @currents/mcp server, giving agents access to:
- Test runs, results, and spec-file performance
- Project insights and error explorer
- Actions (quarantine, skip, tag)
- Webhooks management
- CI cancellation and run resets
See the full tool list in the currents-mcp README.
- MCP — Currents MCP server (
@currents/mcp) - Skills —
hellogreets users and offers guidance - Commands —
statusreports loaded components - Agents —
reviewerperforms thorough code reviews - Rules —
prefer-constenforcesconstoverlet/var - Hooks — runs lint after file writes
MIT