What It Does — A Registry of Skills for Persistent Knowledge
AbsolutelySkilled is a GitHub registry containing 156 structured skill modules you can install into Claude Code. Each skill is a SKILL.md file designed to solve a core frustration: Claude Code's lack of persistent knowledge between sessions. Instead of re-explaining your project's conventions, architecture, or preferred patterns every time you start a new chat or project, you install a skill once. When triggered, Claude Code loads the structured knowledge from the skill file, guiding its behavior consistently.
These aren't just simple prompts. Each skill includes:
- Trigger Conditions: When and how the skill should activate.
- Reference Files: Supporting documentation or examples.
- Evals: 10-15 test cases to verify the skill works correctly.
- Anti-patterns: Explicit guidance on what not to do.
The registry covers a wide range of domains crucial for developers, including system design, Docker, Kubernetes, React, Next.js, PostgreSQL, security review, technical writing, and SEO.
How It Works — Structured Skills as SKILL.md Files
The system works by extending the concept of a CLAUDE.md file—a project-level guide for Claude Code—into reusable, installable modules. You install skills via a command-line tool (npx skills). Once installed, these SKILL.md files sit in your project or a global directory. When Claude Code encounters a task that matches a skill's trigger conditions, it loads the relevant SKILL.md file into its context, applying the pre-defined expertise and rules.
This creates a form of persistent, cross-session memory. The knowledge isn't stored in a model's weights but in accessible, version-controlled files that Claude Code can reference on-demand.
Two Standout Skills: Superhuman and Second Brain
The creator highlights two foundational skills that reimagine the development workflow for AI constraints:
1. Superhuman
This skill rearchitects the entire development lifecycle into a dependency-aware, parallelized process. It doesn't just write code; it manages complex tasks like a project manager. Its 7-phase workflow is:
- INTAKE: Understand the task.
- DECOMPOSE: Break it into a dependency graph (DAG) of sub-tasks.
- DISCOVER: Gather necessary context and files.
- PLAN: Create an execution strategy.
- EXECUTE: Run independent tasks in parallel using sub-agents.
- VERIFY: Enforce Test-Driven Development (TDD) at every step with verification loops.
- CONVERGE: Integrate results.
It maintains a persistent board.md file that survives across sessions and context resets, acting as a project dashboard.
2. Second Brain
This skill creates a persistent, tag-indexed memory system for your agent. It writes learnings to a ~/.memory/ directory that survives across all projects and sessions. To maintain context efficiency, it enforces a 100-line ceiling per memory file and uses wiki-style links for graph navigation. After complex tasks, it auto-proposes new entries for this memory.
Try It Now — Installation and First Steps
Getting started is straightforward using npm/npx:
- Install a single skill (e.g., the
superhumanworkflow):npx skills add AbsolutelySkilled/AbsolutelySkilled --skill superhuman - Install all 156 skills at once:
npx skills add AbsolutelySkilled/AbsolutelySkilled -g
After installation, the skills will be available in your configured skills directory. When you start Claude Code in a project, it will begin to recognize and utilize the installed skills based on their triggers. Start with a focused skill like react-best-practices or docker-compose for your current work, then explore the superhuman skill for larger, multi-file refactors or feature builds.
Why This Changes Your Workflow
This registry directly tackles the "amnesiac agent" problem. By externalizing expertise into installable, version-controlled skill files, you stop losing time on repetitive explanations. Your team can share a core set of skills, ensuring consistency. The superhuman skill, in particular, introduces a structured, parallelized approach to development that leverages Claude Code's ability to manage multiple threads of thought, potentially cutting down the time for large tasks significantly.



