Claude Skills for full-stack developers
Claude Skills
67 skills across languages, frameworks, DevOps and security, plus 9 workflow commands for Jira and Confluence epics
Install
/plugin marketplace add jeffallan/claude-skills
/plugin install fullstack-dev-skills@jeffallanOther methods are described in QUICKSTART.md.
This is third-party code. Review the repository files before installing.
What it does
A Claude Code plugin with 67 specialist skills in 12 categories: NestJS, React, Django, FastAPI, C++, cloud architecture, code review, debugging, testing and more. Skills activate from the request context and load the matching reference files. It also ships 9 workflow commands that manage epics from discovery to retrospective, and /common-ground to surface the agent's hidden assumptions about your project.
Who it is for. Full-stack developers who want the agent to follow established practices for their specific stack.
Good fit when
- You are building a feature in a known framework and want idiomatic solutions
- You need a code review that looks for vulnerabilities and performance issues
- You manage epics in Jira and Confluence and want to automate the stages
Not a fit when
- You only need a couple of skills without extra context
- You want the workflow commands but do not use Atlassian
Example request
Implement JWT authentication in my NestJS APILimitations
Workflow commands require a configured Atlassian MCP server. The main install path targets Claude Code.
How to disable. Uninstall the fullstack-dev-skills plugin from the /plugin menu in Claude Code.
Security check
- Skills are mostly instructions and reference markdown files
- Workflow commands act on Jira and Confluence through the Atlassian MCP
README in short
The repository is a Claude Code plugin with 67 skills, 9 workflow commands and 371 reference files. Skills cover languages, backend and frontend frameworks, infrastructure, APIs, testing, DevOps, security and data. The README shows skill chains for feature development, bug investigation and security hardening. Full docs live at jeffallan.github.io/claude-skills. MIT licensed.
SKILL.md
---
name: code-reviewer
description: Analyzes code diffs and files to identify bugs, security vulnerabilities (SQL injection, XSS, insecure deserialization), code smells, N+1 queries, naming issues, and architectural concerns, then produces a structured review report with prioritized, actionable feedback. Use when reviewing pull requests, conducting code quality audits, identifying refactoring opportunities, or checking for security issues. Invoke for PR reviews, code quality checks, refactoring suggestions, review code, code quality. Complements specialized skills (security-reviewer, test-master) by providing broad-scope review across correctness, performance, maintainability, and test coverage in a single pass.
license: MIT
allowed-tools: Read, Grep, Glob
metadata:
author: https://github.com/Jeffallan
version: "1.1.0"
domain: quality
triggers: code review, PR review, pull request, review code, code quality
role: specialist
scope: review
output-format: report
related-skills: security-reviewer, test-master, architecture-designer
---
# Code Reviewer
Senior engineer conducting thorough, constructive code reviews that improve quality and share knowledge.
## When to Use This Skill
- Reviewing pull requests
- Conducting code quality audits
- Identifying refactoring opportunities
- Checking for security vulnerabilities
- Validating architectural decisions
## Core Workflow
1. **Context** — Read PR description, understand the problem being solved. **Checkpoint:** Summarize the PR's intent in one sentence before proceeding. If you cannot, ask the author to clarify.
2. **Structure** — Review architecture and design decisions. Ask: Does this follow existing patterns in the codebase? Are new abstractions justified?
3. **Details** — Check code quality, security, and performance. Apply the checks in the Reference Guide below. Ask: Are there N+1 queries, hardcoded secrets, or injection risks?
4. **Tests** — Validate test coverage and quality. Ask: Are edge cases covered? Do tests assert behavior, not implementation?
5. **Feedback** — Produce a categorized report using the Output Template. If critical issues are found in step 3, note them immediately and do not wait until the end.
> **Disagreement handling:** If the author has left comments explaining a non-obvious choice, acknowledge their reasoning before suggesting an alternative. Never block on style preferences when a linter or formatter is configured.
## Reference Guide
Load detailed guidance based on context:
<!-- Spec Compliance and Receiving Feedback rows adapted from obra/superpowers by Jesse Vincent (@obra), MIT License -->
| Topic | Reference | Load When |
|-------|-----------|-----------|
| Review Checklist | `references/review-checklist.md` | Starting a review, categories |
| Common Issues | `references/common-issues.md` | N+1 queries, magic numbers, patterns |
| Feedback Examples | `references/feedback-examples.md` | Writing good feedback |
| Report Template | `references/report-template.md` | Writing final review report |
| Spec Compliance | `references/spec-compliance-review.md` | Reviewing implementations, PR review, spec verification |
| Receiving Feedback | `references/receiving-feedback.md` | Responding to review comments, handling feedback |
## Review Patterns (Quick Reference)
### N+1 Query — Bad vs Good
```python
# BAD: query inside loop
for user in users:
orders = Order.objects.filter(user=user) # N+1FAQ
Do I have to invoke skills manually?
No. According to the README, skills activate automatically from your request, and complex tasks combine several skills.
Related
A skills library that gives coding agents a development process: brainstorming, planning, TDD, subagents and code review
Skills for real engineers by Matt Pocock
Skills For Real Engineers
Small composable skills for engineering with agents: plan grilling, TDD, bug diagnosis, code review and architecture
Reference MCP servers
Model Context Protocol servers
Official reference MCP servers: Filesystem, Fetch, Git, Memory, Sequential Thinking, Time and Everything
Up-to-date, version-specific library docs and code examples in your agent's context, via MCP or a CLI plus skill