Software Development Lifecycle — commit, review, QA, testing, security hooks, git hooks, and infrastructure configuration for Claude Code agents
Browser automation — open pages, interact with elements, take screenshots
Parallel QA validation — discovers YAML user stories, fans out browser-qa agents, aggregates results
Retrieve all review comments for a pull request.
Orchestrate the complete merge workflow from local changes to merged PR.
Merge the current PR and optionally delete the feature branch.
QA validation agent — executes user stories against web apps, reports structured pass/fail with screenshots
Audits environment variable configuration for correctness, security, and completeness. Delegate to this agent when you need to review .env.example, settings classes, startup validation, or secret handling. Read-only — cannot modify files.
Headless browser automation using Playwright CLI for UI testing, visual QA, and web scraping
Type-safe, self-documenting environment configuration with idempotent sync
Create conventional commits with proper formatting
Set up auto-generated .env.example with idempotent .env sync from typed settings. Works in both interactive (human-in-loop) and headless (automated workspace) contexts.
Git workflows — push, merge, PR lifecycle, worktrees, branch management, and CI integration. Invoke for any git operation beyond a simple commit.
Matches all tools
Hooks run on every tool call, not just specific ones
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.
Atomic building blocks for AI agent systems
Atomic building blocks for AI agent systems — packaged as Claude Code plugins and Python libraries.
Designed to work in two contexts:
The same primitives serve both. The difference is configuration: which tools are allowed, which hooks fire, which agents are trusted.
Explicit user-invocable slash commands (/sdlc:git_push). Granular, predictable, human-triggered. The developer stays in the loop.
→ Lives in: plugins/<plugin>/commands/<name>.md
Reusable workflows Claude invokes automatically when a task matches the description — or that you invoke as /sdlc:git. Consolidated, intent-driven, works in both human and headless contexts.
→ Lives in: plugins/<plugin>/skills/<name>/SKILL.md
Named specialist subagents with a scoped system prompt, explicit allowed/disallowed tools, and optional persistent memory. The tool scope is the key primitive — it determines what an agent can do, not just what it should do. Agents can preload skills and delegate to other agents via the Task tool.
→ Lives in: plugins/<plugin>/agents/<name>/agent.md
Event-driven automation that fires on Claude Code lifecycle events (PreToolUse, PostToolUse, SubagentStop, SessionStart, etc.). Observe, modify, or block — enforcing policies and emitting telemetry without touching workflow code.
→ Lives in: plugins/<plugin>/hooks/hooks.json + handlers
Python packages that power agent runtimes — isolation, events, logging, security. Used by the Agentic Engineering Framework (AEF) as its foundation.
→ Lives in: lib/python/
User: /sdlc:git_push ← Command (explicit, human-in-loop)
or
Claude detects push needed ← Skill (auto-invoked, headless-friendly)
│
├─► PreToolUse Hook validates git commands before execution
│
├─► Skill delegates review to env-reviewer Agent (Task tool)
│ ├─ tools: Read, Grep, Glob only (cannot modify anything)
│ ├─ disallowedTools: Write, Edit (enforced, not just instructed)
│ └─ SubagentStop Hook records telemetry
│
└─► PostToolUse Hook emits structured JSONL event (Lib: agentic-events)
The pattern:
Plugins are installed via Claude Code's built-in plugin system. Requires Claude Code v1.0.33+.
You can also do all of this interactively by typing /plugin inside Claude Code.
1. Add the marketplace (one-time setup):
claude plugin marketplace add AgentParadise/agentic-primitives
2. Install the plugins you need:
# Install globally (available in all projects)
claude plugin install sdlc@agentic-primitives --scope user
# Or install to current project only
claude plugin install sdlc@agentic-primitives --scope project
3. Update to the latest version:
# Refresh the marketplace catalog first
claude plugin marketplace update agentic-primitives
# Then update the plugin
claude plugin update sdlc@agentic-primitives
Plugins are pinned to a version and never auto-update. Updates require both steps above.
4. Disable / enable without uninstalling:
claude plugin disable sdlc@agentic-primitives
claude plugin enable sdlc@agentic-primitives
5. Uninstall:
claude plugin uninstall sdlc@agentic-primitives
6. Verify security hooks are active:
# Inside a Claude Code session, run:
/sdlc:validate_security-hooks
Replace sdlc with any plugin name (workspace, research, meta, docs) in the commands above.
npx claudepluginhub agentparadise/agentic-primitives --plugin sdlcDocumentation tools — Fumadocs integration and documentation management
Full-spectrum agent observability — hooks every Claude Code lifecycle event and emits structured JSONL events via agentic_events. Composable with other plugins.
Desktop and push notifications for Claude Code — macOS native, ntfy.sh, and Pushover with sound themes
Observable isolated workspaces — provides lifecycle and observability hooks for agent workspaces, emitting structured JSONL events via agentic_events
Primitive generators — tools that create commands, skills, prompts, and other agentic primitives
Comprehensive skill pack with 66 specialized skills for full-stack developers: 12 language experts (Python, TypeScript, Go, Rust, C++, Swift, Kotlin, C#, PHP, Java, SQL, JavaScript), 10 backend frameworks, 6 frontend/mobile, plus infrastructure, DevOps, security, and testing. Features progressive disclosure architecture for 50% faster loading.
Harness-native ECC operator layer - 67 agents, 271 skills, 92 legacy command shims, reusable hooks, rules, selective install profiles, and production-ready workflows for Claude Code, Codex, OpenCode, Cursor, and related agent harnesses
Feature development with code-architect/explorer/reviewer agents, CLAUDE.md audit and session learnings, and Agent Skills creation with eval benchmarking from Anthropic.
Comprehensive feature development workflow with specialized agents for codebase exploration, architecture design, and quality review
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 developer toolkit for Claude Code