By andrehuang
OpenClaw-inspired enhancements for Claude Code -- multi-agent safety, session continuity, task management, and three-tier memory architecture
Session continuity — save structured task state so the next conversation picks up where you left off. TRIGGER when the user says /handoff, "save progress", "let's pause here", "wrap up", or is ending a complex multi-step session. Also trigger when resuming: "pick up where I left off", "check handoffs", "what was I working on".
Personal task manager — track work across sessions with a persistent task board, daily logs, and cross-project awareness. TRIGGER when the user says /manager, "what should I work on", "track this task", "daily review", "what's my status", "plan this out", or asks about task priorities and progress across sessions.
OpenClaw-inspired enhancements for Claude Code -- better multi-agent coordination, session continuity, task management, and memory architecture.
OpenClaw is an open-source personal AI assistant with sophisticated multi-agent systems, persistent memory, and proactive behavior. Claude-Claw distills its best patterns into a Claude Code plugin that makes Claude behave more like a reliable personal manager.
| Skill | What it does |
|---|---|
/handoff | Session continuity -- saves structured task state (objective, progress, files modified, pending work, blockers) so the next conversation picks up exactly where you left off. |
/manager | Personal task manager -- persistent task board with status, add, plan, review, and context modes. Tracks work across sessions with daily logs and cross-project awareness. |
| Principle Set | What it covers |
|---|---|
| Multi-Agent Safety | 6 rules for safe concurrent agent work: scoped file ownership, no stash/branch switching, commit scope discipline, conflict avoidance. |
| Memory Architecture | 6 principles codifying a three-tier memory system (global / project-local / daily logs) with cross-project search and pre-compaction flush. |
Always-on rules that activate when relevant, invisible otherwise:
claude plugin install --url https://github.com/andrehuang/claude-claw
/handoff
Writes a structured handoff file with your current objective, progress, files modified, pending work, key decisions, and resume instructions. Next session, say "pick up where I left off" and Claude reads the handoff.
/manager add Refactor auth middleware to use JWT
/manager status
/manager plan Migrate database from PostgreSQL to SQLite
/manager review
/manager context
During complex work, Claude appends notable events to memory/daily/YYYY-MM-DD.md:
# Daily Log -- 2026-03-28
- 10:30 -- Started refactoring auth middleware; key files: src/auth/middleware.ts
- 11:15 -- Decision: use JWT instead of session cookies (rationale: stateless scaling)
- 14:00 -- PR #42 merged. Handoff saved for remaining auth-v2 work.
At session start, Claude reads today's and yesterday's logs for continuity.
Claude-Claw codifies a three-tier memory system:
| Tier | Scope | What goes here |
|---|---|---|
| Global | All sessions | User identity, routines, cross-project knowledge |
| Project-local | One project | Task state, handoffs, evaluations, project decisions |
| Daily log | One day, one project | Ephemeral events: decisions, files touched, problems encountered |
This plugin distills patterns from OpenClaw, an open-source personal AI assistant with:
Claude-Claw adapts these ideas for Claude Code's architecture -- no gateway needed, just better behavior through skills, principles, and rules.
MIT
Own this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge. GitHub access is read-only (username + org membership).
Sign in to claimOwn this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge. GitHub access is read-only (username + org membership).
Sign in to claimBased on adoption, maintenance, documentation, and repository signals. Not a security audit or endorsement.
npx claudepluginhub andrehuang/claude-clawStrategic research thinking agents — idea evaluation, project triage, and structured brainstorming inspired by Carlini's research methodology
Multi-agent orchestrator for academic writing: 12 specialist agents and 30 writing principles for review, research, drafting, polishing, bibliography auditing, and literature surveys.
Persistent memory system for Claude Code with enforced context
Cross-session Save/Load, and Ultrawork inspired by oh-my-opencode with Ralph Loops
Persistent project workspaces for AI agents — task tracking, artifact storage, and semantic retrieval
Multi-project context management: switch projects, save/load sessions. Designed for non-CLI interfaces (Cowork desktop, Telegram).
Cotask — task management with TASKS.md kanban dashboard
Plugin-safe Claude Code distribution of Antigravity Awesome Skills with 1,561 supported skills.