Personal dev workflow plugins — agents, skills, commands, and tools
npx claudepluginhub tiagokrebs/claude-agentic-platformDevelopment workflow agents — planner, architect, developer, reviewer
SRE agent, observability skills, deploy checklist, and hooks for aaPanel-managed infrastructure
Claude Code marketplace entries for the plugin-safe Antigravity Awesome Skills library and its compatible editorial bundles.
Production-ready workflow orchestration with 79 focused plugins, 184 specialized agents, and 150 skills - optimized for granular installation and minimal token usage
Curated collection of 141 specialized Claude Code subagents organized into 10 focused categories
Personal Claude Code plugin monorepo. Each directory under plugins/ is a self-contained installable plugin.
| Plugin | Description |
|---|---|
dev-agents | Planner, architect, developer, reviewer + workflow commands + dev skills + GitHub MCP |
sre-toolkit | SRE agent + observability skills + deploy checklist + hooks |
docs | Shared team documentation — onboarding, conventions, runbooks |
1. Add this repo as a marketplace (once per machine):
/plugin marketplace add tiagokrebs/claude-agentic-platform
2. Install plugins:
# Every developer machine
/plugin install dev-agents@claude-agentic-platform
/plugin install docs@claude-agentic-platform
# Infra/SRE work only
/plugin install sre-toolkit@claude-agentic-platform
Requires GITHUB_TOKEN in your shell environment for the GitHub MCP server:
echo 'export GITHUB_TOKEN=ghp_yourtoken' >> ~/.zshrc
Decisions, anomalies, and findings captured automatically during development are pushed to:
github.com/tiagokrebs/claude-agentic-platform-engineering-intelligence
No setup required. The push-ei.sh script clones the repo to ~/claude-agentic-platform-engineering-intelligence on first run and pushes from there. Captures are written automatically by the architect and reviewer agents.
/plugin marketplace update claude-agentic-platform
claude-agentic-platform/
├── plugins/
│ ├── dev-agents/
│ │ ├── .claude-plugin/plugin.json
│ │ ├── .mcp.json ← GitHub MCP server
│ │ ├── CLAUDE.md ← agent routing rules
│ │ ├── agents/ ← planner, architect, developer, reviewer
│ │ ├── commands/ ← /plan, /review, /standup
│ │ ├── scripts/ ← session-summary.sh, push-ei.sh
│ │ └── skills/ ← git-workflow, adr-format, php-node-conventions, engineering-intelligence
│ ├── sre-toolkit/
│ │ ├── .claude-plugin/plugin.json
│ │ ├── agents/ ← sre
│ │ ├── commands/ ← /deploy-check
│ │ ├── hooks/ ← setup, pre-commit, post-write, notification
│ │ └── skills/ ← sre-patterns
│ └── docs/
│ ├── .claude-plugin/plugin.json
│ └── docs/
│ ├── onboarding.md
│ └── conventions.md
└── README.md
plugins/<name>/.claude-plugin/plugin.json with at minimum { "name": "<name>" }agents/, commands/, skills/, hooks/, .mcp.json as needed