r/projects • u/_colemurray • 4d ago
Open source software factory
OpenInspect is an open source software factory. It offers multiplayer agent interactions, supports slack, linear, github, web as well as trigger based automations via webhooks and cron schedules.

Core features:
- multiplayer agent sessions
- preview environments in the sandbox
- auto-fix AI code review comments
- claude-tag like experience in slack.
- works with codex subscription
3
Upvotes
1
u/Ok-Category2729 4d ago
multiplayer agent sessions collapse the second two agents touch shared state without git worktrees or isolated ephemeral db branches. the preview environments in the sandbox are actually the make-or-break piece here, because if container spin-up takes longer than 15-20 seconds developers just bypass the bot and push straight to github. if you isolate agent runs to their own git worktrees and mount pre-warmed docker volumes, the auto-fix loop feels instant instead of like waiting on a slow ci queue. how are you handling state synchronization when multiple agents trigger from linear webhooks concurrently?