qm – Multiplayer agent harness for work Uh oh! There was an | Coderz Club

qm – Multiplayer agent harness for work Uh oh! There was an error while loading. Please reload this page. yc-software / qm Public Notifications You must be signed in to change notification settings F

qm – Multiplayer agent harness for work Uh oh! There was an error while loading. Please reload this page. yc-software / qm Public Notifications You must be signed in to change notification settings F

By Coderz Club · 2026-08-01 · Tags: software, git

qm – Multiplayer agent harness for work

Uh oh! There was an error while loading. Please reload this page. yc-software / qm Public Notifications You must be signed in to change notification settings Fork 187 Star 2k mainBranchesTagsGo to fileCodeOpen more actions menuFolders and filesNameNameLast commit messageLast commit dateLatest commit History40 Commits40 Commits.claude.claude .codex/skills.codex/skills .github/workflows.github/workflows adrsadrs aws/microvm-agentaws/microvm-agent clicli deploydeploy docsdocs flyfly locallocal pluginsplugins scriptsscripts skills-seedskills-seed srcsrc testtest .dockerignore.dockerignore .env.example.env.example .gitignore.gitignore .node-version.node-version .npmrc.npmrc .oxlintrc.json.oxlintrc.json .prettierignore.prettierignore .prettierrc.json.prettierrc.json AGENTS.mdAGENTS.md CLAUDE.mdCLAUDE.md CONTRIBUTING.mdCONTRIBUTING.md LICENSELICENSE README.mdREADME.md SECURITY.mdSECURITY.md deployment.mddeployment.md eslint.config.mjseslint.config.mjs knip.jsonknip.json package-lock.jsonpackage-lock.json package.jsonpackage.json tsconfig.contract.jsontsconfig.contract.json tsconfig.jsontsconfig.json View all filesRepository files navigationqm A multiplayer agent harness for work. In Slack and on the web. What is QM? Most agents are designed like personal assistants. You can make one work for a whole company, but it quickly gets complex. QM is designed for startups. Employees each get their own isolated workspace and work independently without affecting each other, and they can also collaborate with the agent in channels, group messages, and projects. Each person and each room has its own scoped memory, files, keychain view, permissions, crons, web apps, and durable sandbox. It's built with open source in mind. Pick your own harness and model and switch between them — Pi, OpenCode, Codex, and Claude Code all drive the same core, so a deployment isn't tied to any single vendor. Features Personal and shared scopes. People customize the agent to be theirs, and still work with it collaboratively in Slack channels and projects. Slack and web. The same identity and configuration carries between Slack and the web app. Admin control. Set org-level configuration, a security posture, and which harnesses and models are available. Web apps. Spin up custom internal apps and publish them to the right people. Shared skills. Skills are scope-owned and shareable by grant, with admin-gated promotion to the whole org and skill packs imported from git repositories. Background work. Crons and watches run work while nobody's watching. What you can do with it Search internal notes, email, documents, databases, and the web together Retrieve information from your company brain Build internal apps, publish them to the right people, and keep their data current Learn your writing voice from past sends, then triage your inbox on a schedule — labels and reply drafts included Work in an existing repository: run tests, open PRs, monitor CI, check system logs Track a project in a shared channel and post updates and follow-ups Architecture flowchart LR DB[("Postgres<br/>sessions · memory · queue")] subgraph CORE["Headless core"] API["API · identity · policy · scheduler"] LOOP["Agent loop<br/>(Pi, OpenCode, Claude Code)"] API <--> LOOP end SBX["Per-scope sandbox<br/>files · tools · logged-in services"] DB <--> API LOOP <--> SBX Loading Every turn runs through a central core, which can use a variety of models and harnesses to generate the response. A Postgres persistence layer holds user data, session history, and other durable state. The agent has a small, fixed tool surface; one of those tools is execute, which runs commands in the scope's own isolated sandbox — its durable computer, where installed tools stay installed. The web UI, the admin panel, and the public portal are optional plugins over the core's HTTP API; Slack is an optional in-process plugin that core starts and supervises through a direct service client. The core runs TypeScript directly on Node and uses Fastify for HTTP. The Slack plugin uses Bolt; the web UI builds with Vite and renders with Lit. The core itself is generic. Everything specific to one company — org config, custom tools and skills, sandbox image, infrastructure — lives in a deployment directory that the qm CLI validates and deploys. Every substrate (harness, session store, sandbox, memory) sits behind an interface, so production implementations swap in via one wiring file. Security and secrets QM's approach follows local coding agents like OpenCode, Codex, and Claude Code: the agent acts as the person it's working for, with their credentials and permissions, and everything it does is audited. An org picks one security posture, which narrower scopes can only tighten: Strict — every harness tool call pauses for human approval, except the two no-effect turn enders. Auto (default) — a classifier screens provenance-labelled external data and tool results before they reach the model

View this page on Coderz Club