MxLore Skills
Claude Code skills for mxLore β AI-assisted workflows, orchestration, code review, and knowledge management
Ask AI about MxLore Skills
Powered by Claude Β· Grounded in docs
I know everything about MxLore Skills. Ask me about installation, configuration, usage, or troubleshooting.
0/500
Reviews
Documentation
mxLore Skills
AI-powered development workflows for Claude Code. These skills turn Claude into a structured engineering partner β with persistent memory, architectural decisions, and automated quality checks.
What is mxLore? A self-hosted MCP server that gives your AI assistant a brain. Specs, plans, decisions, lessons learned β stored in MariaDB, recalled automatically. See mxLore in action at mxlore.dev
Skills Overview
Core Workflow
| Skill | What it does |
|---|---|
/mxOrchestrate | Session orchestrator. Manages workflow stacks, ad-hoc tasks, team agents. Tracks what you're working on across sessions. |
/mxSave | Persist everything. Session notes, lessons learned, state sync. Run before closing Claude Code. |
/mxPlan | Create structured implementation plans with milestones, tasks, and dependencies. |
/mxSpec | Write specifications with acceptance criteria, constraints, and design decisions. |
/mxDecision | Document architectural decisions as ADRs. Track rationale, alternatives, and consequences. |
Quality & Analysis
| Skill | What it does |
|---|---|
/mxDesignChecker | Review code and designs against specs. Finds inconsistencies, missing error handling, architectural violations. |
/mxBugChecker | Find bugs with proof. Every finding requires a code reference β no false positives from guessing. |
/mxHealth | Knowledge DB consistency checks. Finds stale docs, orphaned relations, broken summaries. |
Setup & Migration
| Skill | What it does |
|---|---|
/mxSetup | One-command onboarding. Installs all skills, proxy, hooks, and connects to your mxLore server. |
/mxInitProject | Bootstrap a new project in the knowledge DB. Creates CLAUDE.md, registers in MCP. |
/mxMigrateToDb | Migrate existing local docs (specs, plans, decisions) into the MCP knowledge DB. |
Quick Start
Option A: Via mxSetup (recommended, ~30 seconds)
- Set up your mxLore server first
- Download the setup skill:
# Windows (PowerShell) mkdir "$env:USERPROFILE\.claude\skills\mxSetup" -Force Invoke-WebRequest -Uri "https://raw.githubusercontent.com/MicrotronX/mxLore-skills/main/mxSetup/SKILL.md" -OutFile "$env:USERPROFILE\.claude\skills\mxSetup\SKILL.md"# Linux / macOS mkdir -p ~/.claude/skills/mxSetup curl -o ~/.claude/skills/mxSetup/SKILL.md https://raw.githubusercontent.com/MicrotronX/mxLore-skills/main/mxSetup/SKILL.md - Start Claude Code and run
/mxSetup YOUR_API_KEY - Enter your server URL when prompted (e.g.
http://localhost:8080/mcp) - mxSetup installs all skills, hooks, proxy, and configures the MCP connection
- Restart Claude Code β done, everything works
Option B: Manual install
Clone this repo and copy skills to your Claude Code config:
git clone https://github.com/MicrotronX/mxLore-skills.git
cp -r mxLore-skills/mx* ~/.claude/skills/
cp -r mxLore-skills/hooks/* ~/.claude/hooks/
cp -r mxLore-skills/reference/* ~/.claude/reference/
Then connect MCP manually:
claude mcp add -s user --transport http mxai-knowledge \
"http://localhost:8080/mcp" \
--header "Authorization: Bearer YOUR_API_KEY"
What's Included
mxBugChecker/ β Bug finder with verification
mxDecision/ β ADR documentation
mxDesignChecker/ β Code & design review
rules/ β Review rules (Delphi, web, general, spec)
mxHealth/ β Knowledge DB health checks
mxInitProject/ β Project bootstrapping
mxMigrateToDb/ β Local-to-MCP migration
mxOrchestrate/ β Session orchestrator
workflows.md β Workflow templates
mxPlan/ β Implementation planning
mxSave/ β Session persistence
mxSetup/ β Developer onboarding
mxSpec/ β Specification writing
hooks/ β 8 automation hooks (recall gate, orchestration, agent inbox)
reference/ β Delphi, PHP/web, encoding guides
How Skills Work
Skills are slash commands in Claude Code. Type /mxPlan and Claude creates a structured implementation plan in your knowledge DB. Type /mxSave and your entire session is persisted β decisions, findings, lessons learned.
The skills communicate with your mxLore server via MCP (Model Context Protocol). Everything is stored in MariaDB, searchable across projects, and recalled automatically in future sessions.
You: /mxPlan add user authentication
Claude: Creates a plan with milestones, tasks, risks
Stores it in MariaDB via MCP
Links it to related specs and decisions
Next session:
Claude: Recalls the plan, your progress, and relevant lessons
Picks up exactly where you left off
Requirements
- mxLore MCP Server (self-hosted)
- Claude Code CLI or IDE extension
- MariaDB 10.6+
Links
- mxlore.dev β Product overview, features, comparison
- MicrotronX/mxLore β Server source code
- MicrotronX/mxLore-skills β This repo
License
Same as mxLore β BSL 1.1. Non-commercial production use is free.
