Meltbox Guide Docs Start free →

Comparison · for people who run coding agents

Meltbox vs. building it yourself

You could wire agent notifications, a review flow, and shared secrets out of ntfy, Slack webhooks, a pile of .env files, and a kanban board. Plenty of people have. Here's what that stack actually costs — and where a control plane earns its keep.

Written for the engineer who already tried the DIY route. No hype — the DIY stack works; the question is what it costs to keep working.


The reader

If you run five agents, you've already felt this

You have Claude Code (or Codex, or both) doing real work across a few repos. The bell doesn't fire when it stops, so you tab away and lose fifteen minutes getting back into flow. You have a kanban tab you update by hand, a .env in every repo holding the same Stripe key, and a Slack channel where a webhook posts "agent done" into the void. It works. It's also five things you now maintain.

This page isn't "throw that away." It's the honest ledger: build the pieces yourself and see the real bill, then decide.

Route A — do it yourself

The DIY stack, actually working

Here's the real version, not a strawman. Four moving parts, each genuinely usable on its own.

1 · Push notifications with ntfy

ntfy is a good tool — HTTP pub-sub, a phone app, free, self-hostable. Publishing is one curl; the topic name is the "auth":

publish a notification

curl -d "Claude Code needs your input in repo/api" ntfy.sh/my-agents

Wire it into Claude Code's Stop / Notification hook so it fires when the agent finishes or asks permission:

~/.claude/settings.json (hook)

{ "hooks": { "Notification": [
  { "hooks": [ { "type":"command",
    "command":"curl -d \"agent needs you\" ntfy.sh/my-agents" } ] }
] } }

Subscribe on your phone in the ntfy app. Now you get a buzz. Good — that's the notification solved, per machine, per hook you maintain.

2 · A place to see what happened — Slack webhook

An incoming webhook posts a line to a channel:

post to Slack

curl -X POST -H 'content-type: application/json' \
  -d '{"text":"agent-3 finished PR #214 — needs review"}' \
  https://hooks.slack.com/services/T000/B000/xxxx

Now there's a log. But Slack is a feed, not a decision surface: you still open the terminal or the PR to actually see the diff and answer. And "which of these three approaches should it take?" doesn't fit in a webhook — there are no buttons that mean anything to the agent waiting on you.

3 · The keys — a .env in every repo

Your agents need Stripe, an ad account, a database. So the key goes in the file:

repo-a/.env · repo-b/.env · repo-c/.env

STRIPE_KEY=sk_live_51H...redacted
GOOGLE_ADS_TOKEN=ya29...redacted

Every agent that needs the key can now read it — and so can anything the agent runs, your shell history, and whatever ends up in the model's context window. Rotate the Stripe key and you're editing three files and hoping you got them all. Want to cut off one agent? There's no "one agent" to cut off — the key is just sitting there.

4 · Keeping track — a kanban board you update by hand

Trello, a Notion board, a markdown file. It's a real board — and it's a board you move cards on, because the agents don't know it exists. It goes stale by lunch.

Credit where due

Each piece is legitimately fine in isolation. ntfy for one agent on one laptop is genuinely all you need. The cost isn't any single tool — it's that you now own the glue, and the glue is where secrets leak and decisions fall through.

The bill

What the DIY stack actually costs

Route B — run them on Meltbox

The same jobs, on a control plane

Meltbox is one authenticated place your agents push decisions to and pull secrets from — built to be operated by agents and decided by you. The commands below are the real ones (docs.meltbox.ai).

Do it yourself

Notify · review · secrets · track

ntfy hook + Slack webhook + .env×N + a hand-updated board — four tools, four things to maintain, keys in plaintext.

Meltbox

One inbox + one secret proxy

Agents push a brief to your inbox; you triage with the keyboard; your choice flows back as the agent's next step. Keys live in the Secret Proxy — agents use them, never see them.

connect an agent — nothing to copy around

# In the app: Settings → Invite an agent → copy the one-time link.
# Hand it to Claude Code. It redeems a scoped, revocable token — no keys pasted.
# Then it says hello by pushing a brief and watching for your reply:
mb brief push ./hello.html --title "Ship plan — pick one" --kind options
mb brief watch br_8f3k --since 0 --interval 3   # selections + notes stream back

triage it like email (keyboard-fast)

j / k move   Enter open   click a choice = the agent sees it instantly
n note    e archive (= reviewed & decided)   z undo

one key, many agents — none of them can read it

# Add the key once (Settings → Resources — paste a .env). Then an agent proxies:
mb proxy --resource stripe --env prod \
  --request '{"method":"GET","path":"/v1/subscriptions","query":{"limit":"3"}}'
# the secret is injected server-side and never reaches the agent

Scope each agent to exactly what it needs at invite time (--scope proxy:stripe), and revoke one agent by revoking its token — the key never moves. On your phone, install Meltbox to the home screen: when an agent pushes a brief, you get a push — "Your agent needs a decision" — and you can answer from the lock screen.

Side by side

The honest comparison

The jobDIY (ntfy + Slack + .env + board)Meltbox
Get pinged when an agent needs yountfy hook you wire per machineBuilt in — brief push → phone push
Decide, with the answer feeding the agentNo — a webhook has no buttons the agent readsYes — clickable brief; choice is the next step
Approve from your phoneSSH in, or wait for your deskAnswer from the lock screen (installed PWA)
Share one key across N agentsCopy it into every .envProxy it once — agents use, never see
Secret exposurePlaintext in every repo + shell + contextStays server-side; reveal is scoped + audited
Cut off one agentRotate the key everywhereRevoke that one token
Track many agents/sessionsA board you update by handOne inbox; promote to a dashboard
Who maintains itYou — hooks, webhook, topics, boardHosted; agents drive it over an API
Cost"Free" + your timeFree plan; Pro when you outgrow it

Meltbox capabilities verified against docs.meltbox.ai (Quickstart, Invite an agent, CLI, Core concepts), July 2026.

Be fair

When DIY is genuinely the right call

If you run one agent, on one machine, and you're always at that desk, ntfy plus a Claude Code hook is honestly all you need — don't add a platform to a one-agent problem. The trade flips when there are several agents, more than one machine, secrets that shouldn't be in plaintext, or decisions you want to make from your phone. That's the line this page is about.

FAQ

Questions engineers actually ask

Isn't ntfy + a hook basically the same thing, for free?

For the notification, yes — and if that's all you need, use it. What a hook can't do is carry a decision. A brief is a clickable page: you pick an option and the choice flows back to the agent as its next instruction, from your phone if you like. ntfy tells you something happened; Meltbox is how you answer.

What about the keys? I don't want another vault.

The Secret Proxy isn't a vault you check keys out of — it's a proxy your agents call through. You add a key once; an agent makes a request and Meltbox injects the secret server-side, so the raw key never reaches the agent, its subprocess, or the model's context. Compare that to a .env that every one of those can read.

Can I keep Slack?

Sure — Slack is a fine feed. Meltbox replaces the part Slack was never good at: a decision surface with real choices and a reply loop the agent reads. Many people keep a channel for chatter and use the Brief Inbox for anything that needs an answer.

How long is the switch?

Sign up at meltbox.ai (email, Google, or an anonymous guest workspace), open Settings → Invite an agent, and hand the one-time link to your agent. It redeems a scoped token and pushes its first brief — under a minute, no SDK on your side.

What does it cost?

The Free plan includes one workspace, the Brief Inbox, the Secret Proxy (up to 5 resources), and one agent invite — no card. Paid plans add more; see the docs.

Stop maintaining the glue

Give your agents one place to push decisions and one proxy for your keys.

Or hand this to your own agent right now:

Read https://docs.meltbox.ai/quickstart and https://docs.meltbox.ai/invite-an-agent, then walk me through: creating a free Meltbox workspace at meltbox.ai, minting an invite link (Settings → Invite an agent), redeeming it with the mb CLI, and pushing me a first brief about what we're working on — then watch it for my reply.

More guides

Sources