late-cli

by mlhherVerified

Stop degrading your model's reasoning. A minimal, zero-config AI coding agent. Enforced ephemeral subagents keep context pure. From tiny local models up to Sol, Fable and Kimi K3.

411
Stars
43
Forks
Go
Language
8/23/2026
Added
View on GitHubDownload ZIP

⚠️ Third-Party Software Notice

This skill is third-party open-source software developed and hosted independently on GitHub. SkillTip is an informational directory and does not control or maintain the underlying repository. Any security checks displayed are automated and limited in scope. Review the source code before installing.

Read the Terms of Service

Installation

Add to your Claude Code skills directory:

# Add to your Claude Code skills
git clone https://github.com/mlhher/late-cli

Getting Started

Guides for using skills like late-cli.

Security Report

Verified

Last scanned: —

{
  "status": "PASSED",
  "issues": []
}

README.md

Late

English | 简体中文

Stop degrading your model's reasoning.

A minimal, zero-config AI coding agent.
Enforced ephemeral subagents retain model intelligence and keep context pure.
From tiny local models up to Sol, Fable, and Kimi K3.
Get real work done with any LLM.

Homebrew Release DeepWiki

Outperforming Claude Code and Codex for Local LLM Workflows — Agent Native

"Late-CLI is mindblowing... I'm shocked that the token usage is so minimal, I keep expecting a big bill from DeepSeek's API." — GitHub Discussions

"The same model feels smarter with Late." — Reddit

Built with Late: Late is primarily developed inside Late itself.


Late Orchestrator planning a multi-phase implementation and spawning the first subagent
Late Orchestrator forming a plan and spawning atomic subagents for surgical edits.

10-Second Quickstart

A single, statically compiled binary. Zero dependencies. No Python venvs, no NodeJS.

# Linux / macOS (Homebrew)
brew tap mlhher/late && brew install late

# Universal Fallback (Linux / macOS / Windows WSL)
curl -sfL https://raw.githubusercontent.com/mlhher/late-cli/main/install.sh | bash

# Run instantly in any project
cd your-project
late

(Arch Linux: yay -S late-cli-bin | Manual Binaries (incl. native Windows))

The Architectural Bottleneck

The Problem: Standard coding agents try to do everything inside a single, shared context window. Every compile error, lint failure, and even file write piles up in the KV cache. As the context fills with garbage, the model's intelligence actively degrades. You blame the model, but it's an architecture failure.

The Late Solution: Late splits the brain. It enforces a strict boundary between planning and execution and actively compartmentalizes agents identities and objectives.

                              [ User Prompt ]
                                    │
                                    ▼
┌──────────────────────────────────────────────────────────────────┐
│    MAIN ORCHESTRATOR (~1,000 Token System Prompt)                │
│ Always planning. Analyzes intent, maps layout, forms master plan.│
│ Context window remains 100% pure (Signal Only).                  │
└──────┬────────────────────────────────────────────────────┬──────┘
       │ (Spawns)                                           │ (Spawns)
       ▼                                                    ▼
┌────────────────────────────────┐           ┌────────────────────────────────┐
│ EPHEMERAL SUBAGENT: Coding     │           │ EPHEMERAL SUBAGENT: Research   │
│ - Executes exact-match diffs   │           │ - Scrapes & synthesizes data   │
│ - Absorbs lint/write/retry     │           │ - Absorbs raw data bloat       │
└──────────────┬─────────────────┘           └────────────────┬───────────────┘
               │                                              │
               ▼                                              ▼
      [ CONTEXT DESTROYED ]                          [ CONTEXT DESTROYED ]
               │                                              │
               └───────────► [ Returns Outcomes ] ◄───────────┘
                                      │
                                      ▼
                    ( 🔄 Orchestrator plans & continues )

The orchestrator’s context grows only from what actually matters: your exact instructions and the definitive results. Everything the subagent did to get there is wiped from memory. The same model feels smarter in Late because it reasons purely from signal, never noise.

The Feature Matrix

LateClaude CodeOpenCodeThe Weekly Clone
WorkflowAutonomous OrchestrationManual togglingManual togglingBlind execution/Manual toggling
ImplementationsEphemeral coder subagents (Wiped)Floods main contextFloods main contextFloods main context
ExplorationsEphemeral researcher subagents (Wiped)Floods main contextFloods main contextFloods main context
KV-CacheRuthless KV-cache management (No prompt-reprocessing)Brute-force dumpingBrute-force dumpingBrute-force dumping
System Prompt~1,000 tokens (Always planning)10,000+ tokens10,000+ tokens~300-1000+ tokens (No workflow)
DependenciesZero-dependency static binaryNode.jsNode.jsPython / Node.js
Setup RequiredNone (OOTB llama-server support)Anthropic OAuthMandatory JSON tweaksEndless YAML/TOML/JSON configs
Built ForBuilders wanting 10x throughputEnterprise expense accountsTinkering with settingsChasing GitHub stars

Model Connectivity

Late is model-agnostic.

Local Models (Zero Config): Works out-of-the-box. Late targets llama.cpp on port :8080 (the default for llama-server) with zero configuration required.

Cloud Providers (DeepSeek, Claude, GPT, Kimi, GLM, OpenRouter):

export OPENAI_BASE_URL="your-api-url"
export OPENAI_API_KEY="your-api-key"
export OPENAI_MODEL="model-name"

📖 Read the Quickstart Guide to find out how to persist these settings and for MCP setup, Agent Skills, Git Worktrees, Keybindings and more.

More Features

  • Hybrid Model Routing: Architect the plan with a massive reasoning model (e.g., GPT 5.6, Kimi K3, GLM 5.2), then automatically spawn subagents to execute the implementation using fast, cheap local models (e.g., Gemma 4).
  • Exact-Match Diffs: Strict search/replace blocks with autonomous self-healing on mismatch. Edits fail loud. We never silently corrupt your files.
  • Agent Skills Support: Extend Late's capabilities by using third party Agent Skills. No configuration required.
  • MCP Integration: Natively map external Model Context Protocol servers directly into Late via standard I/O.
  • Context-Aware Search: Native search tool that automatically respects .gitignore and .llmignore to prevent flooding the context window with irrelevant files.
  • Stateful Resilience: The Orchestrator maintains continuous session history on disk. Close your terminal, reboot your machine, and pick up exactly where you left off.
  • Git Worktree Support: Run independent, parallel agent instances across multiple branches without context bleeding.
  • Human-in-the-Loop: Read-only commands are auto-approved for velocity. Mutations hard-stop for [y/N]. Features Session, Project, and Global trust scopes with TTL decay.

License

Built to create engineering leverage, not to supply free infrastructure for AI startups.

  • Free for Builders: Use Late freely to write code for any project, including commercial ones. Your generated output is yours.
  • Commercial Infrastructure: You may not monetize Late itself. Wrapping the orchestration engine into a paid service requires a commercial agreement. (Converts to GPLv2 on Feb 21, 2030).

Frequently Asked Questions

What is late-cli?

late-cli is an open-source ai agents skill for AI coding assistants such as Claude Code, Codex CLI, and ChatGPT, built by mlhher. Stop degrading your model's reasoning. A minimal, zero-config AI coding agent. Enforced ephemeral subagents keep context pure. From tiny local models up to Sol, Fable and Kimi K3. It has 411 GitHub stars.

Is late-cli safe to use?

Yes. late-cli passed SkillsLLM's automated security scan — a dependency vulnerability audit plus prompt-injection heuristics — with no high-severity issues. You can read the full report in the Security Report section on this page.

How do I install late-cli?

Clone the repository with "git clone https://github.com/mlhher/late-cli" and add it to your Claude Code skills directory (see the Installation section above).

What programming language is late-cli written in?

late-cli is primarily written in Go. It is open-source under mlhher on GitHub, so you can review or fork the full source.

Are there alternatives to late-cli?

Yes. SkillsLLM lists many other AI Agents skills you can browse and compare side by side. Open the AI Agents category from the badge at the top of this page, or use the Related Skills and comparison links further down to weigh late-cli against similar tools.

Comments (0)

No comments yet. Be the first to share your thoughts!

ECC

by affaan-m

10

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

242,21936,702JavaScript
AI Agentsai-agentsanthropicclaude-code
View details
15

An agentic skills framework & software development methodology that works.

234,96620,863Shell
AI Agentsai-agentsbrainstorming
View details

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

185,94028,768JavaScript
AI Agentsai-agentsanthropicclaude-code
View details

cc-switch

by farion1231

3

A cross-platform desktop All-in-One assistant for Claude Code, Codex, OpenCode, OpenClaw, Grok Build & Hermes Agent. Only official website: ccswitch.io

128,8688,826Rust
AI Agentsclaude-codeai-tools
View details

claude-code

by anthropics

Claude Code is an agentic coding tool that lives in your terminal, understands your codebase, and helps you code faster by executing routine tasks, explaining complex code, and handling git workflows - all through natural language commands.

120,03119,897Shell
AI Agents
View details

Developers Also Liked

Based on votes and bookmarks from developers who liked this skill

ECC

by affaan-m

10

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

242,21936,702JavaScript
AI Agentsai-agentsanthropicclaude-code
View details
15

An agentic skills framework & software development methodology that works.

234,96620,863Shell
AI Agentsai-agentsbrainstorming
View details

n8n

by n8n-io

12

Fair-code workflow automation platform with native AI capabilities. Combine visual building with custom code, self-host or cloud, 400+ integrations.

201,88160,308TypeScript
MCP Serversapisai-tools
View details

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

185,94028,768JavaScript
AI Agentsai-agentsanthropicclaude-code
View details

cc-switch

by farion1231

3

A cross-platform desktop All-in-One assistant for Claude Code, Codex, OpenCode, OpenClaw, Grok Build & Hermes Agent. Only official website: ccswitch.io

128,8688,826Rust
AI Agentsclaude-codeai-tools
View details