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

Exploiting LLM Hidden Agency Signal (Â) for Better Tool Calling
A developer discovered that LLMs have a linearly separable hidden state direction called  that predicts tool calls with AUC > 0.94. Using this signal to force tool calls improved Qwen3-1.7B performance from 26.7% to 85% (+58% gain) and reduced no-tool failures from 43% to 2.6%.

CLI-Anything-WEB: Open-source plugin that reverse-engineers any website into a Python CLI for Claude Code
CLI-Anything-WEB is an open-source Claude Code plugin that watches your browser traffic, reverse-engineers the protocol, and generates a full Python CLI with auth, tests, and --json support. 19 sample CLIs included for sites like Reddit, Booking, Airbnb, ChatGPT, and LinkedIn.

Stanford Researchers Release OpenJarvis: A Local-First Framework for On-Device AI Agents
Stanford researchers have released OpenJarvis, a local-first framework for building on-device personal AI agents with tools, memory, and learning capabilities. The project includes GitHub repository and website links for developers to explore.

Claude Debugs and Fixes Its Own MCP Filesystem Server UNC Path Bug on Windows
A developer used Claude Opus to diagnose and patch a bug in the MCP Filesystem Server where UNC network share paths on Windows failed for subdirectory operations. The fix addresses a path validation issue that prevented access to files and folders within UNC shares.