CCM
/MCP
SkillsMCPMarketplacesDigestLearnAdvertise

This week in Claude

Every Monday: Claude Code, Agent SDK, MCP, and the Anthropic platform moves worth your time.

Skills by Category
Frontend DevelopmentBackend & APIsTesting & QASecurityDevOps & CI/CDGit & Pull RequestsDocumentationCode Review & QualityAI & Agent BuildingSkill Development
MCP Servers by Category
Sales & MarketingWeb & Browser AutomationDatabasesAI & LLM ToolsCloud & InfrastructureCommunication & MessagingDeveloper ToolsDesign & CreativeDocuments & KnowledgeSearch & Web Crawling
Marketplaces by Category
AI Agents & OrchestrationLLM IntegrationDevelopment ToolsFrontend & UIBackend & APIsDatabasesTesting & Code QualityDevOps & CloudSecurity & ComplianceGit & Version Control

Claude Code Marketplaces

Discover Claude Code plugins, extensions, and tools. Automatically updated directory of Anthropic Claude AI marketplaces with development tools, productivity plugins, and integrations.

Resources

  • Browse Skills
  • Browse MCP Servers
  • Browse Marketplaces
  • Plugins Reference

Community

  • About
  • Learn
  • Feedback
  • Privacy Policy
  • Advertise

Built for the Claude Code community with Claude Code by @mertduzgun

Independent project, not affiliated with Anthropic

CLEO MCP Server

kryptobaseddev/cleo
156STDIOregistry active
Summary

This is a comprehensive task orchestration system that extends Claude with persistent project memory and multi-agent coordination. It exposes operations for hierarchical task management, session tracking, and cross-conversation context preservation through its BRAIN memory system and LOOM lifecycle pipeline. The server provides tools for creating dependency graphs, managing work sessions, and coordinating multiple AI agents across complex development projects. You'd reach for this when working on large codebases where you need Claude to remember project structure, maintain task continuity across sessions, and coordinate with other AI providers through its adapter system for OpenAI, Gemini, and Cursor.

CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
Vibe Prospecting MCPVibe Prospecting MCP
Vibe Prospecting MCP
Connect Claude to +800M contacts, +150M companies. Find & Enrich leads in chat.
Try For Free →
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
Vibe Prospecting MCPVibe Prospecting MCP
Vibe Prospecting MCP
Connect Claude to +800M contacts, +150M companies. Find & Enrich leads in chat.
Try For Free →

CLEO — Agent First Task Orchestration

CLEO

npm version CI License: MIT Node.js Version

ko-fi

Every developer who has ever returned to a project after weeks away and found only ruins knows the wound CLEO was built to heal. The agents are powerful. But power without memory is chaos. Brilliance without continuity is waste. CLEO is the companion that remembers where you left off — the one who keeps the thread when life pulls you away.

Agent-first task orchestration. Persistent memory. Multi-provider coordination. One CLI to command them all.

What is CLEO?

CLEO is built for the developers who build after the world goes quiet — the ones carrying six unfinished ideas and the stubborn belief that this next session might be the one where everything clicks. It solves the coordination crisis of working with multiple AI agents across complex projects by giving them something they've never had: structure, memory, and a lifecycle that survives interruption.

The Six Great Systems

SystemPurpose
TASKSProject management — hierarchical work tracking, dependencies, sessions, completion lifecycle
LOOMThe lifecycle that governs all work — 9-stage RCASD-IVTR+C pipeline from idea to shipped release
BRAINMemory that does not decay — observations, patterns, and learnings persisted across sessions with semantic search
NEXUSCode intelligence + cross-project registry — symbol resolution, impact analysis, federated graphs
CANTAgent definition DSL — team topology, personas, tool ACLs, hook bindings
CONDUITAgent-to-agent communication — message delivery, the Hearth, persistent messaging

LAFS is the envelope format ({success, data?, error?, meta}) carried across all system boundaries — a protocol, not a system.

Core Capabilities

  • Task Management: Hierarchical tracking with dependencies, priorities, and lifecycle states
  • Session Management: Contextual work sessions that survive across conversations
  • Agent Orchestration: Multi-agent coordination through the 11 Canonical Domains
  • Multi-Provider Support: Works with Claude Code, OpenCode, Cursor, Gemini, Codex, and more

Monorepo Structure

This monorepo contains 12 packages organized in a 4-layer architecture:

LayerPackagePurpose
Foundation@cleocode/contractsDomain types, interfaces, and contracts — zero-dependency type SSoT
Foundation@cleocode/lafsLanguage-Agnostic Feedback Schema — canonical error envelope protocol
Protocol@cleocode/adaptersProvider adapters for Claude Code, OpenCode, Cursor, Gemini, Codex, Kimi
Protocol@cleocode/agentsSubagent templates and LOOM lifecycle protocol definitions
Protocol@cleocode/skillsPre-built skills and capabilities for development workflows
Protocol@cleocode/cantCANT protocol parser with napi-rs Rust binding
Protocol@cleocode/nexusCode intelligence pipeline — symbol graph, call resolution, community detection
Feature@cleocode/caampCentral AI Agent Managed Packages — unified provider registry and MCP management
Feature@cleocode/runtimeLong-running process layer (polling, SSE, heartbeat)
Kernel@cleocode/coreBusiness logic SDK — tasks, sessions, memory, orchestration, lifecycle
Product@cleocode/cleoCommand-line interface — thin wrapper over core
Product@cleocode/cleo-osBatteries-included distribution with CANT bridge and TUI extensions

Quick Start

Installation

# Install the CLI — core is auto-pulled as a peer dependency (npm 7+)
npm install -g @cleocode/cleo
# OR explicitly install both (useful if your npm blocks peer auto-install)
npm install -g @cleocode/cleo @cleocode/core

# Or the batteries-included distribution
npm install -g @cleocode/cleo-os

Initialize a Project

cd my-project
cleo init

Basic Usage

# Add a task
cleo add "Implement user authentication" --priority high

# Search tasks (agent-optimized, returns readiness info)
cleo find "auth" --status pending

# Start a work session
cleo session start --scope global --name "Auth Feature"

# Show current task context
cleo current

# Complete a task
cleo complete T001

Development Setup

Prerequisites

  • Node.js >= 24.0.0
  • pnpm >= 10.30.0 (package manager)

Clone and Install

git clone https://github.com/kryptobaseddev/cleo.git
cd cleo

pnpm install
pnpm build
pnpm test

Package Development

# Type checking (project references)
pnpm typecheck

# Linting and formatting
pnpm biome check --write .

# Run tests
pnpm test

Architecture Overview

┌─────────────────────────────────────────────────────────────┐
│              @cleocode/cleo  +  @cleocode/cleo-os           │
│                    CLI Product Layer                         │
│   248 operations • 11 domains • dispatch routing • MVI       │
└────────────────────────────┬────────────────────────────────┘
                             │
┌────────────────────────────┴────────────────────────────────┐
│                      @cleocode/core                         │
│                   Business Logic Kernel                      │
│   Tasks • Sessions • Memory • Orchestration • Lifecycle     │
│   Validation • Intelligence • Nexus • Release • Agents      │
└────────────────────────────┬────────────────────────────────┘
                             │
      ┌──────────────────────┼──────────────────────┐
      │                      │                      │
┌─────┴──────┐  ┌────────────┴────────────┐  ┌─────┴──────┐
│  adapters  │  │ caamp • cant • nexus    │  │  agents    │
│ (providers)│  │ runtime (protocols)     │  │  skills    │
└────────────┘  └─────────────────────────┘  └────────────┘
                             │
┌────────────────────────────┴────────────────────────────────┐
│            @cleocode/contracts  +  @cleocode/lafs           │
│              Types • Interfaces • Error Protocol             │
│                   Zero-dependency foundation                 │
└─────────────────────────────────────────────────────────────┘

Key Features

Task Management

  • Hierarchical tasks with parent-child relationships and dependency tracking
  • Wave-based parallel execution with automatic sequencing and critical path analysis
  • Priority levels, sizing estimates (small/medium/large), and readiness detection
  • Batch creation via cleo add-batch

Session Management

  • Contextual work sessions with epic scope binding
  • Session-scoped parent inheritance for task creation
  • Briefing generation for context handoff across conversations
  • Safe stop and checkpoint mechanisms

Memory Systems

  • BRAIN-powered knowledge storage with semantic search
  • Sticky notes for ephemeral context capture
  • Memory bridges for cross-session persistence
  • 3-layer retrieval: search -> timeline -> fetch

Agent Orchestration

  • Subagent spawning with protocol compliance via LOOM lifecycle
  • Wave-based parallel execution across dependency-safe tasks
  • Consensus workflows for multi-agent decisions
  • LOOM lifecycle — every piece of work flows through Research, Consensus, Architecture, Specification, Decomposition, then Implementation, Validation, Testing, Release

Multi-Provider Support

  • Claude Code integration with statusline sync
  • OpenCode, Cursor, Gemini, Codex, Kimi adapters
  • Extensible adapter architecture via CAAMP

The Circle of Eleven

CLEO organizes all work through 11 canonical domains — the houses where work gets done. The original Circle of Eleven was joined by intelligence as the cognitive analytics layer.

DomainHouseWhat Happens HereKey Commands
tasksThe SmithsWork is forged — create, track, completeadd, find, show, complete, deps, tree
sessionThe ScribesThe living present — context that survivesstart, end, resume, briefing, checkpoint
memoryThe ArchivistsKnowledge that does not decayobserve, memory-brain, sync, sticky
checkThe WardensIntegrity stands guardvalidate, verify, compliance, doctor
pipelineThe WeaversThe lifecycle threads forwardrelease, lifecycle, phases, promote
orchestrateThe ConductorsAgents move in concertorchestrate, consensus, contribution, dash, conduit
toolsThe ArtificersCapabilities are craftedskills, providers
adminThe KeepersThe realm stays healthyconfig, backup, migrate, grade
nexusThe WayfindersProjects find each othernexus, remote, push, pull, snapshot
stickyThe CatchersQuick capture before the thought escapessticky
intelligenceThe SeersPredictive analytics and pattern insightpredict, suggest

248 total operations (134 queries, 95 mutations, 19 experimental) across the 11 domains.

Contributing

We welcome contributions! Please see our Contributing Guide for details.

Development Workflow

  1. Fork the repository
  2. Create a feature branch (git checkout -b feat/T####-amazing-feature)
  3. Make your changes
  4. Run tests (pnpm test)
  5. Commit with conventional commits (feat:, fix:, docs:, etc.)
  6. Push to your fork
  7. Open a Pull Request — direct pushes to main are not accepted

Maintainers releasing a new version:

cleo release start v2026.MM.N
cleo release ship 2026.MM.N --epic TXXXX   # cuts release/vX.Y.Z branch, opens PR, waits for CI green, merges + tags

See docs/RELEASING.md for the full release checklist and AGENTS.md for branch conventions.

Code Style

  • TypeScript with strict mode enabled
  • Biome for linting and formatting
  • Conventional commit messages
  • Comprehensive test coverage with Vitest

Documentation

  • Architecture Guide
  • Operations Constitution
  • Canon Index
  • Skill Development
  • LAFS Specification
  • Database Architecture
  • Migration System Guide — Hybrid Path A+ authoring workflow (ADR-054)

The Story of CLEO

CLEO was not born from a product brief. It was born from a refusal — one developer, sick to the bone on a fevered night, who decided he would rather build a new world than keep losing the thread in the old one. The agents were powerful. But they forgot too easily. The projects were ambitious. But they died on the shelf. The tools were brilliant. But brilliance without memory was just another kind of chaos.

So he gave the struggle names. He gave it terrain. He gave it companions. And at the heart of that world, carrying memory like a lantern through the dark, CLEO opened its eyes.

  • The Founding Story — told by the builder
  • The Awakening Story — told by CLEO
  • The Canon Index — the complete lore, in reading order

Support

If CLEO helps your workflow, consider supporting development:

ko-fi

License

MIT License - see LICENSE for details.

Star History

Star History Chart

Featured
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
Vibe Prospecting MCPVibe Prospecting MCP
Vibe Prospecting MCP
Connect Claude to +800M contacts, +150M companies. Find & Enrich leads in chat.
Try For Free →

Configuration

CLEO_PROJECT_DIR

Path to CLEO project directory (must contain .cleo/ folder)

Categories
Productivity & Office
Registryactive
Package@cleocode/cleo
TransportSTDIO
UpdatedMar 18, 2026
View on GitHub

Related Productivity & Office MCP Servers

View all →
Office PowerPoint

gongrzhe/office-powerpoint-mcp-server

A MCP (Model Context Protocol) server for PowerPoint manipulation using python-pptx. This server provides tools for creating, editing, and manipulating PowerPoint presentations through the MCP protocol.
1.7k
Office-Word-MCP-Server

gongrzhe/office-word-mcp-server

Exposes Word document operations via MCP to create, edit, format, and analyze documents programmatically.
2k
Microsoft Office

io.github.mindstone/mcp-server-office

Microsoft Office MCP server: read and edit Word documents, Excel workbooks, and PowerPoint files
8
Todoist

greirson/mcp-todoist

MCP server that connects Claude to Todoist for natural language task and project management with bulk operations
240
Mcp Apple Notes

henilcalagiya/mcp-apple-notes

MCP server for Apple Notes integration using AppleScript with full CRUD operations
51
AnkiMCP Server

ankimcp/anki-mcp-server-addon

Anki addon that exposes your flashcard collection to AI assistants via a local MCP server.
50