Skip to content

Contributing to Coro

Thank you for your interest in Coro. This document covers setup, scope, and how we

review changes.

Before you start

Development environment

Requirements: Node.js ≥ 20, pnpm ≥ 9.

Terminal window
git clone https://github.com/Coro-ai-framework/coro-developer-framework.git
cd coro-developer-framework
pnpm install
pnpm build
pnpm test

Run the runner locally:

Terminal window
pnpm dev:runner
# or
pnpm --filter @coro-ai/runner dev

See docs/local-setup.md for credentials, intelligence overlays, and hybrid/cloud configuration.

Project layout

PackageRole
packages/runnerCLI, job engine, MCP tools, state backends
packages/dashboardWeb UI
packages/intelligence-baseBase agents, workflows, skills
packages/plugin-sdkSDK for SCM, tracker, and executor (LLM) plugins
packages/plugin-gitlabReference SCM plugin — start here when adding a Git host
packages/llm-anthropic, packages/llm-openaiReference executor plugins
packages/runner/src/plugins/builtin/Built-in GitHub (SCM) and Jira (tracker)
packages/runner/src/cloudCommercial — not accepting drive-by refactors without discussion

What belongs in a PR

In scope

  • Bug fixes and tests
  • Runner, dashboard, intelligence-base, plugin-sdk improvements
  • New or updated plugins (SCM, tracker, or LLM executor) — see packages/plugin-sdk/README.md and packages/plugin-gitlab as references
  • Documentation that helps contributors and operators

Discuss first (issue or Discussion)

  • Large architectural changes
  • New workflow phases or agent roles
  • Changes to merge semantics for intelligence layers
  • Anything under packages/runner/src/cloud/ (commercial surface)

Out of scope

  • Changes that require secrets in CI for every fork (mock or gate behind labels instead)
  • One-off features for a single tenant (prefer a plugin or repo overlay)
  • GPL/AGPL dependencies (see license check below)

Code style

  • TypeScript strict mode; match existing patterns in the file you edit.
  • Run pnpm typecheck and pnpm test before opening a PR.
  • Prefer focused PRs; link related issues.

SPDX license headers

New and substantially modified source files should include:

// SPDX-License-Identifier: BUSL-1.1

Files under packages/runner/src/cloud/:

// SPDX-License-Identifier: LicenseRef-Coro-Commercial-1.0

Pull request checklist

  • CLA signed
  • Tests added or updated where behavior changed
  • pnpm test and pnpm typecheck pass locally
  • Docs updated if user-facing behavior changed
  • No secrets, real customer names, or private URLs in commits

Large changes (RFC)

For changes that touch multiple packages, alter workflow contracts, or change intelligence merge rules, open a GitHub Discussion or issue first with:

  • Problem statement
  • Proposed approach
  • Alternatives considered
  • Migration / rollout notes

Wait for maintainer feedback before investing in a large implementation.

Community

Be respectful and constructive. See CODE_OF_CONDUCT.md.

Priorities we are looking for: new SCM, tracker, and LLM executor plugins, and real-world testing on your repos and stacks. Details: ROADMAP.md → Help wanted.