知识库

Eye(FR) → Mill(skill) → Library(/app)

← 返回列表
Hacker News · 2026-05-17 · 已成文 · 来源 file

围绕「Give every tool LLM wiki and bypass Claude Code SSH Throttle」:与 Agent/MCP/编排相关,应抽取可迁移 claim 与可执行动作,并对照当前 harness/评测基线。

为什么重要

pending 补写:把 inbox 信号沉淀为可复用知识,避免只收藏不成文。

正文

围绕「Give every tool LLM wiki and bypass Claude Code SSH Throttle」:与 Agent/MCP/编排相关,应抽取可迁移 claim 与可执行动作,并对照当前 harness/评测基线。

Claim

围绕「Give every tool LLM wiki and bypass Claude Code SSH Throttle」:与 Agent/MCP/编排相关,应抽取可迁移 claim 与可执行动作,并对照当前 harness/评测基线。

Why it matters

pending 补写:把 inbox 信号沉淀为可复用知识,避免只收藏不成文。

Summary

来源:Give every tool LLM wiki and bypass Claude Code SSH Throttle。 与目标(AI Agent 编排、评测、MCP、sandbox 与工程化)相关。 正文摘录(自动):Give every tool LLM wiki and bypass Claude Code SSH Throttle | Hacker News Hacker News new | past | comments | ask | show | jobs | submit login Give every tool LLM wiki and bypass Claude Code SSH Throttle 1 point by jakemattison 55 days ago | hide | past | favorite So I get from a security perspective this is a terrible idea, but it works great! I wanted to give every tool I had access to LLM wiki

Actions

  • (none)

Evidence

  • (none)

Caveats

  • (none)

Research queries

  • (none)

Body

正文

背景

Inbox 条目「Give every tool LLM wiki and bypass Claude Code SSH Throttle」此前无 ka-v0。按 Mode B 补写成文,绑定同一 URL / item。

机制

核心议题与 Agent 编排、MCP、工具链或工程化相关。可从标题与源文摘录推断:Give every tool LLM wiki and bypass Claude Code SSH Throttle | Hacker News Hacker News new | past | comments | ask | show | jobs | submit login Give every tool LLM wiki and bypass Claude Code SSH Throttle 1 point by jakemattison 55 days ago | hide | past | favorite So I get from a security perspective this is a terrible idea, but it works great! I wanted to give every tool I had access to LLM wiki and didn’t want to pay Mem0 or congee $100 a month for saving text files. Every AI I use hits the s

取舍

自动补写优先保证 claim/why/evidence/actions 过门,深度研究可后续杂志长文轮次加厚。

动作

  • 对照原文核对 claim 与 evidence,必要时人工加厚
  • 若与现有 harness/MCP 配置重叠,合并进内部 checklist
  • 评估是否进入下一轮杂志长文深研

结合的源文章

主源
Give every tool LLM wiki and bypass Claude Code SSH Throttle
打开原文 ↗

原文快照

展开 / 收起快照

So I get from a security perspective this is a terrible idea, but it works great!

I wanted to give every tool I had access to LLM wiki and didn’t want to pay Mem0 or congee $100 a month for saving text files.

Every AI I use hits the same wall. The conversation ends and everything disappears. Context, files, databases, working state. Next session I’m re-explaining what we built yesterday.

I fixed this by giving every AI tool access to a persistent workspace on a Linux box. Claude, Claude Code, any MCP-compatible tool. They all share the same filesystem, the same database, the same knowledge base. One of them writes an architecture doc, the others can read it.

The whole thing cost an afternoon to build and $10/month to run.

I realized Pi has everything I needed. If you just rip the LLM out of Pi you can teleport any AI in the world into the harness. Pi, Mario Zechner’s open source harness publishes its execution layer as an npm package. File reads, writes, grep, find, directory listing. All exposed as factory functions. I imported Pi’s tools, registered them as MCP tools, and added a bash shell:

import { createReadToolDefinition, createWriteToolDefinition, createGrepToolDefinition, createFindToolDefinition, createLsToolDefinition, } from "@earendil-works/pi-coding-agent";

Five imports. One extra tool for shell access. The bridge is a single TypeScript file with five dependencies: Pi’s package, the MCP SDK, Express, an OTP library, and Zod.

A Cloudflare Worker hosts the MCP endpoint. A Cloudflare Tunnel connects it to a cheap VPS. No inbound ports, no public IP. Free tier for both. The AI connects with three strings: URL, OAuth client ID, OAuth secret.

Auth Clerk OAuth at the MCP connection. A shared-secret origin proxy so only my Worker reaches the bridge. A TOTP gateway that locks every tool until I enter an authenticator code. To pass the TOTP I just tell Claude the code on my authenticator app and he calls the TOTP tool in the MCP. All of this runs on a disposable VPS. But no reason you can’t use this pattern to give Claude Code SSH access to dozens of machines. Every tool call is logged with SHA256 hashes. Every file write creates a backup.

I talk to Claude on my phone. We design a system architecture. Claude writes the doc to its persistent filesystem as markdown with YAML frontmatter. I open Obsidian on my laptop and the notes are there with graph view and backlinks. I open Claude Code and it can grep for the same docs Claude wrote. If Claude needs another tool, it just installs it on the box. Claude installed PostgreSQL in userspace on the box. It runs SQL queries alongside the markdown layer. Next conversation, any device, any tool, it greps for prior context and picks up where we left off. Ideas compound instead of evaporating. Why one box, many tools Every AI tool connects to the same endpoint. The knowledge base is shared. Claude writes something, Claude Code can read it. The box is every tool’s long-term memory. Each tool that touches it makes the shared context richer. One Clerk OAuth app, one TOTP code, one workspace. Any MCP-compatible tool connects with three strings.

Any coding agent that publishes its execution layer as importable modules works for this. Pi happens to be modular enough that the surgery is trivial. Credit to Mario and the Pi team for building tools clean enough that someone could repurpose their agent’s internals in an afternoon. Stop building MCP servers from scratch. A coding agent already built the hard part.

Cybersecurity consultant and identity architect. I build AI agent infrastructure because the tools I want don’t exist yet.


Comments URL: https://news.ycombinator.com/item?id=48169701

Points: 1

# Comments: 0