Single-plugin marketplace for daplug - AI-assisted development workflows
npx claudepluginhub cruzanstx/daplugAI-assisted development workflows with multi-model prompt execution
Claude Code plugins for the Slidev presentation framework
Bundled plugins for actuating and debugging the Chrome browser.
Claude Code marketplace entries for the plugin-safe Antigravity Awesome Skills library and its compatible editorial bundles.
Share bugs, ideas, or general feedback.
Delegate prompts to Codex, Gemini, Z.AI, or local models from Claude Code — with worktree isolation and Ralph-Wiggum-inspired verification loops.
Run these commands in your terminal (not inside Claude Code):
# Add the marketplace (SSH)
claude plugin marketplace add cruzanstx/daplug
# Or via HTTPS
claude plugin marketplace add https://github.com/cruzanstx/daplug
# Install daplug
claude plugin install daplug@cruzanstx
Clone/copy this plugin to one of:
~/.claude/plugins/daplug/ (user scope).claude/plugins/daplug/ (project scope)OpenCode does not load Claude marketplace plugins, so daplug's namespaced commands (for example /daplug:run-prompt) are not available and will fail with Command or skill not found.
To use daplug commands in OpenCode, install bridge commands using the built-in command (from Claude Code):
/install-bridges opencode
Or run the generator script directly:
# Default output: ~/.config/opencode/commands/
python3 scripts/generate-opencode-bridges.py
# Custom output directory (example: project-local)
python3 scripts/generate-opencode-bridges.py .opencode/commands
# Remove stale daplug bridges before regenerating
python3 scripts/generate-opencode-bridges.py --clean
Bridges contain an absolute @ reference to daplug's real commands/*.md specs, so there's no command duplication.
Command name mapping:
/daplug:run-prompt/daplug-run-prompt| Command | Description |
|---|---|
/daplug:check-config | Verify daplug configuration status and detect legacy settings |
/daplug:cclimits | Check AI CLI usage/quota (Claude, Codex, Gemini, Z.AI) |
/daplug:check-updates | Check if plugin has updates available |
/daplug:codex-cli | Run task with OpenAI Codex CLI |
/daplug:create-at-prompt | Create an agent-team orchestration bundle (orchestrator prompt + sub-prompts) |
/daplug:create-llms-txt | Research and generate llms_txt documentation |
/daplug:create-prompt | Create optimized, XML-structured prompts |
/daplug:devstral-cli | Run task with local Devstral model via Codex CLI |
/daplug:detect-clis | Scan and manage available AI coding CLIs |
/daplug:gemini-cli | Run task with Google Gemini CLI |
/daplug:install-bridges | Install daplug command bridges for other runtimes (e.g. OpenCode) |
/daplug:migrate-config | Migrate legacy CLAUDE.md settings to <daplug_config> |
/daplug:prompts | Analyze prompts folder and recommend next steps |
/daplug:qwen-cli | Run task with local Qwen model via Codex CLI |
/daplug:run-at-prompt | Run existing prompts with agent-team orchestration (phase groups + auto-deps) |
/daplug:run-prompt | Execute prompts with various AI models |
/daplug:sprint | Automated sprint planning from specs or existing prompts |
/daplug:uvc | Update docs and push to version control |
/daplug:zai-cli | Run task with Z.AI GLM-4.7 via Codex CLI |
| Agent | Description |
|---|---|
frontend-build-optimizer | Optimize frontend build times (SvelteKit, Next.js, Vite) |
go-build-optimizer | Optimize Go compilation and Docker builds |
infra-troubleshooter | Diagnose infrastructure issues |
k8s-cicd-troubleshooter | Troubleshoot Kubernetes and CI/CD pipelines |
readonly-log-watcher | Monitor prompt execution logs without touching files |
| Skill | Description |
|---|---|
ai-usage | Check AI CLI usage/quota (Claude, Codex, Gemini, Z.AI) |
config-reader | Read and manage daplug config from CLAUDE.md (<daplug_config>) |
prompt-executor | Execute prompts with AI models, worktrees, tmux |
prompt-finder | Find and resolve prompts in ./prompts/ directory |
prompt-manager | CRUD operations for prompts with subfolder support |
sprint | Automated sprint planning, dependency graphs, execution plans |
tmux-manager | Manage tmux sessions for background tasks |
worktree | Manage git worktrees for isolated development |
hooks/hooks.json - PostToolUse hook that nudges Claude to spawn pipeline-deploy-monitor after successful git pushhooks/scripts/post-push-detect.sh - Detects git push and respects auto_pipeline_monitor: disabled in <daplug_config>servers.json - Placeholder MCP config (disabled by default)Commands below are shown without the /daplug: prefix for readability. In Claude Code, use /daplug:<command> if you prefer namespaced commands.

/create-promptgenerates XML-structured prompts optimized for each task type, then/run-promptexecutes them with your chosen model.