
Security News
Axios Supply Chain Attack Reaches OpenAI macOS Signing Pipeline, Forces Certificate Rotation
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.
@fleettools/squawk
Advanced tools
Squawk is the agent coordination and durable messaging system for FleetTools, analogous to SwarmTools' swarm-mail.
Squawk provides:
squawk/
├── mail/ # Durable Mailbox implementation
│ ├── mail.ts # Mailbox API
│ ├── cursor.ts # Durable Cursor
│ └── defer.ts # Durable Deferred
├── streams/ # Event streaming primitives
│ ├── event.ts # Event types
│ ├── store.ts # Append-only event store
│ └── subscription.ts # Event subscription
├── hive/ # Flightline event source
│ ├── cells.ts # CTK reservation events
│ ├── work-orders.ts # Work order events
│ └── projections.ts # Materialized views
├── memory/ # Semantic memory integration
│ ├── embeddings.ts # Memory records with embeddings
│ └── retrieval.ts # Search APIs
└── api/ # Squawk API for plugins
├── coordinator.ts # Dispatch API
└── mail.ts # Mailbox API
interface SquawkEvent {
id: string;
type: 'work_order.created' | 'work_order.started' | 'work_order.completed' |
'cell.reserved' | 'cell.released' | 'tech_order.learned' |
'specialist.assigned' | 'specialist.completed';
stream_id: string; // Work order or tech order ID
data: Record<string, any>;
occurred_at: string; // ISO 8601
causation_id?: string; // For event chaining
}
Append-only event queue with ordering guarantees:
Progress tracking for event consumers:
Distributed file locking mechanism:
Promise-based coordination:
Squawk emits events that are consumed by Flightline to update:
Squawk can publish memory events:
These events are consumed by the Memory subsystem to create embeddings.
Append events to durable mailbox.
Subscribe to event streams.
Stream events from a cursor position.
Get Dispatch status and active Specialists.
When Sync Mode is enabled:
FAQs
FleetTools Squawk - Agent Coordination System
We found that @fleettools/squawk 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
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.

Security News
Open source is under attack because of how much value it creates. It has been the foundation of every major software innovation for the last three decades. This is not the time to walk away from it.

Security News
Socket CEO Feross Aboukhadijeh breaks down how North Korea hijacked Axios and what it means for the future of software supply chain security.