By jdiegosierra
Acme Corp engineering tools: standards, workflows, and integrations for Claude Code
Executes bash commands
Hook triggers when Bash tool is used
Uses power tools
Uses Bash, Write, or Edit tools
Own this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge. GitHub access is read-only (username + org membership).
Sign in to claimOwn this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge. GitHub access is read-only (username + org membership).
Sign in to claimBased on adoption, maintenance, documentation, and repository signals. Not a security audit or endorsement.
A scaffold for building multi-platform AI coding agent plugins that work across Claude Code, opencode, and OpenClaw. Use this as a starting point for your own enterprise engineering plugins.
This repository demonstrates a production-ready plugin architecture where src/ is the single source of truth, and each AI platform reads from it via symlinks.
One repo serves as a single catalog for the entire organization. Each department owns its own plugin — employees install only the ones they need.
| Plugin | Department | Status |
|---|---|---|
| acme-engineering | Engineering | Full example (agents, skills, runbooks, hooks) |
| acme-people | People/HR | Placeholder — ready to customize |
| acme-finance | Finance | Placeholder — ready to customize |
| acme-marketing | Marketing | Placeholder — ready to customize |
Each plugin is independent — its own agents, skills, commands, and versioning. Employees from different departments install different plugins from the same marketplace.
Pick your platform — you only need to install on the one(s) you use.
# From a Claude Code session:
/plugin marketplace add jdiegosierra/enterprise-agent-plugins
/plugin install acme-engineering@jdiegosierra-enterprise-agent-plugins
Updates are automatic — Claude Code checks for new versions on each session start.
Test locally without installing:
claude --plugin-dir ./plugins/acme-engineering/claude
# 1. Clone the repo
git clone https://github.com/jdiegosierra/enterprise-agent-plugins.git ~/repos/enterprise-agent-plugins
# 2. Run the setup script to symlink agents into opencode's config
bash ~/repos/enterprise-agent-plugins/plugins/acme-engineering/scripts/setup-opencode-agents.sh
# 3. Verify agents are registered
ls -la ~/.config/opencode/agents/
Updates: git pull in the repo and re-run the setup script.
OpenClaw loads skills via extraDirs in openclaw.json. Point it to the src/skills/ directory (not openclaw/skills/ — OpenClaw doesn't resolve symlinks inside extraDirs).
# 1. Clone the repo into the OpenClaw workspace
git clone https://github.com/jdiegosierra/enterprise-agent-plugins.git /path/to/repos/enterprise-agent-plugins
# 2. Add to openclaw.json
cat <<EOF >> /dev/null
Add this to your openclaw.json under "skills.load":
{
"skills": {
"load": {
"extraDirs": [
"/path/to/repos/enterprise-agent-plugins/plugins/acme-engineering/src/skills"
],
"watch": true
}
}
}
EOF
# 3. Restart OpenClaw (or wait — watch mode picks up changes automatically)
Updates: git pull in the repo. With watch: true, OpenClaw detects changes automatically.
The acme-engineering plugin is a fully functional example with:
npx claudepluginhub jdiegosierra/enterprise-agent-plugins --plugin acme-engineeringA comprehensive plugin with specialized engineering subagents and productivity commands for software teams
Git and PR workflows with code review, onboarding, and PR enhancement
Prompt engineering techniques for accurate, grounded Claude responses — anti-hallucination workflow with citation-backed analysis
Tactical Agentic Coding course content by @IndyDevDan - Master agentic coding tactics to scale engineering and build self-operating codebases
Cross-cutting utilities: technical writing, git workflow, code review, pair programming, on-call runbooks, incident response.
Compound Engineering workflow: PRD-driven sprints, isolated worktrees, hook-enforced safety, automated learning. Skills become /vini-workflow:plan, /vini-workflow:compound, etc.