squall-serialization 0.1.0

Agentic serialization
Documentation
  • Coverage
  • 0%
    0 out of 1 items documented0 out of 0 items with examples
  • Size
  • Source code size: 18.99 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 963.61 kB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 13s Average build duration of successful builds.
  • all releases: 13s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • Repository
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • drzln

squall

Scalable QUorum Agent Language Layer central registry, coordinator, job broker, and state bus (mesh).

flowchart TD
    subgraph Orchestrator
        O1[Orchestrator<br/>(squall --mode orchestrator)]
    end

    subgraph Mesh_Network
        M1[Mesh Node<br/>(squall --mode mesh)]
        M2[Mesh Node<br/>(squall --mode mesh)]
    end

    subgraph Agents
        A1[Agent<br/>(squall --mode agent)]
        A2[Agent<br/>(squall --mode agent)]
    end

    O1 -- Assign Task --> M1
    M1 -- "Route to Agent" --> A1
    A1 -- "Task Result" --> M1
    M1 -- "Status/Result" --> O1

    O1 -- Assign Task --> M2
    M2 -- "Route to Agent" --> A2
    A2 -- "Task Result" --> M2
    M2 -- "Status/Result" --> O1

    M1 <--> M2

    %% Optional: Orchestrator could directly talk to Mesh nodes or agents, depending on your topology.