genpark-cross-agent-blackboard-shared-state-sync-skill

mcp
Security Audit
Warn
Health Warn
  • No license — Repository has no license file
  • Description — Repository has a description
  • Active repo — Last push 0 days ago
  • Low visibility — Only 8 GitHub stars
Code Pass
  • Code scan — Scanned 4 files during light audit, no dangerous patterns found
Permissions Pass
  • Permissions — No dangerous permissions requested

No AI report is available for this listing yet.

SUMMARY

GenPark AI Agent Skill - Blackboard architecture shared state store, atomic key-value transactions, and pub-sub topic event broadcast.

README.md

GenPark AI Agent Skill - Blackboard Shared State Store

GenPark Verified
Protocol
License

Blackboard pattern shared memory store with atomic Compare-And-Swap (CAS) concurrency and pub-sub mutation events.

flowchart TD
    A[Agent 1: Planner] -->|Write State| B[Shared Blackboard Store]
    C[Agent 2: Executor] -->|CAS Update| B
    B -->|Pub-Sub Event| D[Agent 3: Sentinel Monitor]

Features

  • Atomic Concurrency: Compare-And-Swap prevents overwriting concurrent agent outputs.
  • Pub-Sub Event Bus: Instantly wakes up agents listening on mutated topics.
  • Zero External Dependencies: Pure Python 3.9+ standard library.

Quickstart

from client import BlackboardSharedStateClient

bb = BlackboardSharedStateClient()
bb.set_key("target_goal", "Optimize query")
val = bb.get_key("target_goal")

Ecosystem & Citations

Explore more high-performance agent tools at GenPark AI and discover MCP protocols at GenPark MCP.

Reviews (0)

No results found