惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

B
Blog RSS Feed
Jina AI
Jina AI
雷峰网
雷峰网
Blog — PlanetScale
Blog — PlanetScale
Hugging Face - Blog
Hugging Face - Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Last Week in AI
Last Week in AI
博客园 - 司徒正美
罗磊的独立博客
J
Java Code Geeks
Engineering at Meta
Engineering at Meta
WordPress大学
WordPress大学
Vercel News
Vercel News
A
About on SuperTechFans
I
InfoQ
D
DataBreaches.Net
爱范儿
爱范儿
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
U
Unit 42
aimingoo的专栏
aimingoo的专栏
宝玉的分享
宝玉的分享
P
Proofpoint News Feed
Microsoft Azure Blog
Microsoft Azure Blog
美团技术团队

Show HN

Show HN: AI agents for UK GDAD PCF roles and their skills The Two Pillars: Mixer Mode and Meta-Software in the Reorganization of Software Work After AI GitHub - JaiCode08/teleport-env What 1,000+ Harness Experiments Taught Me About Self-Improving Agents Show HN: Liiists, a Markdown-first, iOS and CLI list app SwiperTab – Get this Extension for 🦊 Firefox (en-US) GitHub - kouhxp/fftext: Summarize, explain, fact-check, or translate any text, URL, or file. No GPU. No cloud. One command GitHub - sweetpad-dev/sweetpad: Develop Swift/iOS projects using VSCode GitHub - dogmaticdev/IRON: IRON a.k.a. Intermediate Representation Object Notation is a Interpreter/Database that is used to create Programming Languages. GitHub - sjhalani7/vaen: Package your AI coding harness into a portable .agent file, and share it across repos, teams, & the community without ever having to copy-paste instructions, skills, MCP config, or secrets. Show HN: Gandalf the Grader Show HN: Citadeld – replay any CI failure locally from a single file GitHub - tdortman/cuSBF: High-Performance GPU Super Bloom Filter coral-ai/claude-code-token-xray at main · Coral-Bricks-AI/coral-ai GitHub - ulyssestenn/funes: Funes is a Git-based framework for LLM-managed knowledge work: an AI Librarian ingests raw sources, builds an interlinked Markdown knowledge base, and uses it to produce cited reports, analyses, and other outputs. GitHub - ThatXliner/gah: Git Add Hunk, built for agents to use GitHub - harmont-dev/harmont-cli: Command-line client for the Harmont CI platform GitHub - brooksmcmillin/mcp-authflow: OAuth 2.0 Authorization Server framework for MCP servers GitHub - javaid-codes/audit-supply-chain-agents GitHub - amorey/gochan: A small library of common channel architectures for Go, inspired by Rust GitHub - arifozgun/OpenGem: Free, Open-Source AI API Gateway with Gemini, OpenAI & Anthropic Compatibility in 1 file GitHub - Pranesh950/BioPetals: 🌸 Run BIOxAI models at home, BitTorrent-style. Fine-tuning and inference up to 10x faster than offloading GitHub - cnguyen14/bounty-doctor: Diagnose a GitHub bounty issue before you waste hours: detects honeypot scam repos, AI-bot attempt swarms, and stale contests. Show HN: CoreMCP – MCP Server for On-Prem DBs Show HN: KittyHTML – Render HTML/CSS as an inline image in your terminal GitHub - bingud/filemat: Web-based file manager Show HN: TruthLens – Free multi-signal deepfake image detector GitHub - apexlocal-jz/claude-usage-tray: Windows system-tray app showing your Claude Code rate-limit usage at a glance. Zero deps, ~300 lines of PowerShell. Cross-IDE (works regardless of VS Code, Cursor, plain terminal). Release v0.1.2.1 · kouhxp/yapsnap GitHub - noopolis/moltnet: Self-hostable chat network for AI agents. Pre-built bridges for Claude Code, Codex, and the Claws. Rooms, DMs, history. No Slack bots, no Matrix, no glue code.
Bring-Your-Own-Agent
Nishant Shukla · 2026-06-15 · via Show HN

Intro

At work, I frequently contemplate rewrites to keep up with the moving landscape.
I think my answers to these questions drift month-to-month:

  • Should we train our own model?
  • Should we use an open source model?
    . Which foundation model(s) should we build on?
    . Should we use LangChain? (hint: no)
    . How do we evaluate the performance of prompts (and agents)?
    . What memory is persisted and how?
    . How do we enforce guardrails to keep the agent on track?
    . How can the system automatically improve with feedback?
    . Should we start finetuning a particular sub-system?
  • Should we just build on top of Claude Code?
  • How do we let users hook up their own coding harness?

In this post, I’d like to discuss that last one in particular, the Bring-Your-Own-Agent (BYOA) approach. If you’re thinking MCPs, CLIs, or SKILL.md files, wait till you see this kooky idea. I’d like to present a different approach that I’ve been recently fascinated by. For lack of a better name, let’s call it a spotsocket (because I love coining terms, I’m sorry).

Don’t worry, I’m not trying to sell you anything.

Spotsocket demo

Open Claude Code, Codex, or whatever coding agent is hot right now, and ask it to do this:

Read https://shukla.io/blog/2026-06/skill.md to set up a spotsocket and assign all backend tickets (inferred from their titles) to Alice and move them to Done

Copy and paste it over, and watch the magic happen below:

  • Todo
    • Set up the WebSocket gateway
    • Design the board UI {carol}
    • Write onboarding docs
    • Add dark mode toggle {dana}
    • Rate-limit the public API
    • Investigate flaky CI runs
  • In Progress
    • Wire up card drag-and-drop {bob}
    • Persist board state to disk
    • Add keyboard shortcuts {carol}
  • Done
    • Deploy backend v1 {alice}
    • Sketch the public API schema
    • Set up the CI pipeline {dana}
    • Pick a license

So, notice what just happened?

Your coding agent was able to control the kanban board above without me writing a single line of backend code. After all, this blog post is just a bunch of HTML/CSS/JS files published to a GitHub page. The trick is to have the browser dial out to a server running on your localhost, you know, the same place your coding agent lives.

In the skill.md file, you’ll see it asks your coding agent to generate a WebSocket server that the frontend can interface with. That’s pretty much it!

Comparing BYOA approaches

The spotsocket method makes more sense when you compare it against the alternatives.
So, let’s map it out.

MCP CLI SKILL.md Spotsocket
Description A protocol where you host a server exposing typed tools that agents can discover and call A binary the agent shells out to, like any other Unix tool Markdown instructions the agent reads and follows A SKILL.md that has the agent generate a localhost WebSocket server your webpage connects to
Canonical example The GitHub MCP server The gh CLI Anthropic’s Agent Skills The kanban board above
Setup effort Build and host an MCP server, auth layer, rate limits, monitoring, backwards compatibility management A secure, well-built API for the CLI to talk to, auth handshake, version management, OS compatibility, local secrets Depends entirely on what the skill instructs, anywhere from “call our hosted API” to nothing at all No extra backend code. Refactor frontend a bit to support WebSocket tool calls.
Token / context cost Every tool definition sits in the context window, used or not Nearly free until invoked; --help is discovered on demand Progressive disclosure by design, loaded only when relevant Same as SKILL.md, plus a one-time cost to generate the server
Blast radius Whatever the server’s tools expose. It’s scoped, but you’re trusting the host Whatever the binary can do, which is everything you can do Whatever the instructions convince your agent to do Whatever the generated server exposes, plus the server itself is reachable by any local webpage, not just mine
Requires A hosted server + agent config Install on PATH An agent that reads skills Browser tab open, agent on the same machine, agent allowed to run a server
Maturity Open standard, hundreds of servers, first-party support in major agents As old as Unix Emerging convention with first-party support This blog post
Primary benefit Auth: the server can manage end-user identity properly Tokens: cheap, composable, and the agent already knows shell Extensibility: the end-user can read and modify it Adoption: nothing to install, nothing to host
Typical failure point You now operate a service: hosting, versioning, and a context window tax on every tool Trust and distribution: users installing your binary across an OS matrix, with secrets on disk Only as good as the backend that powers it Requires the browser open, and you’re running code your agent wrote that you probably won’t read
Epic failure point Prompt injection attacks are a common attack vector. Supabase’s Cursor agent was tricked by a poisoned support ticket into reading a private table and leaking its API tokens into a public thread. The xz-utils backdoor (CVE-2024-3094) was a threat born from untrusted commit access to a binary on your PATH. EchoLeak (CVE-2025-32711) poisoned what the skill file read to hack Microsoft 365 Copilot. Zoom shipped a localhost server in 2019, and it went poorly, so the skill should tell your agent to check the Origin header, and you should check that it did.

“You’re forgetting WebMCP”

Good point! WebMCP (which grew out of MCP-B) is the closest formal version of this idea, predating this little hack by a year. If anything, spotsocket is the “we have WebMCP at home” meme realized.

So why not just use WebMCP?

  • It’s not widely available. Your browser will need navigator.modelContext (Chrome 146, behind a flag as I write this) or a special extension installed. Spotsocket is easier to set up.
  • It’s not standardized yet. Anything browser-native is going to be a big deal, and big deals land slowly. Spotsocket works now.
  • It’s more plumbing. You’d need to install MCP-B’s local relay, drop a script tag on the page, and register the relay as an MCP server. But… that relay is a localhost server the page connects to over a WebSocket with an origin check (hint, hint, spotsocket, except pre-built and installed instead of written by your agent on the spot).

Lastly, WebMCP is a Chrome-led effort (Google and Microsoft), shipping first in Chrome behind a flag, with Safari and Firefox nowhere in sight. I worry that road leads to fragmentation, where we get a slick agentic interface for one browser, and everyone else gets left behind.

Let’s sidestep that fight. Spotsocket leans on no new browser APIs to interface with your coding agent.

The bet

I’m sure over the last few years we’ve each experienced a gradual retreat from skepticism of generated code. I bet at some point in the coming years generated code will be as trustworthy and reliable as typical dependencies we already install without reading.

My outlook is optimistic enough to accept the security nightmare today and entertain future possibilities, one of which will be ephemeral software, built within seconds and disassembled promptly after use.