Professional Claude Code plugins for agentic engineering workflows and TypeScript Agent SDK development
npx claudepluginhub itamarzand88/claude-code-agentic-engineeringAdvanced agentic engineering workflow with specialized agents for ticket creation, planning, implementation, and code review. Includes 4-step workflow commands and best practices extraction.
Professional TypeScript Claude Agent SDK development toolkit — patterns, hooks, control, and architecture
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
A Claude Code plugin that provides a structured 4-step workflow for software development: Ticket → Plan → Implement → Review.
# Inside Claude Code
/plugin marketplace add ItamarZand88/claude-code-agentic-engineering
/plugin install agi@claude-code-agentic-engineering
# Run the complete workflow in one command
/agi:all "Add OAuth integration with Google"
# 1. Create task ticket with codebase analysis
/agi:1_ticket "Add OAuth integration with Google"
# 2. Generate implementation plan
/agi:2_plan .claude/tasks/add-oauth-integration
# 3. Execute the plan
/agi:3_implement .claude/tasks/add-oauth-integration
# 4. Code review
/agi:4_review .claude/tasks/add-oauth-integration
Review artifacts in .claude/tasks/{task-name}/ between steps for best results.
# Chain commands with --continue flag
/agi:1_ticket "Add feature" --continue=plan # ticket + plan
/agi:1_ticket "Add feature" --continue=implement # ticket + plan + implement
/agi:1_ticket "Add feature" --continue=all # full workflow
| Command | Description |
|---|---|
/agi:1_ticket <description> | Create task ticket with codebase analysis |
/agi:2_plan <task_folder> | Generate implementation plan |
/agi:3_implement <task_folder> | Execute the plan |
/agi:4_review <task_folder> | Code review and QA |
/agi:all <description> | Run complete workflow |
/agi:checks | Run linting/type checks |
/agi:best-practices | Generate coding standards from PRs |
/agi:fix-pr-comments <pr> | Fix PR review comments |
The plugin uses 3 specialized agents:
All artifacts are organized in .claude/tasks/:
.claude/tasks/{task-name}/
├── ticket.md # Requirements
├── plan.md # Implementation plan
└── review.md # Code review
gh) for best-practices and fix-pr-comments commands