Super Gabriel Claude Toolkit banner
gabrielfst30 gabrielfst30

Super Gabriel Claude Toolkit

Development community

Description

Reusable collection of Claude Code agents and skills for structured software development workflows. Project-agnostic — plug into any codebase with a CLAUDE.md.

Installation

This entry records only its repository, not the path inside it, so there is no exact command to give. Open the source below and copy the folder into ~/.claude/skills/, or the file into ~/.claude/agents/.

README

Claude Code Toolkit

A reusable collection of Claude Code agents and skills for software development workflows. Project-agnostic — works with any codebase as long as a `CLAUDE.md` is present.


Installation

Copy the `agents/` and `skills/` directories into your project's `.claude/` folder:

# Clone this repo
git clone https://github.com/gabrielfst30/super-gabriel-claude-toolkit.git

# Copy into your project
cp -r super-gabriel-claude-toolkit/agents your-project/.claude/
cp -r super-gabriel-claude-toolkit/skills your-project/.claude/

Your `.claude/` should look like:

.claude/
├── agents/
│   ├── architecture-guardian.md
│   ├── nextjs-react-expert.md
│   ├── task-executor.md
│   ├── task-verifier.md
│   ├── typescript-error-fixer.md
│   ├── prisma-migrator.md
│   ├── natspec-writer.md
│   ├── natspec-validator.md
│   ├── kanban-card-writer.md
│   └── codebase-mapper.md
└── skills/
    ├── enhance/
    ├── planner/
    ├── execute-todo/
    ├── system-verifier/
    ├── create-skill-agent/
    ├── natspec/
    ├── prisma-postgresql-schema/
    ├── kanban-task-planner/
    ├── run-kanban/
    ├── route-security-tester/
    └── explain-simply/

**Requirement:** Create a `CLAUDE.md` at the project root. The `architecture-guardian`, `task-executor`, and `system-verifier` agents all read it to derive project-specific rules.


Agents

Agents are specialized Claude subagents invoked programmatically — not by the user directly. They run in isolated context with restricted tool access.

Agent Model Role
architecture-guardian opus Validates code adherence to CLAUDE.md conventions
nextjs-react-expert opus Expert in Next.js App Router, React, TypeScript patterns
task-executor opus Implements a single atomic task from a todo spec
task-verifier opus Verifies a completed task against requirements and architecture
`ty