@daemux/claude-plugin
v1.30.9
Published
Install and manage Daemux Claude Code plugins
Maintainers
Readme
Daemux Claude Plugins
A marketplace for Claude Code plugins used across Daemux projects.
Install / Update
Project-specific (default): Run from your project directory:
npx --yes @daemux/claude-pluginGlobal (all projects): Install once for all projects:
npx --yes @daemux/claude-plugin --globalWorks for both fresh install and updates. Run the same command anytime.
The installer will:
- Register the marketplace in
~/.claude/plugins/ - Install the plugin via
claude plugin install - Add required env vars to
.claude/settings.json(preserves existing values) - Configure statusLine (preserves existing config)
- Copy
CLAUDE.mdtemplate with development standards
Auto-updates are built in — the plugin checks npm once per day and updates silently in the background.
Uninstall
Project-specific: Remove from current project only:
npx --yes @daemux/claude-plugin --uninstallGlobal: Remove from all projects and clean up marketplace:
npx --yes @daemux/claude-plugin --global --uninstallCLI Options
npx --yes @daemux/claude-plugin [options]
Options:
-g, --global Install/uninstall globally (~/.claude) instead of project scope
-u, --uninstall Uninstall the plugin
--only <agents> Install only specified agents (comma-separated)
--exclude <agents> Exclude specified agents (comma-separated)
--list List available agents and their tiers
-v, --version Show version number
-h, --help Show help messageSelective Installation
npx --yes @daemux/claude-plugin --list
npx --yes @daemux/claude-plugin --only=developer,reviewer
npx --yes @daemux/claude-plugin --exclude=designer,devops
npx --yes @daemux/claude-plugin -g --only=developer,reviewer,testerAgent Tiers
| Tier | Agents | Description | |------|--------|-------------| | Core | developer, reviewer | Minimum viable pipeline | | Enhanced | + architect, simplifier, tester | Full quality pipeline | | Full | + product-manager, designer, devops | Complete workflow |
Included Plugins
daemux-dev-toolkit
General-purpose development toolkit with:
8 Agents:
architect- Designs architecture before developmentdesigner- UI/UX design specs before frontend developmentdeveloper- Code implementation (backend/frontend)devops- DevOps operations (deploy, database, server management)product-manager- Pre/post-dev validationreviewer- Code review after changessimplifier- Code simplificationtester- Testing (backend/frontend/integration)
Configuration
The plugin is ready to use after installation. Core features are enabled automatically in .claude/settings.json:
{
"env": {
"CLAUDE_CODE_ENABLE_TASKS": "true",
"CLAUDE_CODE_EXPERIMENTAL_AGENT_TEAMS": "1"
}
}Add additional environment variables as needed for your project.
Pin a Specific Version
npx --yes @daemux/[email protected]