affaan-m/everything-claude-code
These skills were imported into SkillJury from the public skills ecosystem.
iterative-retrieval
by affaan-m/everything-claude-code
Solves the "context problem" in multi-agent workflows where subagents don't know what context they need until they start working.
django-patterns
by affaan-m/everything-claude-code
Production-grade Django architecture patterns for scalable, maintainable applications.
eval-harness
by affaan-m/everything-claude-code
A formal evaluation framework for Claude Code sessions, implementing eval-driven development (EDD) principles.
jpa-patterns
by affaan-m/everything-claude-code
Use for data modeling, repositories, and performance tuning in Spring Boot.
django-tdd
by affaan-m/everything-claude-code
Test-driven development for Django applications using pytest, factory_boy, and Django REST Framework.
security-scan
by affaan-m/everything-claude-code
Audit your Claude Code configuration for security issues using AgentShield .
deployment-patterns
by affaan-m/everything-claude-code
Production deployment workflows and CI/CD best practices.
java-coding-standards
by affaan-m/everything-claude-code
Standards for readable, maintainable Java (17+) code in Spring Boot services.
database-migrations
by affaan-m/everything-claude-code
Safe, reversible database schema changes for production systems.
configure-ecc
by affaan-m/everything-claude-code
An interactive, step-by-step installation wizard for the Everything Claude Code project. Uses AskUserQuestion to guide users through selective installation of skills and rules, then verifies correctness and offers optimization.
nutrient-document-processing
by affaan-m/everything-claude-code
Process documents with the Nutrient DWS Processor API . Convert formats, extract text and tables, OCR scanned documents, redact PII, add watermarks, digitally sign, and fill PDF forms.
verification-loop
by affaan-m/everything-claude-code
A comprehensive verification system for Claude Code sessions.
cpp-testing
by affaan-m/everything-claude-code
Agent-focused testing workflow for modern C++ (C++17/20) using GoogleTest/GoogleMock with CMake/CTest.
springboot-verification
by affaan-m/everything-claude-code
Run before PRs, after major changes, and pre-deploy.
project-guidelines-example
by affaan-m/everything-claude-code
This is an example of a project-specific skill. Use this as a template for your own projects.
cpp-coding-standards
by affaan-m/everything-claude-code
Comprehensive coding standards for modern C++ (C++17/20/23) derived from the C++ Core Guidelines . Enforces type safety, resource safety, immutability, and clarity.
cost-aware-llm-pipeline
by affaan-m/everything-claude-code
Patterns for controlling LLM API costs while maintaining quality. Combines model routing, budget tracking, retry logic, and prompt caching into a composable pipeline.
django-verification
by affaan-m/everything-claude-code
Run before PRs, after major changes, and pre-deploy to ensure Django application quality and security.
content-hash-cache-pattern
by affaan-m/everything-claude-code
Cache expensive file processing results (PDF parsing, text extraction, image analysis) using SHA-256 content hashes as cache keys. Unlike path-based caching, this approach survives file moves/renames and auto-invalidates when content changes.
regex-vs-llm-structured-text
by affaan-m/everything-claude-code
A practical decision framework for parsing structured text (quizzes, forms, invoices, documents). The key insight: regex handles 95-98% of cases cheaply and deterministically. Reserve expensive LLM calls for the remaining edge cases.
search-first
by affaan-m/everything-claude-code
Systematizes the "search for existing solutions before implementing" workflow.
swift-actor-persistence
by affaan-m/everything-claude-code
Patterns for building thread-safe data persistence layers using Swift actors. Combines in-memory caching with file-backed storage, leveraging the actor model to eliminate data races at compile time.
swift-protocol-di-testing
by affaan-m/everything-claude-code
Patterns for making Swift code testable by abstracting external dependencies (file system, network, iCloud) behind small, focused protocols. Enables deterministic tests without I/O.
liquid-glass-design
by affaan-m/everything-claude-code
Patterns for implementing Apple's Liquid Glass — a dynamic material that blurs content behind it, reflects color and light from surrounding content, and reacts to touch and pointer interactions. Covers SwiftUI, UIKit, and WidgetKit integration.