synaphex
v3.2.0
Published
Project memory management for Claude Code — memorize, recall, and link project knowledge
Readme
synaphex v2.0.0
Multi-agent task automation for Claude Code. Synaphex provides a complete pipeline for code generation, research, and review with human oversight.
Quick Start
npm install -g synaphex
synaphex --checkFor detailed setup, see INSTALLATION.md.
What It Does
Synaphex automates tasks using a 6-agent pipeline:
- Examiner — Analyzes your codebase and project memory
- Researcher — Researches unfamiliar technologies (optional)
- Planner — Creates detailed implementation plan
- Coder — Generates and applies code changes
- Answerer — Handles architectural questions and escalations
- Reviewer — Validates changes and provides feedback
All tasks are user-orchestrated — you control when each step runs.
Usage
In Claude Code, use slash commands:
/synaphex:create Create a new project
/synaphex:task Run a task through the pipeline
/synaphex:memorize Analyze codebase and update memory
/synaphex:remember Link parent project memory
/synaphex:settings View configurationExample:
/synaphex:task
Task: "Add user authentication with JWT tokens"
Research: YesInstallation & Setup
- INSTALLATION.md — Install on macOS, Linux, Windows and configure IDE plugins
Documentation
For New Users
- Getting Started (5 min) — Quick start guide
- How-To Guide — Common task workflows
- Examples — Real-world scenarios
Reference
- ARCHITECTURE.md — System design, agent pipeline, state machine, memory system
- CLI-REFERENCE.md — All commands with options
- TROUBLESHOOTING.md — Error recovery and debugging
- Workflow Guide — Detailed workflow documentation
Migration & IDE Integration
- MIGRATION.md — Upgrade from v1.x to v2.0.0
- Antigravity Integration — Use with Antigravity IDE
- VSCode Integration — Use with VSCode
Project Memory
Synaphex manages project knowledge at ~/.synaphex/<project>/:
.synaphex/
├── settings.json # Agent configuration
├── memory/ # Project knowledge
│ ├── MEMORY.md # Index
│ ├── architecture.md # System design
│ ├── conventions.md # Coding standards
│ └── patterns.md # Common patterns
└── tasks/ # Task artifacts
└── task_<slug>/
├── task-meta.json
├── analysis.md
├── plan.md
└── research.mdChild projects can link parent memory for consistency:
synaphex task-remember parent-project my-projectInstallation Methods
From npm (Recommended)
npm install -g synaphex
synaphex --checkFrom Source
git clone https://github.com/cyhunblr/synaphex.git
cd synaphex
npm install
npm run build
npm linkVia Claude Code Plugin
- Open Claude Code settings
- Navigate to Plugins → Available
- Search for "synaphex"
- Click Install
Uninstallation
# Remove npm package
npm uninstall -g synaphex
# Remove IDE plugins
# - Claude Code: Settings → Plugins → Synaphex → Uninstall
# - VSCode: Extensions → Synaphex → Uninstall
# - Antigravity: Settings → Extensions → Synaphex → Remove
# Remove all project data
rm -rf ~/.synaphexVersion History
v2.0.0 (April 2026)
- User-orchestrated task workflow
- 6-agent pipeline with validation
- Comprehensive documentation suite
- State machine with error recovery
- Question escalation and decision tracking
- Multi-project memory inheritance
For full changelog, see CHANGELOG.md.
Support
- Questions? See TROUBLESHOOTING.md
- Need help? Check HOW-TO-GUIDE.md
- Report issues — GitHub Issues
- Discuss features — GitHub Discussions
License
See LICENSE for details.
