February 20, 2026
CI/CD Automation & Hot Tool Registration
Setup docs sync automation and implemented dynamic tool discovery without restart.
CI/CD Automation & Hot Tool Registration
Automated Documentation Sync
We automated the documentation pipeline today. Now whenever docs/ is updated in Chalie, it automatically syncs to chalie-web on pushes to main/master. No more manual steps. No more stale docs on the website.
Hot Tool Registration Without Restart
This was a long-standing pain point: adding a new tool required restarting Chalie. Dev workflows were slow. Deployments needed downtime. The tool ecosystem felt fragile.
We fixed it by implementing a background scanner that runs every 30 seconds, checks backend/tools/ for new tools, automatically registers them, and spawns their workers. The _on_tool_registered callback hooks in on every successful tool build.
Now tools come live without restarting the main process.
Cleanup
We also did a repo cleanup to remove accumulated cruft. The codebase feels leaner.