
Security News
US Government Forces Anthropic to Pull Claude Fable Days After Launch
Anthropic says the directive cited national security concerns over a narrow jailbreak, but offered no specific technical details.
@superinstance/bottle-protocol
Advanced tools
Agent messaging protocol: Bottle messages, TidePool BBS, and Mailbox inbox/outbox
Agent messaging protocol: Bottle messages, TidePool BBS, and Mailbox inbox/outbox.
Zero dependencies. Works in browser and Node.js.
npm install @superinstance/bottle-protocol
const { Bottle, BottleType, Priority, TidePool, Mailbox } = require('@superinstance/bottle-protocol');
// Create a message
const msg = new Bottle({
sender: 'agent-1',
recipient: 'agent-2',
content: 'Hello from the fleet!',
bottleType: BottleType.DIRECT,
priority: Priority.HIGH,
tags: ['greeting']
});
// TidePool — BBS-style message board
const pool = new TidePool({ name: 'fleet-board' });
pool.drop(msg);
const messages = pool.collect('agent-2');
// Mailbox — personal inbox with read tracking
const box = new Mailbox({ agentId: 'agent-2' });
box.deliver(msg);
console.log(box.unreadCount); // 1
box.readAll();
BottleAgent message container with ID, TTL, priority, and tags.
TidePoolBBS-style message board where agents drop and collect bottles.
MailboxPersonal inbox with read/star tracking.
BottleType: DIRECT, BROADCAST, CHANNEL, REQUEST, RESPONSE, ALERT, HEARTBEATPriority: LOW, NORMAL, HIGH, URGENTMIT © Cocapn
FAQs
Inter-agent messaging via git-native bottle protocol
The npm package @superinstance/bottle-protocol receives a total of 12 weekly downloads. As such, @superinstance/bottle-protocol popularity was classified as not popular.
We found that @superinstance/bottle-protocol demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Anthropic says the directive cited national security concerns over a narrow jailbreak, but offered no specific technical details.

Security News
A network of 152 Chrome live wallpaper extensions hid ad tracking and made extension-driven traffic look like Google search clicks.

Company News
Socket’s first CISO brings deep experience securing high-growth SaaS companies as open source supply chain threats accelerate.