AbsolutelySkilled Registry Adds 156 Production-Ready Skills for Claude Code

AbsolutelySkilled is a registry of structured skill modules for Claude Code that addresses the lack of persistent knowledge between sessions. Instead of starting from scratch each time, you install skills once and they guide Claude Code's behavior across all future sessions.
How Skills Work
Each skill is a SKILL.md file containing structured knowledge that Claude Code loads when triggered. These aren't just prompts—they include:
- Trigger conditions
- Reference files
- Evals (10-15 test cases per skill)
- Anti-patterns
Notable Skills
The registry includes 156 skills covering:
- System design
- Docker and Kubernetes
- React and Next.js
- PostgreSQL
- Security review
- Technical writing
- SEO mastery
Key Skills Highlighted
Superhuman
This skill reimagines the development lifecycle for AI constraints with:
- Work decomposition into dependency-graphed DAGs of sub-tasks
- Parallel execution of independent tasks via sub-agents
- TDD enforcement at every step with verification loops
- Persistent
board.mdthat survives across sessions and context resets - 7-phase workflow: INTAKE → DECOMPOSE → DISCOVER → PLAN → EXECUTE → VERIFY → CONVERGE
Second Brain
A persistent tag-indexed memory system with:
~/.memory/directory that survives across ALL projects and sessions- 100-line file ceiling for context efficiency
- Wiki-linked graph navigation
- Auto-proposed learnings after complex tasks
Installation
Install individual skills:
npx skills add AbsolutelySkilled/AbsolutelySkilled --skill superhuman
Or add everything at once:
npx skills add AbsolutelySkilled/AbsolutelySkilled -g
The project is available on GitHub at https://github.com/AbsolutelySkilled/AbsolutelySkilled, and the creator is seeking feedback on the skill format and suggestions for additional skills.
📖 Read the full source: r/ClaudeAI
👀 See Also

nervx: CLI tool reduces Claude Code token usage by analyzing codebase structure
nervx is a pip-installable CLI tool that parses repositories with tree-sitter, builds a SQLite graph of functions and imports, and generates a NERVX.md structural map. It automatically adds instructions to CLAUDE.md that teach Claude to use nervx navigation, reducing grep searches by 65% and output tokens by 48% in testing.

Rever UI Cloner: AI-Optimized Alternative to HTML Scraping for UI Replication
Rever UI Cloner is an API endpoint that provides AI agents with clean design blueprints instead of raw HTML, avoiding context window bloat and UI hallucination issues. It uses the x402 payment protocol requiring a 1 USDC micro-transaction on Base network for agent-to-agent payments.

Built AI Forensic Accounting Software with My Dad — CaseTrail Automates Financial Fraud Detection
A father-son team built CaseTrail, an AI-powered forensic accounting tool that ingests bank statements and identifies anomalies. The blog details integration with LLMs for transaction analysis.

engram: Claude memory plugin with salience-gated capture and dream cycles
engram is a Claude memory plugin that filters observations at capture time using 5 salience dimensions, persisting only high-scoring events to SQLite with no LLM calls in scoring. It features automatic injection through 5 hooks and dream cycles that extract recurring workflows at session end.