Help us improve
Share bugs, ideas, or general feedback.
Share bugs, ideas, or general feedback.
Share bugs, ideas, or general feedback.
By futuregerald
Portable skills, agents, and commands for Claude Code and other AI IDEs - includes a CLI installer for Cursor, Copilot, OpenCode, and VS Code
npx claudepluginhub futuregerald/futuregerald-claude-pluginCreate a GitHub issue for this project.
Show the current project status: open issues, active PRs, and project board state.
Check for new GitHub issues that were created by a person (not by the workflow).
Initialize the GitHub project for this repository. Creates the project board and standard labels.
Plan a feature by creating an epic issue and breaking it into task sub-issues on GitHub.
Reviews code quality for correctness, architecture, defensive coding, and testing. Use after spec compliance is verified.
Analyzes recently modified code for simplification opportunities, then spawns a Staff Engineer sub-agent to critically review suggestions before presenting final recommendations. Use after coding sessions or before commits.
Use this subagent for comprehensive codebase exploration and search tasks.
Use this subagent for systematic debugging of any technical issues.
Use this subagent when implementing tasks from a plan.
Use when you have a spec or requirements for a multi-step task, before touching code
Use when building AdonisJS v6 applications, implementing features in AdonisJS, or reviewing AdonisJS code. Covers routing, controllers, validation, authentication, database patterns, testing, and error handling.
any input (code, docs, papers, images) - knowledge graph - clustered communities - HTML + JSON + audit report
Automates browser interactions for web testing, form filling, screenshots, and data extraction. Use when the user needs to navigate websites, interact with web pages, fill forms, take screenshots, test web applications, or extract information from web pages.
Master REST and GraphQL API design principles to build intuitive, scalable, and maintainable APIs that delight developers. Use when designing new APIs, reviewing API specifications, or establishing API design standards.
Uses power tools
Uses Bash, Write, or Edit tools
Share bugs, ideas, or general feedback.
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.
Production-grade engineering skills for AI coding agents — covering the full software development lifecycle from spec to ship.
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.
Universal Claude Code workflow with specialized agents, skills, hooks, and output styles for any software project. Includes orchestrator, code-reviewer, debugger, docs-writer, security-auditor, refactorer, and test-architect agents.
Unified capability management center for Skills, Agents, and Commands.
Comprehensive UI/UX design plugin for mobile (iOS, Android, React Native) and web applications with design systems, accessibility, and modern patterns
Multi-model consensus engine integrating OpenAI Codex CLI, Gemini CLI, and Claude CLI for collaborative code review and problem-solving.
A Claude Code plugin that adds a curated library of AI coding skills and agents, a cross-platform CLI installer, and an optional GitHub workflow integration with project management.
This repository works in two ways:
--plugin-dir. Provides slash commands, skills, and agents directly inside Claude Code sessions.skill-installer) -- Installs skills, agents, and commands for Claude Code, GitHub Copilot, Cursor, OpenCode, and VS Code.A CLAUDE.md file sits at the root of your project and tells Claude Code how to work in that codebase. It defines:
src/, lib/, tests/, etc.)go test ./...), typecheck (npx tsc --noEmit), and buildThe plugin auto-detects your project type (Go, Node.js/React/Next.js/AdonisJS/Svelte/Express, Rust, Python, Ruby, PHP) and generates a CLAUDE.md with real values filled in — no manual editing of {{placeholders}} required.
Generate one with:
/init-claude-md my-project-name
Or via the CLI:
skill-installer --mode config-only --target claude --yes
Skills are markdown-based instruction sets that give Claude specialized knowledge and workflows. When invoked, Claude follows the skill's process exactly. The plugin includes 35 skills covering:
Skills are invoked by name in Claude Code:
/superpowers:systematic-debugging
/superpowers:test-driven-development
/superpowers:brainstorming
Agents are dispatched via the Task tool to handle focused work with fresh context. The plugin includes 7 agents: code quality reviewer, code simplifier (with Staff Engineer review), codebase searcher, debugger, implementer, spec reviewer, and SQL performance reviewer.
The plugin defines a 10-phase development lifecycle in the generated CLAUDE.md:
1. RECEIVE Understand task, create todo list
2. PLAN Write implementation plan
3. REVIEW Staff Engineer sub-agent reviews the plan
4. IMPLEMENT Write code following TDD
5. TEST Run tests and type checking
6. SIMPLIFY Code-simplifier agent analyzes for improvements
7. CODE REVIEW Code-reviewer sub-agent reviews changes
8. SQL REVIEW Staff Engineer audits queries for performance, security, defensive coding
9. COMMIT Commit to feature branch
10. PUSH + PR Push and create PR (if gh available)
11. VERIFY CI Check CI passes; auto-merge when green
Each phase has a gate — the workflow doesn't advance until the gate passes. This works entirely locally. For teams using GitHub, an optional beta workflow adds issue tracking, worktrees, and autonomous PR review (see GitHub Workflow below).