Coordinator-driven development workflow with parallel agent execution for implementing features, fixing bugs, and refactoring code
Perform multi-lens adversarial review to challenge implementation correctness, structural fitness, and necessity
Design architecture and create Architecture Decision Records (ADRs) for complex features
Incrementally fix TypeScript and build errors:
Assess existing codebase for architecture, standards, and framework patterns
Perform specification-aware code review focused on correctness, security, performance, and maintainability
Challenge implementations from distinct critical lenses (Skeptic, Architect, Minimalist) to catch issues standard code review misses. Produces a verdict, NOT code modifications.
Android engineer with modern Kotlin 2.x/K2 compiler, Jetpack Compose (BOM 2025.12, Material 3 1.4), Navigation 3 (type-safe NavDisplay), Hilt DI with KSP, Room 2.8 (KMP), AGP 9.x with built-in Kotlin, Baseline Profiles, Compose screenshot testing, and quality gates (ktlint/detekt, unit/UI tests ≥80% coverage, accessibility).
Software architecture specialist for system design, scalability, and technical decision-making. Use PROACTIVELY when planning new features, refactoring large systems, or making architectural decisions.
Produce concise, implementation-ready architecture: module decomposition, interfaces, ADRs, and validation. Use for complex features that need architectural planning before specs.
Backend engineer with modern, enforceable best practices for Node.js 22 LTS/TypeScript 6.0 (Hono framework, Drizzle ORM) and Python 3.14 (free-threaded, uv package manager, FastAPI 0.135+/Pydantic v2): security hardening (headers, authN/Z, secrets), strict validation (Zod/Pydantic), performance (profiling, caching, pagination, connection pooling), deterministic testing (unit/integration with coverage), observability (structured logging, tracing, metrics), and quality gates (lint/typecheck/OpenAPI, SLOs).
Perform multi-lens adversarial review to challenge implementation correctness, structural fitness, and necessity. Applies Skeptic, Architect, and Minimalist lenses with 7 attack vectors (V1-V7) and a Destructive Action Gate. Produces a verdict (PASS/CONTESTED/REJECT), NOT code modifications. Trigger on: "adversarial review", "challenge this code", "attack the implementation", "review for edge cases", "check for destructive actions", "stress test the design". Do NOT trigger on: standard code review (use code-review skill), simple linting, formatting checks, or documentation review.
Auto-improve any agent prompt using Karpathy's autoresearch method. Runs iterative test-measure-improve loops on agent prompts to systematically increase quality. Triggers on: "autoresearch", "auto-improve", "optimize agent", "tune prompt", "improve skill quality".
Safety guardrail that blocks destructive commands for the current session. Activate when working with production systems, sensitive data, or critical infrastructure. Triggers on: "be careful", "careful mode", "production mode", "safety mode". Blocks: rm -rf, DROP TABLE, TRUNCATE, DELETE FROM (no WHERE), git push --force, git reset --hard, git branch -D, kubectl delete, chmod 777, npm unpublish. Deactivate by ending the session.
Core development rules and philosophy. Use at the start of any development task to establish coding standards, git practices, and quality guidelines. Triggers on any implementation, fix, or refactoring task.
Directory freeze guardrail that restricts file edits to a specific directory for the current session. Activate when debugging or investigating to prevent accidental changes to unrelated code. Triggers on: "freeze mode", "lock directory", "restrict edits", "only edit in". Blocks Edit/Write operations outside the specified directory. Deactivate by ending the session.
Executes bash commands
Hook triggers when Bash tool is used
Modifies files
Hook triggers on file write and edit operations
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.
Uses power tools
Uses Bash, Write, or Edit tools
Uses power tools
Uses Bash, Write, or Edit tools
A Claude Code plugin marketplace for context persistence and productivity tools.
Repository: https://github.com/jenningsloy318/claude-skill-artifacts
| Plugin | Description | Version |
|---|---|---|
| context-keeper | Automatically summarize and persist conversation context before compaction | v1.0.0 |
| dev-workflow | Comprehensive development workflow with structured phases for implementing features, fixing bugs, and refactoring | v1.0.0 |
If you don't have uv installed, install it first:
# Install uv using pipx (recommended)
pipx install uv
# Or install using curl
curl -LsSf https://astral.sh/uv/install.sh | sh
Navigate to the project root and create a virtual environment with uv:
cd ~/.claude/plugins/marketplaces/claude-skill-artifacts/
# Create virtual environment with seed
uv venv --seed
# Activate the virtual environment
# On Linux/macOS:
source .venv/bin/activate
# On Windows:
.venv\\Scripts\\activate
# Add the marketplace
claude plugin marketplace add jenningsloy318/claude-skill-artifacts
# Install plugins
claude plugin install context-keeper@claude-skill-artifacts
claude plugin install super-dev@claude-skill-artifacts
export CLAUDE_SUMMARY_API_KEY="your-api-key"
export CLAUDE_SUMMARY_API_URL="https://api.anthropic.com"
Important: Always activate the virtual environment before running claude code:
source .venv/bin/activate
# Add this marketplace
claude plugin marketplace add jenningsloy318/claude-skill-artifacts
# List all marketplaces
claude plugin marketplace list
# Update marketplace (fetch latest plugins)
claude plugin marketplace update claude-skill-artifacts
# Remove marketplace
claude plugin marketplace remove claude-skill-artifacts
Automatically saves context summaries before compaction and restores context on resume.
Features:
/load-memory command for manual loadingEnvironment Variables:
| Variable | Description | Required |
|---|---|---|
CLAUDE_SUMMARY_API_KEY | API key for Claude LLM summarization | No (has fallback) |
CLAUDE_SUMMARY_API_URL | Custom API base URL | No |
See context-keeper-plugin/README.md for full documentation.
A comprehensive 11-phase development workflow for implementing features, fixing bugs, and refactoring code.
Features:
Workflow Agents:
| Agent | Purpose |
|---|---|
requirements-clarifier | Gather and document complete requirements |
research-agent | Find best practices and documentation |
search-agent | Multi-source search for retrieval |
debug-analyzer | Root cause analysis for bugs |
code-assessor | Evaluate existing codebase |
architecture-agent | Design architecture and create ADRs |
ui-ux-designer | Create UI/UX design specifications |
spec-writer | Create tech specs and implementation plans |
execution-coordinator | Coordinate parallel implementation |
code-reviewer | Specification-aware code review |
qa-agent | Modality-specific QA testing |
Developer Agents:
| Agent | Purpose |
|---|---|
rust-developer | Rust systems programming |
golang-developer | Go backend development |
frontend-developer | React/Next.js/TypeScript development |
backend-developer | Node.js/Python backend development |
android-developer | Kotlin/Jetpack Compose development |
ios-developer | Swift/SwiftUI development |
windows-app-developer | C#/.NET/WinUI development |
macos-app-developer | Swift/SwiftUI/AppKit development |
Skills:
| Skill | Purpose |
|---|---|
super-dev | Complete development workflow orchestration |
dev-rules | Core development rules and philosophy |
Commands:
| Command | Purpose |
|---|---|
/super-dev:run | Quick task execution for fixes and implementations |
Usage:
/super-dev:run Fix the login button not responding on mobile
/super-dev:run Implement user profile page with avatar upload
npx claudepluginhub jenningsloy318/claude-skill-artifacts --plugin super-devAutomatically summarize and persist conversation context before compaction, with automatic context restoration on resume
Corca Workflow Framework — consolidated hooks and skill orchestration for structured development sessions
Context-Driven Development plugin that transforms Claude Code into a project management tool with structured workflow: Context → Spec & Plan → Implement
Harness for Claude Code — skills, /harness:* slash commands, persona subagents, lifecycle hooks, and MCP tools without per-repo `harness setup`. Sibling plugins exist for Cursor, Gemini CLI, and Codex.
Context management with save and restore capabilities
(Alpha) Persistent memory, architectural decisions, and safety guardrails for Claude Code. Your agent starts every session with full project context — stack, decisions, patterns, safety rules, and a handoff from the previous session.
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