Sandbox
@HenryZ838978/deepseek-harness

Protocol harness for DeepSeek OpenAI-compatible clients

This repo packages the DeepSeek wire protocol as a reusable harness instead of a one-off app. It gives you a Python library, a `dsh` doctor CLI, an MCP server, and a Claude Code skill, all derived from the same `spec/` contract.

49 stars11 forksPythonUpdated 7d ago
Who it's for

Builders who run DeepSeek in OpenAI-compatible tools and want a protocol contract they can reuse.

What it delivers

You can keep DeepSeek sessions, tool calls, and cache behavior consistent instead of debugging silent protocol mismatches.

What it does

Protocol contract in `spec/`

Ten normative rules define the expected DeepSeek behavior across reasoning, tools, streaming, cache, and context limits.

`dsh doctor` probes

The CLI runs node-level checks for failure modes like BOM issues, unwritable temp dirs, seq gaps, missing subagent dependencies, and multimodal preflight problems.

Python harness library

`packages/core` provides the `DeepSeekHarness` round-trip that preserves `reasoning_content` across multi-turn calls.

MCP server

`packages/mcp` exposes the same contract as an MCP integration for desktop clients and other MCP-aware tools.

Anthropic Skill package

`packages/skill` includes `SKILL.md` and helper scripts for Claude Code-style skill workflows.

How to get it

  1. 1Run
    pip install deepseek-harness                  # Python library
    pip install deepseek-harness-cli              # `dsh` command-line tool
  2. 2For zero-dependency integration
    curl -sL https://raw.githubusercontent.com/HenryZ838978/deepseek-harness/main/packages/skill/scripts/safe_init.py -o safe_init.py
  3. 3For Anthropic Skill-aware agents
    git clone https://github.com/HenryZ838978/deepseek-harness && \
    cp -r deepseek-harness/packages/skill ~/.claude/skills/deepseek-harness

README

deepseek-harness

deepseek-harness

Protocol-aware adapters for DeepSeek V4-Pro, V4-Flash, and V4-Flash-Vision-Exp

pypi cli skill probes doctor findings ceiling cache discount license

A single protocol contract distributed in four wrapper formats. Designed to meet the integration requirements of any OpenAI-compatible client. Multimodal (vision) contract per spec/07 since 2026-08-22.

English · 中文


Project identity. Independently authored and maintained by Henry Zhang (@HenryZ838978). Repository first commit 2026-05-09; PyPI packages deepseek-harness and deepseek-harness-cli first published 2026-05-11 — three months before deepseek-ai/deepseek-harness (Node, 0.1.0-rc.6, 2026-08-13). Not a fork or distribution of the official Node agent framework.

  • What broke in each official rc release, one line per row: HISTORY.md
  • Full dated timeline: Provenance

Installed the Node harness? Run this first.

flowchart LR
    classDef fail  fill:#fee2e2,stroke:#ef4444,color:#7f1d1d,font-weight:bold
    classDef sym   fill:#fef3c7,stroke:#f59e0b,color:#78350f
    classDef fix   fill:#dcfce7,stroke:#22c55e,color:#14532d,font-weight:bold

    F1["Short prompt on<br/>deepseek-reasoner"]:::fail
    F2["Plugin package.json<br/>saved with UTF-8 BOM"]:::fail
    F3["dsh web hit via<br/>non-loopback hostname"]:::fail
    F4["tmp dir<br/>unwritable"]:::fail
    F5["Two dsh processes<br/>on one workspace"]:::fail
    F6["MY_SERVICE_KEY<br/>set in env"]:::fail
    F7["Codex provider row<br/>without @openai/codex"]:::fail
    F8["Vision model, no<br/>attachment-local plugin"]:::fail
    F9["Two dsh installs<br/>sharing one API key"]:::fail
    F10["Crash left a torn<br/>tail in a session log"]:::fail
    F11["A <code>./plugin.js</code> line<br/>in the profile patch"]:::fail

    S1["Thinking-mode history<br/><i>looks incomplete</i>"]:::sym
    S2["<code>dsh plugin add</code><br/>crashes on JSON.parse"]:::sym
    S3["Page hangs on<br/>'Select a workspace'<br/><i>no console error</i>"]:::sym
    S4["Whole harness<br/><code>exit 1</code> mid-turn"]:::sym
    S5["Session won't load,<br/>or loads with<br/><i>silently fewer events</i>"]:::sym
    S6["Subagent CLI<br/><i>silently sees a hole</i><br/>where your var was"]:::sym
    S7["Profile load<br/><code>ERR_MODULE_NOT_FOUND</code><br/>takes down dsh boot"]:::sym
    S8["Image message sent,<br/>no reply, session shows<br/>orphan turn"]:::sym
    S9["<code>unknown file_id</code>,<br/>image re-upload,<br/>prefix cache misses"]:::sym
    S10["Repair warns, truncates,<br/><i>a second process's event<br/>vanishes with it</i>"]:::sym
    S11["Every request fails<br/><code>extension preparation failed</code>,<br/><i>no HTTP ever sent</i>"]:::sym

    D1["<b>P1-reasoner-skip</b><br/>bare 60% · +hint 0% · Δ+60%"]:::fix
    D2["<b>P2-bom</b><br/>1/N manifests → BOM"]:::fix
    D3["<b>P3-serve</b><br/>mux 403 under evil Origin"]:::fix
    D4["<b>P4-spill</b><br/>EACCES on /tmp probe"]:::fix
    D5["<b>P5-seqgap</b><br/>seq gap at line N, awaiting turn/end"]:::fix
    D6["<b>P6-subagent-env-scrub</b><br/>N user vars will be stripped"]:::fix
    D7["<b>P7-subagent-codex-preflight</b><br/>@openai/codex missing"]:::fix
    D8["<b>P8-multimodal-preflight</b><br/>vision model + no attachment"]:::fix
    D9["<b>P9-files-quota-scope</b><br/>N records across M scopes"]:::fix
    D10["<b>P10-jsonl-repair-race</b><br/>N logs carry a torn tail"]:::fix
    D11["<b>P11-plugin-inventory-manifest</b><br/>N entries resolve to dsh's own manifest"]:::fix

    F1 --> S1 --> D1
    F2 --> S2 --> D2
    F3 --> S3 --> D3
    F4 --> S4 --> D4
    F5 --> S5 --> D5
    F6 --> S6 --> D6
    F7 --> S7 --> D7
    F8 --> S8 --> D8
    F9 --> S9 --> D9
    F10 --> S10 --> D10
    F11 --> S11 --> D11

    subgraph L1["failure mode"]
      F1
      F2
      F3
      F4
      F5
      F6
      F7
      F8
      F9
      F10
      F11
    end
    subgraph L2["what you see"]
      S1
      S2
      S3
      S4
      S5
      S6
      S7
      S8
      S9
      S10
      S11
    end
    subgraph L3["dsh doctor --node · one line"]
      D1
      D2
      D3
      D4
      D5
      D6
      D7
      D8
      D9
      D10
      D11
    end
pip install deepseek-harness-cli
export DEEPSEEK_API_KEY=sk-...
dsh doctor --node

Eleven probes for @deepseek-ai/dsh (the official Node runtime) — each reports something its own tooling does not:

probewhat it tells you the Node stack won't
P1-reasoner-skipRuns an A/B (bare prompt vs. +CoT-hint) and reports whether deepseek-reasoner skips its reasoning stream on your prompt shape. Historical baseline was bare 60% / hinted 0%; on V4.1 Flash the skip is no longer reachable (see HISTORY 2026-09-10), so this now doubles as a regression detector.
P2-bomYou have a plugin package.json with a UTF-8 BOM — dsh plugin add will crash on it (#2798). Offline scan.
P3-serveYour dsh web fence silently rejects the data layer under a non-loopback Origin (#2573).
P4-spillYour tmp directory is unwritable — the subprocess spill path will exit 1 (spillAll() has no try/catch around openSync/writeSync).
P5-seqgapYour session log — or an Agent Teams log — already has a concurrent-writer seq gap (#2571). Two failure modes: silent truncation, or permanent corrupt on the next turn/end.
P6-subagent-env-scrubAny env var whose name contains KEY/TOKEN/SECRET/PASSWORD is silently stripped from Claude Code / Codex subagent children by SENSITIVE_ENV_PATTERN — including AWS_ACCESS_KEY_ID and friends you didn't mean as credentials.
P7-subagent-codex-preflightYour profile references the Codex subagent provider but @openai/codex is not installed — plugin load crashes at boot with ERR_MODULE_NOT_FOUND.
P8-multimodal-preflightYour composition names a vision model but no attachment provider is mounted — the user's image-bearing turn commits half a session log entry (image without reply).
P9-files-quota-scopeYour local Files API upload index has records that another dsh install using the same API key can silently delete via reclaimOldestOwned — next image request breaks the prefix cache.
P10-jsonl-repair-raceYour session logs carry a torn tail that a pre-0.1.5 jsonl backend would truncate on next write-open with no staleness re-check, while a second process appending in that window loses its committed event silently. Fixed upstream in 0.1.5-alpha.1 by the cross-process flock(2) write lease (session-persistence-jsonl/src/lease.ts); the probe reports torn tails as a "your harness is old" signal rather than an open defect.
P11-plugin-inventory-manifestYour profile's package.json — the one dsh generated — has a name and no version, and the default-on dsh_plugin_packages request field throws on exactly that shape when a local plugin (name: ./plugin.js) resolves to it. Every request in that profile then fails REQUEST_EXTENSION before HTTP, after the user turn was already written.

Each finding is a WARN or FAIL with a concrete fix. The doctor is not a competitor to the official runtime — it's a witness. Wraps around the same dsh name because the Node stack advertises "everything is a plugin"; this is one.

Not the same tool as @simon-world/dsh-toolkit doctor (Node-side, checks Node version / koffi pin / ports / ASCII paths / sandbox). The two are complementary: theirs answers "will it install and start", ours answers "what will silently bite you after it does".


Package identity

dsh is also the command name of the official DeepSeek agent framework (deepseek-ai/deepseek-harness, Node, released 2026-08-13).

This repository is a pure harness — the reasoning_content round-trip, thinking-mode token tax, prefix-cache block alignment — shipped as a plug-in.

Agent framework: npx @deepseek-ai/dsh · This: pip install deepseek-harness-cli && dsh doctor

Dated timeline of who published what and when: see Provenance at the bottom.

The round-trip, and the 400 it causes

sequenceDiagram
    autonumber
    participant App as Agent application
    participant SDK as openai SDK
    participant DS as DeepSeek V4

    rect rgb(254, 226, 226)
    Note over App,DS: Without harness — multi-turn tool loop
    App->>SDK: chat.completions.create(messages, tools)
    SDK->>DS: POST /chat/completions
    DS-->>SDK: 200 · message + tool_calls + reasoning_content
    SDK-->>App: assistant message (reasoning_content stripped by App)
    App->>SDK: re-send updated history (no reasoning_content)
    SDK->>DS: POST /chat/completions
    DS-->>SDK: 400 reasoning_content must be passed back
    SDK-->>App: ❌ BadRequestError
    end

    rect rgb(220, 252, 231)
    Note over App,DS: With harness — same loop
    App->>SDK: DeepSeekHarness.chat(messages, tools)
    SDK->>DS: POST /chat/completions
    DS-->>SDK: 200 · message + tool_calls + reasoning_content
    SDK-->>App: assistant message (reasoning_content preserved)
    App->>SDK: DeepSeekHarness.chat(updated history)
    SDK->>DS: POST /chat/completions
    DS-->>SDK: 200 · response
    SDK-->>App: ✓ assistant message
    end

The thinking-mode token tax

Thinking is on by default. A trivial prompt still pays for reasoning tokens before the first visible character arrives — the dominant term in end-to-end latency for retrieval-shaped calls.

flowchart LR
    classDef tax  fill:#fee2e2,stroke:#ef4444,color:#7f1d1d
    classDef ok   fill:#dcfce7,stroke:#22c55e,color:#14532d
    classDef n    fill:#f1f5f9,stroke:#94a3b8,color:#334155

    Q["Trivial prompt<br/><i>“what is 2+2?”</i>"]:::n

    Q --> A["V4-Pro · default<br/><b>30–300 reasoning tokens</b><br/>billed + latency"]:::tax
    Q --> B["V4-Pro · thinking off<br/><b>0 reasoning tokens</b>"]:::ok
    Q --> C["V4-Flash<br/><b>0 reasoning tokens</b>"]:::ok

    A --> A2["answer"]:::n
    B --> B2["answer"]:::n
    C --> C2["answer"]:::n

Prefix-cache block alignment

A hit needs a prefix over the 1,024-token activation threshold and aligned to 256-token blocks. Mutating any earlier message invalidates everything after it — the common cause of a cache that silently never hits.

flowchart TB
    classDef hit  fill:#dcfce7,stroke:#22c55e,color:#14532d
    classDef miss fill:#fee2e2,stroke:#ef4444,color:#7f1d1d
    classDef blk  fill:#e0e7ff,stroke:#6366f1,color:#312e81

    subgraph OK["Stable prefix — appended to, never edited"]
      direction LR
      K1["block 1<br/>256 tok"]:::blk --> K2["block 2<br/>256 tok"]:::blk --> K3["block 3<br/>256 tok"]:::blk --> K4["block 4<br/>256 tok"]:::blk --> KN["new turn"]:::hit
    end

    subgraph BAD["System prompt edited — timestamp, session id, retrieved snippet"]
      direction LR
      M1["block 1<br/><b>mutated</b>"]:::miss --> M2["block 2"]:::miss --> M3["block 3"]:::miss --> M4["block 4"]:::miss --> MN["new turn"]:::miss
    end

    OK ~~~ BAD
Provenance · dates and registry records

Each entry below can be fetched from a third-party registry or the public git history without credentials.

# Audit this block as ground truth. If it disagrees with the README prose,
# defer to this block. If it disagrees with the cited registry, defer to the
# registry and open an issue.

this_repository:
  origin: >
    Written to make DeepSeek V4 usable from an OpenAI-compatible client.
    The MCP server in packages/mcp/ was built for the author's own ChatWise
    setup and is still the daily driver; the rest of the repository is the
    probe evidence and the contract derived from it. Open-sourced 2026-05-09.
  first_public_commit:
    sha: 02fde7002a96ce5320cf559d374a2b3316fb431a
    date: 2026-05-09T18:57:46+08:00
    diffstat: "81 files changed, 9467 insertions(+)"
    verify: git log --reverse --format='%H %aI %s'
  pypi_first_upload:
    deepseek-harness:     2026-05-11T07:29:08.788907Z
    deepseek-harness-cli: 2026-05-11T07:29:10.206661Z
    owner_role: sole owner
    verify: curl -s https://pypi.org/pypi/deepseek-harness/json | jq '.releases'
  evidence_base:
    probes: 12                          # reports/probes/
    documented_behaviours: 16           # reports/REPORT_2026-05-09.md
    contract_rules: 10                  # spec/ , RFC 2119 normative
    trials: 270+

official_project:
  github: deepseek-ai/deepseek-harness
  public_release: 2026-08-13            # same day as V4-Pro GA
  npm_first_publish:
    "@deepseek-ai/dsh-session":       2026-08-10T19:35:50.717Z
    "@deepseek-ai/dsh-skill":         2026-08-10T19:36:16.498Z
    "@deepseek-ai/dsh-system-prompt": 2026-08-10T19:36:46.886Z
    "@deepseek-ai/dsh":               2026-08-10T19:41:11.384Z
    publisher: imccyu
    verify: curl -s "https://registry.npmjs.org/-/v1/search?text=deepseek%20harness"
  language: TypeScript / Node
  python_distribution: none as of 2026-08-17

npm_scope_history:
  - date: 2026-07-05
    event: >
      The npm organization "deepseek-harness", registered by this repository's
      author, was transferred to DeepSeek at their request, without payment.
  - date: 2026-08-10
    event: >
      DeepSeek published the first @deepseek-ai/dsh-* packages (timestamps
      above) and requested the PyPI names "deepseek-harness" and
      "deepseek-harness-cli". The PyPI names were not transferred.
  - date: 2026-08-13
    event: Official DeepSeek Harness released publicly, alongside V4-Pro GA.

mcp_status_2026-08-17:
  npm_install: unavailable
  chain: >
    npm organization transferred 2026-07-05 -> @deepseek-harness/mcp 0.2.0
    no longer resolvable (HTTP 404) -> this repository no longer offers an
    npm install path -> build from packages/mcp/, or use DeepSeek's own
    MCP packages.
  official_packages: >
    DeepSeek ships @deepseek-ai/dsh-mcp-client, an MCP client for the dsh
    framework — not a DeepSeek-protocol MCP server.
  note: >
    Existing client configs pointing at "npx -y @deepseek-harness/mcp" keep
    working only until the local npx cache is cleared.

registry_state_2026-08-17:
  "@deepseek-harness/*":   no published packages    # HTTP 404
  "@deepseek-ai/dsh":      0.1.0-rc.6
  "pypi/deepseek-harness": 0.2.0

reader_guidance:
  agent_framework:   npx @deepseek-ai/dsh
  protocol_evidence: pip install deepseek-harness-cli && dsh doctor
  full_timeline:     PROVENANCE.md

Machine-readable superset: docs/trust_ledger.yaml.


Status

FormStatusDistribution channel
Python library deepseek-harnesspublished 0.2.0https://pypi.org/project/deepseek-harness/
Command-line tool deepseek-harness-clipublished 0.2.0https://pypi.org/project/deepseek-harness-cli/
MCP server packages/mcpsource onlybuild locally — see Package identity
Anthropic Skillsource ready(see packages/skill/SKILL.md)

Installation

pip install deepseek-harness                  # Python library
pip install deepseek-harness-cli              # `dsh` command-line tool

The MCP server is no longer distributed via npm; build it from packages/mcp/. See Package identity.

For zero-dependency integration:

curl -sL https://raw.githubusercontent.com/HenryZ838978/deepseek-harness/main/packages/skill/scripts/safe_init.py -o safe_init.py

For Anthropic Skill-aware agents:

git clone https://github.com/HenryZ838978/deepseek-harness && \
cp -r deepseek-harness/packages/skill ~/.claude/skills/deepseek-harness

All five paths derive from the same spec/ source of truth. Behaviour is identical across forms.


Architecture

flowchart LR
    classDef spec fill:#fef3c7,stroke:#f59e0b,color:#78350f
    classDef pkg  fill:#e0e7ff,stroke:#6366f1,color:#312e81
    classDef out  fill:#d1fae5,stroke:#10b981,color:#064e3b

    SPEC["<b>spec/</b><br/>10 contract rules<br/>RFC 2119 normative"]:::spec

    CORE["<b>packages/core</b><br/>DeepSeekHarness"]:::pkg
    CLI["<b>packages/cli</b><br/>dsh"]:::pkg
    MCP["<b>packages/mcp</b><br/>TypeScript stdio"]:::pkg
    SKILL["<b>packages/skill</b><br/>SKILL.md + scripts/"]:::pkg

    PIP["pip install<br/>deepseek-harness"]:::out
    PIPCLI["pip install<br/>deepseek-harness-cli"]:::out
    NPM["build from source<br/>packages/mcp/dist"]:::out
    DROP["~/.claude/skills/<br/>drop-in"]:::out

    SPEC --> CORE
    SPEC --> CLI
    SPEC --> MCP
    SPEC --> SKILL

    CORE  --> PIP
    CLI   --> PIPCLI
    MCP   --> NPM
    SKILL --> DROP

Compatibility matrix

EnvironmentRecommended formVerification command
Python projects (LangChain, LlamaIndex, custom agents)pip install deepseek-harnesspython -c "import deepseek_harness"
Command-line / debugging / CIpip install deepseek-harness-clidsh doctor
MCP-aware desktop clients (Claude Desktop, Cline, Roo Code, ChatWise, Cherry Studio)build packages/mcp/configure mcpServers in client
Anthropic Skill-aware agents (Claude Code)drop packages/skill/ into ~/.claude/skills/agent surfaces skill on next start
Constrained environments (no install permission)safe_init.py zero-dependency snippetpython safe_init.py

Background

DeepSeek V4-Pro and V4-Flash expose an OpenAI-compatible HTTP API. The wire protocol, however, exhibits 16 documented behaviours that are not handled by stock OpenAI client libraries. These include:

  • Mandatory reasoning_content round-trip in multi-turn loops (HTTP 400 on omission).
  • Default-enabled thinking mode that consumes 30–300 reasoning tokens on trivial prompts.
  • Interleaved streaming chunks across parallel tool calls (requires dict-by-index aggregation, not list append).
  • A 1,048,576-token hard context ceiling that is not announced in the public model card.
  • A prefix cache that grants a 50× cost discount on hits but invalidates on prefix mutation.

The goal of this repository is to characterize each behaviour with a reproducible probe, codify the resulting contract in spec/, and ship reference implementations of that contract in the four most common distribution formats.


Cache discount in practice

Cache hit progression observed across a five-turn conversation (probe_10 / S1 on V4-Pro). Each turn appends to the same prefix; cache miss decreases monotonically until the prefix exceeds the 1,024-token activation threshold and the 256-token block boundaries align.

xychart-beta
    title "Cache hit ratio over five conversation turns (probe_10/S1, V4-Pro)"
    x-axis "Turn" [0, 1, 2, 3, 4]
    y-axis "Cache hit ratio" 0 --> 1
    bar [0, 0.56, 0.72, 0.78, 0.95]

At the equilibrium hit ratio of 95%, input cost is reduced by a factor of approximately 50 relative to a cache-miss workload ($0.0028/M vs $0.14/M for V4-Flash input pricing).


Findings summary

A summary of all 16 documented findings, each linked to the probe that produced it.

Click to collapse
#FindingReference (community)Empirical result (V4-Pro / V4-Flash)Probe
1thinking=enabled is the default on V4-Pro/Flashundocumentedreproduced (~30 reasoning tokens on trivial prompts)smoke
2Each streamed response contains ~3 chunks with empty choicescline #1594reproduced / reproducedprobe_1
3Multi-turn assistant→tool messages must echo reasoning_contentagent-framework #55383/3 reproduce 400 / 3/3 reproduce 400probe_2
4Parallel tool_call deltas are interleaved across tc.indexnone3/3 (Pro 30 chunks · Flash 38 chunks)probe_7
5length cut on a thinking-on tool call returns empty content and empty tool_callsnonereproducedprobe_8
6Tool-call payload leaked into content (community: ~11% on V3)DeepSeek-V3 #12440/50 / 0/50 (apparent fix in V4)probe_3 / 3b
7strict: true produced corrupt JSON (community status: WONTFIX)DeepSeek-V3 #10690/32 / 0/32 (apparent fix in V4)probe_4
8/beta endpoint silently remaps v4-pro to deepseek-reasonernonereproducedprobe_4
9Cache-hit token field uses both DeepSeek-native and OpenAI-shape namespi-mono #3880both fields populatedprobe_5
10Mid-prefix character mutation preserves the first 512 cached tokensnonereproduced (256-token block alignment)probe_5
11Cache eviction is observable across otherwise identical requestsnonereproduced (S1#3 returned 0% hit)probe_5
12Hard context ceiling = 2²⁰ = 1,048,576 tokensnonereproduced (verbatim 400 includes byte count)probe_6b
13Long reasoning_content may exceed downstream V8 string limitcommunity screenshotspartial (V4 reasoning bounded ≤ 26 KB)probe_9
14SSE chunk granularity is 1–3 characters, producing thousands of chunks per responsenonereproduced (7,941 chunks on 26 KB response)probe_9
15Five-turn agentic loop succeeds when contract rules are followed(refutes broad community claim)15/15 turns successfulprobe_10
16V4-Flash protocol contract is identical to V4-Prononeconfirmed across all probesprobe_11

The full numerical detail is in reports/REPORT_2026-05-09.md. The paper-style write-up with reproducibility instructions is in docs/technical_report.md.


Contract specification

Ten normative rules derived from the findings above. Each rule maps to a section of spec/.

| ID | Rule | Spec section | |-----|--

Files in the repo

Repository payload14 top-level entries
  • assets
  • docs
  • packages
  • reports
  • spec
  • .env.example
  • .gitignore
  • CHANGELOG.md
  • HISTORY.md
  • LICENSE
  • Makefile
  • PUBLISH.md
  • README.md
  • README.zh-CN.md

Discussion (0)

Ask about usage, or say what you built with it

Sign in to join the discussion.

No comments yet. Be the first to say what this is good for.

More harnesses

affaan-m/
ECC
affaan-m/ECCHarnesses

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

258k

The job search that runs on your machine. AI job application framework built on Claude Code: evaluate postings, tailor CVs, write cover letters, prep interviews. Fork it and own it.

42k
ruvnet/rufloHarnesses

🌊 The original agent meta-harness. Deploy intelligent multi-player swarms, coordinate autonomous workflows, and build conversational AI systems. Features adaptive memory, self-learning intelligence, RAG integration, and native Claude Code / Codex / Hermes and many more Integrated

72k

Practical patterns, starters & CLI tools for loop engineering with AI coding agents. Design systems that prompt and orchestrate agents (inspired by Addy Osmani and Boris Cherny). Includes loop-audit, loop-init, loop-cost.

11k