explaingit

parcadei/continuous-claude-v3

3,769PythonAudience · developerComplexity · 4/5LicenseSetup · hard

TLDR

Continuous Claude is a framework that supercharges the Claude Code CLI with 109 skills, 32 sub-agents, and automatic session handoffs so your AI coding assistant never loses context between conversations.

Mindmap

mindmap
  root((Continuous Claude))
    Core features
      Session handoffs
      Memory system
      TLDR code index
    Components
      109 skills
      32 sub-agents
      30 hooks
    Setup
      Python 3.11
      Docker database
      Claude Code CLI
    Benefits
      No context loss
      Auto quality checks
      Natural language use
Click or tap to explore — scroll the page freely

Code map

Detail Auto

An interactive map of this repo's files and how they connect — its source is parsed live in your browser. Click Visualize to build it.

filefunction / class

Things people build with this

USE CASE 1

Keep full project context across multiple Claude Code sessions using automatic structured handoff notes

USE CASE 2

Run automated code quality checks on every file save using pre-wired hooks without manual intervention

USE CASE 3

Use natural-language requests to trigger specialized sub-agents for debugging or code review without memorizing slash commands

USE CASE 4

Build a semantic index of a large codebase so Claude can understand it without reading every file into context

Tech stack

PythonPostgreSQLDockerClaude Codeuv

Getting it running

Difficulty · hard Time to first run · 1day+

Requires Python 3.11+, the uv package manager, Docker for PostgreSQL, and the Claude Code CLI, a guided 12-step wizard walks through installation.

MIT license, use and modify freely for any purpose including commercial projects.

In plain English

Continuous Claude is a configuration framework that sits on top of Claude Code, the AI coding assistant's command-line tool. It exists to solve a specific problem: when you use Claude Code long enough in one session, the conversation history gets compressed and Claude loses the context of earlier decisions. Continuous Claude works around this by writing structured handoff notes at the end of each session, which the next session reads to pick up where things left off. The project's motto is "compound, don't compact." The framework installs 109 skills, 32 specialized sub-agents, and 30 hooks into your Claude Code configuration. Skills are reusable commands for common tasks like committing code, running quality checks, or kicking off a debugging workflow. Hooks are scripts that run automatically at certain moments, such as after you edit a file, to catch errors early without waiting for tests. Sub-agents handle specific kinds of work in isolated context windows so their activity does not crowd out your main conversation. A key feature is what the project calls TLDR code analysis: instead of reading entire source files into context, the system builds a semantic index that lets Claude understand a codebase without burning tokens on every file. There is also a memory system backed by a PostgreSQL database that extracts lessons from each session and surfaces them at the start of the next one. You do not need to memorize slash commands to use it. When you type a natural-language request, a hook injects a reminder about which skills and agents are relevant, and Claude decides which to invoke. Direct slash commands like /fix or /build still work for users who prefer them. Setup requires Python 3.11 or later, the uv package manager, Docker for the database, and the Claude Code CLI. A wizard script guides you through a 12-step installation. The project is licensed under MIT. The full README is longer than what was shown.

Copy-paste prompts

Prompt 1
I've installed Continuous Claude. How do I use the TLDR code analysis feature to index my codebase so Claude can answer questions about a specific module without loading all the files into context?
Prompt 2
Walk me through the Docker database setup step of Continuous Claude's 12-step installation and explain how the PostgreSQL memory system stores and retrieves lessons from previous sessions.
Prompt 3
I want to write a custom hook for Continuous Claude that runs mypy type checking after every Python file edit. Show me the hook configuration format and the script structure I need.
Prompt 4
Explain exactly how Continuous Claude's session handoff notes work, what information gets written at the end of a session and how the next session reads and uses it.
Prompt 5
I have Continuous Claude installed but I'm getting context errors. How do I check which sub-agents are currently active and reset the session state cleanly?
Open on GitHub → Explain another repo

← parcadei on gitmyhub — every repo by this author, as a profile.

Verify against the repo before relying on details.