Skip to content

SuperInstance/plato-tick

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

plato-tick — Inter-Agent Message Board

A shared message board where agents leave ticks for each other. Direct messages, broadcasts, topic subscriptions, TTL expiry, and acknowledgment tracking — the communication backbone for multi-agent coordination.

Part of the Plato ecosystem.

What This Gives You

  • Directed and broadcast ticks — send to a specific agent or everyone
  • Topic subscriptions — subscribe to topics, poll for new ticks
  • Priority levels — Info, Normal, Urgent, Critical
  • TTL expiry — ticks auto-expire after a configurable time
  • Acknowledgment tracking — know which agents have seen and acted on a tick

Quick Start

use plato_tick::{TickBoard, TickPriority};

let board = TickBoard::new();

// Post a broadcast tick
let tick = board.post("analyst", None, "results", "Dataset analysis complete", TickPriority::Normal, 60_000);

// Post a direct message
let tick = board.post("analyst", Some("planner"), "urgent", "Need re-prioritization", TickPriority::Urgent, 30_000);

// Subscribe and poll
let sub = board.subscribe("planner", vec!["urgent", "results"]);
let ticks = board.poll(sub);

// Acknowledge
board.acknowledge(tick.id, "planner", "Re-prioritized task queue");

How It Fits

The message layer between agents. Uses plato-a2a types for wire format. Agents in plato-shell communicate through ticks. plato-observe monitors tick flow for performance analysis.

Installation

[dependencies]
plato-tick = "0.1"

License

MIT

About

Tick scheduler for Plato Shell — periodic tasks, cron-like scheduling, and heartbeat management

Resources

Code of conduct

Contributing

Security policy

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages