@stigmergy/nemoclaw-scheduler
v0.2.0
Published
Stigmergy pressure-field scheduling plugin for OpenClaw / NemoClaw
Downloads
344
Maintainers
Readme
@stigmergy/nemoclaw-scheduler
Zero-code pressure-field scheduling for NemoClaw. Install the plugin, add config, restart. Your agents get task scheduling with dependencies, priorities, and automatic retry. No code changes required.
Scheduling overhead is sub-millisecond regardless of agent count. Scales to thousands of tasks without configuration changes -- the bottleneck is your LLM provider, not the scheduler.
Install
git clone https://github.com/Production-Grade/stigmergy.git
nemoclaw plugins install ./stigmergy/packages/nemoclawAdd to your nemoclaw.json:
{
"plugins": {
"entries": {
"stigmergy-scheduler": {
"enabled": true,
"config": {
"tickIntervalMs": 5000,
"defaultWakeThreshold": 0.4,
"decayHalfLifeSeconds": 300,
"evaporationThreshold": 0.01
}
}
}
}
}Restart NemoClaw. You should see:
Stigmergy scheduler started (tick=5000ms, threshold=0.4)What you get
4 agent tools:
| Tool | Description |
|------|-------------|
| stigmergy_add_task | Queue a task with dependencies and priority |
| stigmergy_inject_urgent | Force-inject a high-priority task |
| stigmergy_status | View scheduler metrics |
| stigmergy_deposit_signal | Manually deposit a pressure signal |
Hooks: agent_end deposits activity signals for natural pressure accumulation.
Gateway methods: stigmergy.metrics, stigmergy.pressure
Status
NemoClaw is in early preview (alpha). This plugin tracks the NemoClaw plugin API which may have breaking changes between releases.
License
MIT
