
Mx
- 2 repo stars
- Updated August 3, 2026
- MaxWolf-01/agents
Multi-session workflow for autonomous, long-term work. Intent tracking, knowledge persistence, session continuity, and alignment verification.
About
mx is a Claude Code skill in the Automation & Workflows category. Multi-session workflow for autonomous, long-term work. Intent tracking, knowledge persistence, session continuity, and alignment verification.
- mx
- Automation & Workflows
- AI-coding skill
Mx by the numbers
- Data as of Aug 4, 2026 (Skillselion catalog sync)
/plugin marketplace add MaxWolf-01/agents/plugin install mx@MaxWolf-01Add your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| repo stars | ★ 2 |
|---|---|
| Last updated | August 3, 2026 |
| Repository | MaxWolf-01/agents ↗ |
What it does
Multi-session workflow for autonomous, long-term work. Intent tracking, knowledge persistence, session continuity, and alignment verification.
README.md
mx — Agent Workflow Plugin
Markdown-based issue tracking, research artefacts, knowledge persistence, and session continuity for multi-session work.
Core Concepts
Tasks (agent/tasks/) — Markdown issue tracking: intent, assumptions, done-when. Not session logs. Committed to project repo.
Research (agent/research/) — Point-in-time investigation snapshots. Linked from tasks. Gitignored.
Knowledge (agent/knowledge/) — Persistent reference. Updated via /distill (code-grounded) or /learnings (session-grounded). Committed.
Transcripts (agent/transcripts/) — Exported sessions, tool calls and thinking stripped. Gitignored.
Handoffs (agent/handoffs/) — Curated session summaries for targeted continuation. Rare. Gitignored.
Wiki-links ([[name]]) connect everything. Hierarchy from links, not folders.
Commands
| Command | Purpose |
|---|---|
/task [name] |
Create or pick up a decision record |
/research [topic] |
Investigate a question, produce a research artefact |
/reflect |
Post-implementation within-session reflection — friction, assumptions, what you'd do differently |
/roast |
Bird's-eye critical review of codebase architecture, coupling, code smells, structural debt |
/distill [scope] |
Sync knowledge with code reality (always in a fresh session) |
/learnings |
Extract gotchas/patterns into knowledge (within session) |
/transcript |
Save session transcript for later pickup |
/recap |
Status report surfacing decisions and open questions |
/todos |
Overview of active task files |
Skills
| Skill | Purpose |
|---|---|
| implement | Loads coding best practices and principles. For the mechanical part — translating an idea into clean code. Not always-on; loaded when it's time to write code. |
| codex | Second opinion from a different model (OpenAI Codex). Packages context and gets an independent critique. Usable standalone or layered into other commands (e.g., /roast fans out codex sub-agents for diverse review). |
| handoff | Curated session summary for continuation in a new session |
| session-name | Generate long, descriptive, searchable session names for /rename |
| restore-sessions | Recover old sessions after crashes or when tmux history is lost |
| tyro-cli | Patterns and features for building CLIs with tyro — documentation for humans and LLMs, --help best practices |
Planned
| Name | Type | Purpose |
|---|---|---|
| init-knowledge | command | Bootstrap a knowledge base for an existing project from scratch. Sequential, not parallel — writing good knowledge requires deep understanding. Planned after distill improvements. |
How This Gets Used
Most sessions don't need ceremony. You talk to the agent, work through a problem, ship it.
/research is the default entry point for non-trivial work. It shifts the model into investigation mode instead of jumping to implementation. Research artefacts separate sources and findings from the task itself — "these sources → these conclusions" — keeping issues clean while preserving the evidence trail. They also serve as a searchable, compact audit trail over thoughts and resources, far more accessible than digging through session transcripts. Discussion of approaches, goals, and intent refinement happens in chat afterward.
/task is for things that need to survive context loss. New features, multi-session work, complex problems that branch into multiple research questions. Most quick fixes and single-session bug fixes don't need a task file.
/distill is periodic maintenance — always in a fresh session, since it needs to analyze the full change set plus broader knowledge context.
/learnings is within-session — extract insights into knowledge while the context is still hot.
Knowledge Structure
Flat files connected by wiki-links. Hubs (project overview in CLAUDE.md, domain entry points) create short paths to any topic. Knowledge files describe what IS — grounded in code, not aspirational.
Local development:
rm -rf ~/.claude/plugins/cache/MaxWolf-01/mx/0.1.0
ln -s /path/to/mx ~/.claude/plugins/cache/MaxWolf-01/mx/0.1.0
claude plugin update mx@MaxWolf-01 replaces the symlink.