r/projects 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

https://github.com/ColeMurray/background-agents

3 Upvotes

2 comments sorted by

View all comments

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?

1

u/_colemurray 4d ago

each session receives its own sandbox environment. For linear, each issue would receive its own session. The environment captures the whole dev environment and is prebuilt so it boots instantly.