remnic

作者 joshuaswarren已验证

Open-source memory and context for user-aware agents: scoped memory, provenance, retrieval quality, correction, boundaries, evals, and MCP/HTTP access.

177
Stars
22
Forks
TypeScript
语言
2026/8/23
添加时间

⚠️ 第三方软件声明

本 Skill 为第三方开源软件,独立托管于 GitHub。SkillTip 仅为信息目录,不控制或维护底层仓库。所显示的安全检查为自动化且范围有限,安装前请自行审查源码。

阅读服务条款

安装

添加到你的 Claude Code skills 目录:

# Add to your Claude Code skills
git clone https://github.com/joshuaswarren/remnic

快速入门

使用 remnic 等 Skills 的指南。

安全报告

已验证

上次扫描:—

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

README.md

Remnic

npm version License: MIT Sponsor

Open-source, local-first memory and context for AI agents. One memory store, every agent.

Website: remnic.ai - guide library, comparisons, benchmarks, and changelog.

  • Your files, your machine. Every memory is a plain markdown file with YAML frontmatter on your disk. No database, no cloud dependency, no subscription. cat, grep, edit, and version-control your memory with the tools you already use.

  • One memory across every tool. OpenClaw, Claude Code, Codex CLI, Cursor, ChatGPT (developer mode), Hermes, Replit, Pi, omp, Factory Droid, and any MCP client read and write the same store. Tell one agent a preference; every agent knows it.

  • Automatic extraction and recall. Remnic watches conversations, distills durable knowledge, and injects the right context back when it is needed.

  • Sharp retrieval. Hybrid search (BM25 + vector + reranking) over rebuildable indexes, with graph recall, memory-worth scoring, and per-result provenance you can inspect.

  • MIT licensed. Free, open, and built to be forked.

Build for Good 2026: What Helps Me

Explain what helps once. Share only what you choose. Stop sharing at any time.

What Helps Me is a private support passport built on Remnic. It turns selected memories into short first-person cards. The owner reviews every word before a helper can see it.

No OpenAI API key is required. Manual cards need no model. Draft and question calls use the owner's existing Remnic route, including an OpenClaw gateway or a local model.

Watch the narrated 102-second product story or read the full Build for Good entry. The walkthrough always shows a Synthetic replay banner. It is not live-call proof. The separate live runner exercises the real standalone server and model flow. Its receipt validator checks internal consistency, not independent proof.

What we built

  • An owner workspace for selecting exact memories, drafting cards, editing each draft, and approving each card.

  • Exact-version share links that last from five minutes through seven days.

  • A helper view that shows approved cards only and cites the card behind each grounded answer.

  • Immediate Stop sharing controls. Every helper request checks durable grant state again.

  • A provider-neutral model path. It uses Remnic's existing OpenClaw gateway, local, compatible remote, and optional direct OpenAI routes.

  • A strict live run record for draft, approval, sharing, question, revocation, and the final locked read. It stores no private text, secrets, or raw model IDs.

The framing comes from NHS England's health and care passport guidance. The NHS guidance says the person owns the passport, chooses its contents, and chooses who sees it. What Helps Me applies those rules to a broader self-advocacy tool. It is not a medical record, care plan, IEP, diagnosis tool, or emergency guide.

Who it helps

What Helps Me is for people who often need to explain how others can support them. It also helps trusted helpers act on clear, current guidance without seeing the person's full memory store.

How it will be used

  • The owner selects one to 20 notes.

  • The owner checks a clear consent box or writes a card by hand.

  • The configured model drafts up to eight cards.

  • The owner edits and approves each card.

  • The owner shares exact card versions for a set time.

  • The helper reads the guide or asks a grounded question.

  • The owner selects Stop sharing to lock the link.

The model is the scribe. The person is the author.

How Codex helped

Codex traced Remnic's existing memory, model, HTTP, MCP, and browser contracts. It then built the feature as a seven-layer PR stack. Codex also wrote adversarial tests, checked WCAG states at four widths, and built the privacy-safe live run record. The owner approval and revocation rules remain deterministic core code. A model cannot bypass them.

How to run the project

Run the no-key synthetic walkthrough in about five minutes:

git clone https://github.com/joshuaswarren/remnic.git
cd remnic
pnpm install --frozen-lockfile
pnpm exec playwright install chromium
npm run demo:support-passport:replay

Open the printed loopback URL. The replay uses synthetic data and labels itself on every screen.

Run the standalone live flow with a local, direct, or compatible model route:

npm run demo:support-passport:live -- \
  --config ./remnic.config.json \
  --output ./tmp/support-passport-demo
npm run demo:support-passport:validate-receipt -- \
  --receipt ./tmp/support-passport-demo/receipt.json

The validator checks the self-reported receipt schema and hash consistency. It does not convert that receipt into independent attestation.

For an existing OpenClaw install, keep the current gateway providers and model auth. Enable the feature, owner HTTP bridge, and gateway route in openclaw.json:

{
  "plugins": {
    "entries": {
      "openclaw-remnic": {
        "config": {
          "modelSource": "gateway",
          "openaiApiKey": false,
          "supportPassport": { "enabled": true },
          "agentAccessHttp": {
            "enabled": true,
            "host": "127.0.0.1",
            "port": 4318,
            "authToken": "${OPENCLAW_REMNIC_ACCESS_TOKEN}",
            "principal": "passport-owner"
          }
        }
      }
    }
  }
}

Set OPENCLAW_REMNIC_ACCESS_TOKEN to a private local bearer token. This token protects the browser bridge. It is not a model provider key. Open /remnic/ui/what-helps-me/ on the configured Remnic HTTP origin. Remnic uses the OpenClaw gateway model chain and its existing provider auth.

The standalone live runner does not boot an OpenClaw host. Use the real browser flow above to exercise an existing OpenClaw gateway setup. No OpenAI API key is required. Manual cards and sharing need no model. Draft and question requests return 503 provider_unavailable when no model route is configured.

OpenAI Build Week 2026: Remnic Relay

Correct once. Every agent learns.

Remnic is shared memory for AI agents. Remnic Relay is the human-governed correction loop we built for OpenAI Build Week: it exposes the stale belief behind an agent failure, shows where that belief came from, puts the proposed replacement behind human approval, and proves a brand-new agent learned the approved correction from Remnic.

The demonstration follows an online-payment failure. One Codex agent reads the current rule while another confidently applies an older retry rule. Relay opens an evidence X-Ray connecting the recalled memory to the failing test, presents a before-and-after memory diff for approval, preserves the old belief as superseded, and then starts a fresh agent with no handoff. The mission is only complete when that agent recalls the replacement and turns the same payment test green.

What we built during Build Week

  • a versioned contract for conflicts, evidence, corrections, lineage, and fresh-agent verification;

  • a human-gated correction engine with append-only supersession;

  • Mission Control views for conflict inspection, evidence X-Ray, approval, propagation, and the final mission receipt;

  • an isolated four-role Codex mission runner using only a cleared synthetic Remnic instance; and

  • a dependency-free judge package that binds the recorded agent run, product UI, synthetic fixture, and verification receipt into one reproducible story.

How Codex and GPT-5.6 were used

Codex collaborated across the new extension: contract modeling, correction engine, Mission Control, isolated runner, adversarial tests, evidence sealing, and judge packaging. GPT-5.6 also powers the demonstrated product workflow itself through four isolated Codex roles: Scout reads the accepted rule, a Builder acts on stale memory, a correction agent proposes the replacement, and a fresh Builder proves the approved memory propagated without an agent handoff. Agents propose; a human approves; the test proves the result.

Install, supported platforms, and testing

The fastest judge path uses the committed synthetic mission and requires no dependency install, model call, account, or credential:

git clone https://github.com/joshuaswarren/remnic.git
cd remnic
node scripts/relay/judge-package.mjs serve

Open the printed loopback URL, compare the current and stale beliefs, open the X-Ray, review and approve the proposed correction, and follow the fresh agent through the passing payment test. Verify the same evidence from the terminal:

node scripts/relay/judge-package.mjs verify
node scripts/verify-relay-judge-package.mjs
  • Judge package: Linux with procfs and Node.js 22.12 or newer; Linux x64 is independently clean-room verified.

  • Mission Control: Chrome/Chromium 151 verified at desktop and mobile sizes, including keyboard-only and reduced-motion flows.

  • Live isolated mission runner: Linux x64 with Codex CLI 0.144.4 or newer and the repository development dependencies. This is not required for the judge experience.

  • macOS and Windows: use the submission video/gallery or run the verifier in a supported Linux environment. The executable verifier fails closed where equivalent filesystem-safety primitives are unavailable.

Remnic's core memory engine, integrations, and benchmark fra

常见问题

What is remnic?

remnic is an open-source ai agents skill for AI coding assistants such as Claude Code, Codex CLI, and ChatGPT, built by joshuaswarren. Open-source memory and context for user-aware agents: scoped memory, provenance, retrieval quality, correction, boundaries, evals, and MCP/HTTP access. It has 177 GitHub stars.

Is remnic safe to use?

Yes. remnic 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 remnic?

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

What programming language is remnic written in?

remnic is primarily written in TypeScript. It is open-source under joshuaswarren on GitHub, so you can review or fork the full source.

Are there alternatives to remnic?

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 remnic against similar tools.

评论 (0)

暂无评论,成为第一个分享想法的人!

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 智能体ai-agentsanthropicclaude-code
查看详情
15

An agentic skills framework & software development methodology that works.

234,96620,863Shell
AI 智能体ai-agentsbrainstorming
查看详情

hermes-agent

by NousResearch

10

The agent that grows with you

234,43747,175Python
AI 智能体ai-agentsagent-orchestration
查看详情

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 智能体ai-agentsanthropicclaude-code
查看详情

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 智能体claude-codeai-tools
查看详情

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 智能体
查看详情

开发者还喜欢

基于喜欢此 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 智能体ai-agentsanthropicclaude-code
查看详情
15

An agentic skills framework & software development methodology that works.

234,96620,863Shell
AI 智能体ai-agentsbrainstorming
查看详情

hermes-agent

by NousResearch

10

The agent that grows with you

234,43747,175Python
AI 智能体ai-agentsagent-orchestration
查看详情

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 服务器apisai-tools
查看详情

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 智能体ai-agentsanthropicclaude-code
查看详情

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 智能体claude-codeai-tools
查看详情