Introducing Automated Agent Project Tracking
We’re excited to announce a new capability for the allclaws project: automated tracking of AI agent platform updates. This system monitors 8 major AI agent platforms, identifies significant changes, and generates research reports automatically.
The Problem
Tracking developments across multiple AI agent platforms is challenging:
- 8 repositories to monitor manually
- 500+ commits per month across all projects
- Critical updates (security CVEs, breaking changes) buried in noise
- Duplicate reporting - forgetting what we already checked
- Time-consuming - manual checks took 2+ hours monthly
As researchers, we needed a better way.
The Solution
We’ve developed an automated tracking system that:
- Monitors all 8 platforms as git submodules
- Detects significant changes (security issues, breaking changes, major releases)
- Tracks state to avoid duplicate reporting
- Generates structured reports for each project
- Updates research documentation automatically
- Creates blog posts for ecosystem-wide updates
Time savings: From 2+ hours to 3 minutes per month.
How It Works
Architecture
Agent Projects (Submodules)
↓
Track Script (Bash)
↓
Change Detection (Git API)
↓
Significance Filtering (Keywords)
↓
Report Generation (Markdown)
↓
Documentation Updates (Auto)
Significance Detection
The system automatically flags important changes by scanning commit messages for keywords:
- Security:
security,CVE,vulnerability - Breaking Changes:
breaking,BREAKING - Critical:
critical,urgent - Architecture:
architecture,refactor - Releases:
release,version
This filters 500+ commits down to the 10-20 that actually matter.
State Tracking
A .tracker-state.json file remembers:
{
"last_check": "2026-03-31",
"projects": {
"openclaw": {
"last_check": "2026-03-31",
"last_commit": "abc123..."
}
}
}
This prevents duplicate reporting and enables incremental updates.
Tracked Platforms
We currently monitor 8 AI agent platforms:
- OpenClaw - TypeScript AI Agent Platform (~340K stars)
- NanoClaw - Lightweight Python Agent
- IronClaw - Rust-based Agent Framework
- GoClaw - Go-based Agent
- ZeroClaw - Zero-dependency Agent
- Nanobot - Multi-agent Research
- ClawTeam - OpenClaw Extensions
- MaxClaw - Enhanced Agent Framework
Monthly Reports: A Promise
Starting April 2026, we commit to publishing monthly ecosystem updates.
Each month, you’ll receive:
- Ecosystem overview - Cross-cutting trends and themes
- Per-platform reports - Detailed changes for each project
- Security alerts - CVE disclosures and patches
- Architecture insights - Major design shifts
- Performance updates - Benchmark improvements
What to Expect
April 2026 report (coming soon): March 2026 developments
Schedule: First Monday of each month
Format: Blog post + detailed reports in docs/reports/
Usage
The tracking system is open source and available for anyone to use:
# Check all projects
./scripts/track-agent-updates.sh
# Monthly report with blog post
./scripts/track-agent-updates.sh --blog --since "30 days ago"
Full documentation: Agent Project Tracking Skill
Under the Hood
The system uses:
- Git submodules for repository management
- Bash scripting for automation
- jq for JSON state processing
- Markdown for report generation
- Jekyll for blog integration
Total lines of code: ~600 (well-documented, modular)
Why This Matters
The AI agent ecosystem moves fast. Critical security issues appear weekly. Breaking changes ship monthly. New architectures emerge quarterly.
Manual tracking can’t keep up. Automation is essential for:
- Security researchers tracking vulnerabilities
- Developers evaluating platforms
- Architects studying design patterns
- Organizations choosing agent solutions
Our automation makes this tracking feasible.
First Monthly Report: April 7, 2026
Mark your calendars! Our first monthly ecosystem update will be published on April 7, 2026, covering March 2026 developments across all 8 platforms.
Topics to include:
- Q1 security roundup
- Streaming adoption status
- Multi-provider LLM expansions
- Architecture trends
- Performance benchmarks
Get Involved
Follow the research:
- GitHub: dz3ai/allclaws
- RSS: Blog Feed
- Reports: docs/reports/
Contribute:
- Add more platforms to track
- Improve significance detection
- Enhance report formats
- Share your analysis
What’s Next
We’re planning enhancements:
- GitHub API integration (issues/PRs)
- Automated commit categorization
- Performance benchmark tracking
- Visual charts and graphs
- Email digest subscriptions
Stay tuned!
Built with research discipline, powered by automation.
Questions or suggestions? Open an issue on GitHub!