Claude Code Mastery: Open-source config system adds persistent memory and curated skills to Claude Code CLI

What Claude Code Mastery does
Claude Code Mastery is an open-source configuration system designed to address persistent issues with Claude Code CLI. It solves four main problems: sessions starting from zero with no memory of previous conversations, auto-compact destroying critical context, lack of best practice enforcement, and manual setup requirements for every project.
Core features
- Perpetual Memory: A 6-file Memory Bank per project (via MCP) that persists across sessions and survives compaction. Claude reads all files at startup and writes updates after every task, preserving project context, architectural decisions, tech stack details, and progress.
- Smart Hooks (6 lifecycle events): SessionStart restores context automatically, PreCompact saves everything before compaction, PreToolUse blocks dangerous commands (rm -rf, force push), and UserPromptSubmit reminds about skills and Memory Bank on every message.
- 26+ Curated Skills from 5 marketplaces: Superpowers (TDD, debugging, planning, code review, parallel agents), Trail of Bits (security analysis, differential review, supply chain audit), Context Engineering Kit (spec-driven dev, kaizen, reflexion), Shield (automated pentesting, SAST, secrets scanning), plus 3 custom skills (architect-review, context-guardian, production-audit).
- Zero-Config Launcher: Type
claudein any project directory. Memory Bank, .gitignore, session logs, and diagnostics are set up automatically on first run. - Cross-Platform: Supports macOS (zsh), Linux (bash), and Windows (PowerShell) with one installer.
- Customizable: Interactive installer, language selection (en/pt-BR/es), project presets (Node.js, Python, PHP, monorepo), and selective plugin installation.
Testing and installation
The system includes 103 static tests plus 138 Docker integration tests (Ubuntu/Bash, Ubuntu/Zsh, Alpine). It achieved a Shield security score of 100/100 and uses GitHub Actions CI on every push.
Install with:
curl -fsSL https://raw.githubusercontent.com/alissonlinneker/claude-code-mastery/main/install.sh | bashThe repository is at github.com/alissonlinneker/claude-code-mastery and is MIT licensed.
📖 Read the full source: r/ClaudeAI
👀 See Also

Parallel Claude Chat Architecture for Next.js Development
A developer created a system to run multiple Claude AI chats simultaneously on the same Next.js codebase using a shared database table and polling agent, achieving 87% build success rate with zero merge conflicts in one session.

mnemos: A Persistent Memory Layer for AI Coding Agents (Go, MCP-Native, No Python)
mnemos is a Go-based MCP-native memory layer for AI coding agents. The author built a verifier to measure lift: +40% aggregate on read-side scenarios, but only 53% write-side capture rate after iterative fixes.

Off Grid: Utilizing Phone Hardware for Offline AI Applications
Off Grid is an open-source app that uses your phone's hardware for offline AI tasks like text generation and voice transcription.

IUM: MCP Symbol Indexer Cuts AI Agent Token Usage by 15.9x vs grep
IUM indexes codebases into an SQLite matrix of symbol events, exposing exact file:line coordinates, call graph tracing, and semantic search via MCP. Benchmarked against DataFusion (1,538 files) showing 15.9x fewer tokens than grep for equivalent queries.