npx claudepluginhub tiagokrebs/claude-agentic-platform --plugin dev-agentsOrchestrates the full planner → architect → developer → reviewer pipeline for any development work — new features, bug fixes, refactors, or anything spanning more than one session.
Triggers the @reviewer agent on current uncommitted changes or a specified scope.
Summarizes work done since the last commit (or a given time window) in standup format.
Use when making structural decisions — new services, data models, API contracts, technology choices, or any change that affects more than one component. Invoke after planner, before developer. Also invoke after reviewer to validate findings and drive the fix loop until ARCH-APPROVED. Also invoke for ADR creation.
Use for all implementation work — writing code, fixing bugs, editing files, running commands. Always invoked after planner and/or architect on non-trivial work. For quick fixes and single-file changes, can be invoked directly.
Use when starting any non-trivial feature, task, or refactor. Breaks work into concrete, sequenced tasks with clear scope and acceptance criteria. Invoke before architect or developer on anything that spans more than one file or session.
Use after implementation is complete and before committing or merging. Reviews code for correctness, security, test coverage, and consistency with existing patterns. Also invoke on existing code when auditing for quality or security issues.
Template and conventions for documenting architectural decisions.
Format and criteria for capturing decisions, anomalies, and findings during development.
Branching, commit, and PR conventions for this project.
Coding patterns and conventions for this stack. Follow these exactly — consistency beats preference.
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 neededTeam-oriented workflow plugin with role agents, 27 specialist agents, ECC-inspired commands, layered rules, and hooks skeleton.
Requires secrets
Needs API keys or credentials to function
Uses power tools
Uses Bash, Write, or Edit tools
Access thousands of AI prompts and skills directly in your AI coding assistant. Search prompts, discover skills, save your own, and improve prompts with AI.
Complete collection of battle-tested Claude Code configs from an Anthropic hackathon winner - agents, skills, hooks, rules, and legacy command shims evolved over 10+ months of intensive daily use
Reliable automation, in-depth debugging, and performance analysis in Chrome using Chrome DevTools and Puppeteer
Manus-style persistent markdown files for planning, progress tracking, and knowledge storage. Works with Claude Code, Kiro, Clawd CLI, Gemini CLI, Cursor, Continue, Hermes, and 17+ AI coding assistants. Now with Arabic, German, Spanish, and Chinese (Simplified & Traditional) support.
Core skills library for Claude Code: TDD, debugging, collaboration patterns, and proven techniques