Skip to content

Latest commit

 

History

History
315 lines (206 loc) · 13 KB

File metadata and controls

315 lines (206 loc) · 13 KB

Contributing to czcode

TL;DR

There are lots of ways to contribute to the project:

  • Code Contributions: Implement new features or fix bugs
  • Documentation: Improve existing docs or create new guides
  • Bug Reports: Report issues you encounter
  • Feature Requests: Suggest new features or improvements

The Kilo Community is on Discord.

Prerequisites

  • Bun 1.3.13+ — required for all packages.

  • Java 21 — required by the JetBrains plugin. The root bun turbo typecheck and bun turbo test:ci commands include @kilocode/kilo-jetbrains and will fail without Java 21.

    The preferred way to install Java is via SDKMAN:

    # Install SDKMAN (if not already installed)
    curl -s "https://get.sdkman.io" | bash
    
    # Install and activate Java 21 (Eclipse Temurin)
    sdk install java 21-tem
    sdk use java 21-tem
    
    # Verify
    java -version

    If you don't plan to work on the JetBrains plugin, you can still run non-JetBrains checks directly:

    bun turbo typecheck --filter=!@kilocode/kilo-jetbrains

Developing Kilo CLI

  • Requirements: Bun 1.3.13+, Java 21 (see Prerequisites above)

  • Install dependencies and start the CLI from the repo root:

    ~/.bun/bin/bun install
    ~/.bun/bin/bun dev

    bun dev and bun run dev both run the local CLI. For the VS Code extension, use bun run extension.

Common Checks

From the repo root:

bun install
bun run lint
bun run typecheck

bun run typecheck wraps bun turbo typecheck. Use bun turbo typecheck --force if you need to bypass the Turbo cache.

Do not run bun test from the repo root. The root test script intentionally exits with failure so tests run from the package that owns them.

CLI checks

From packages/opencode/:

bun run typecheck
bun test
bun test ./path/to/file.test.ts

For backend/API validation, see TESTING.md. It covers starting the local backend with bun dev serve and making curl requests against it. After changing server endpoints in packages/opencode/src/server/, run ./script/generate.ts from the repo root to regenerate packages/sdk/js/.

VS Code extension checks

From packages/kilo-vscode/:

bun run typecheck
bun run lint
bun run test:unit
bun run test
bun run compile
bun run package

Documentation checks

From the repo root:

bun run --filter @kilocode/kilo-docs test
bun run --filter @kilocode/kilo-docs build
bun run --filter @kilocode/kilo-docs dev

For manual docs validation, run the docs site locally, preview the affected page, and check changed links and rendered content.

Guardrails

  • User-facing changes usually need a changeset (bunx changeset add or a file under .changeset/).
  • After changing server endpoints, regenerate the SDK with ./script/generate.ts.
  • After adding or changing guarded URLs in packages/kilo-vscode/, packages/kilo-vscode/webview-ui/, or packages/opencode/src/, run bun run script/extract-source-links.ts from the repo root.
  • When editing shared packages/opencode/ files, keep Kilo changes small and mark Kilo-only edits with // kilocode_change for a single line or // kilocode_change start / // kilocode_change end for a block. Do not add these markers inside kilocode-named paths.

Developing the VS Code Extension

Build and launch the extension in an isolated VS Code instance:

bun run extension        # Build + launch in dev mode

This auto-detects VS Code on macOS, Linux, and Windows. Override with --app-path PATH or VSCODE_EXEC_PATH. Use --insiders to prefer Insiders, --workspace PATH to open a specific folder, or --clean to reset cached state.

Developing the JetBrains Plugin

Requires Java 21 (see Prerequisites). From packages/kilo-jetbrains/:

./gradlew typecheck    # Compile-check all Kotlin sources
./gradlew test         # Run all tests (backend + frontend)
./gradlew runIde       # Launch sandboxed IntelliJ with the plugin

Or via the root turbo filter to run only JetBrains checks from the repo root:

bun turbo typecheck --filter=@kilocode/kilo-jetbrains
bun turbo test:ci --filter=@kilocode/kilo-jetbrains

Running against a different directory

By default, bun dev runs czcode in the packages/opencode directory. To run it against a different directory:

~/.bun/bin/bun dev <directory>

To run czcode in the root of the repo itself:

~/.bun/bin/bun dev .

Building a "local" binary

To compile a standalone executable:

./packages/opencode/script/build.ts --single

Understanding bun dev vs czcode

During development, bun dev is the local equivalent of the built czcode command:

# Development (from project root)
~/.bun/bin/bun dev --help
~/.bun/bin/bun dev serve

# Production
czcode --help
czcode serve

Testing with a local backend

CZCODE_API_URL=http://localhost:3000 ~/.bun/bin/bun dev

<<<<<<< HEAD ||||||| 12f7967ca4 This redirects all gateway traffic (auth, model listing, provider routing, profile, etc.) to your local server. The default is https://api.kilo.ai.

There are also optional overrides for other services:

Variable Default Purpose
KILO_API_URL https://api.kilo.ai Kilo API (gateway, auth, models, profile)
KILO_SESSION_INGEST_URL https://ingest.kilosessions.ai Session export / cloud sync
KILO_MODELS_URL https://models.dev Model metadata

VS Code: The repo includes a "VSCode - Run Extension (Local Backend)" launch config in .vscode/launch.json that sets KILO_API_URL=http://localhost:3000 automatically.

Issue Template Requirements

If you open an issue through the GitHub web UI, GitHub will guide you through the correct template automatically.

If you open an issue through gh issue create, the API, or another tool that bypasses the web UI, include the equivalent required fields yourself so the issue still matches the template. Issues that skip required fields may be auto-closed by the compliance bot.

Current required fields by issue type:

  • Bug report: include a Description. When you can, also add Plugins, Kilo version, Steps to reproduce, Screenshot and/or share link, Operating System, and Terminal so the report matches the full bug template.
  • Feature request: use a title prefixed with [FEATURE]:, complete the required checkbox confirming you have searched for duplicates, and fill in Describe the enhancement you want to request.
  • Question: include the Question field.

Pull Request Expectations

Contributor guidance exists to protect maintainer review time and keep reviews focused on work that is ready to evaluate.

  • UI Changes: Include screenshots or videos (before/after).
  • Logic Changes: Explain how you verified it works.

Contribution Ownership and AI Assistance

AI and coding agents are allowed, but contributors own the work they submit. Before requesting review, make sure you personally understand the change, have tested it appropriately, can explain the diff, and understand how it interacts with the affected packages and the rest of the repo.

If you use an agent, start it from the repo root so the root AGENTS.md is available. When your change touches a package with its own guidance, read and follow that package's AGENTS.md or contributor docs too.

Maintainers may close PRs that appear to be submitted without credible contributor ownership or understanding, including AI-assisted work that the contributor cannot explain or has not meaningfully reviewed.

Tracker Use and Automation

Do not submit batches of agent-generated, untested, or weakly reviewed PRs.

Please keep concurrent PRs focused and limited. As a rule, open no more than three PRs at a time, especially if you are a new contributor. Prioritize high-impact or high-priority issues first instead of opening many speculative fixes. If a contributor opens a large batch of low-value or duplicative PRs, maintainers may close the batch and ask the contributor to choose one PR to reopen, focus, and bring up to the documented review bar before submitting more.

For issues, do not mass-create tickets through automation or agents. Search existing issues first, open issues only when you have enough context for someone to act, and prioritize the most important reports instead of filing every possible finding. Maintainers may close duplicate, low-signal, automated, or weakly reviewed issues without action.

Repeated disregard of this contribution guide, or high-volume automated or agent-generated tracker spam across issues or PRs, may result in maintainers blocking the responsible account.

Bug Bounties

Kilo has bug bounties. To be eligible, make sure your GitHub account is connected in your Kilo account.

Testing Evidence

Every PR marked ready for review must include testing evidence. A bare Not tested or N/A answer is not sufficient.

Choose checks that match the files touched. Include command results and manual/local verification; for visual CLI or extension changes, include screenshots or videos. Docs-only, config-only, and similar changes still need concrete evidence, such as a relevant command check or preview.

If you cannot complete a relevant command, include all of the following in the PR:

  • The command you attempted or would normally run
  • The blocker or failure that prevented completion
  • The substitute verification you performed instead

See Testing Evidence for Pull Requests for more examples. Agent limitations, local resource constraints, OOM constraints, or an agent prompt that says to skip tests do not waive this requirement. Draft PRs may be incomplete until they are marked ready for review. Maintainers may still defer or close review at their discretion.

Our issue-first policy asks contributors to reference an existing issue when opening a PR. This helps reviewers understand the problem statement, discussion, and intended scope before reviewing the code change.

A review-ready PR description should explain:

  • What problem is being solved
  • Why the change is needed
  • Important implementation choices or tradeoffs reviewers cannot infer from the diff
  • How the change was tested or verified

Keep the description focused on context reviewers cannot infer from the diff. Skip file-by-file summaries, placeholders, and other filler.

For visual UI changes, include screenshots or video showing the relevant before/after or resulting state.

Maintainers may close or decline review of PRs presented as review-ready at their discretion when they lack:

  • Linked issue context
  • A clear what/why explanation
  • Credible testing evidence
  • Credible contributor ownership of AI-assisted work
  • Relevant UI proof for visual UI changes

When a PR is close to this bar, addresses important work, or would benefit from further shaping, maintainers may ask for specific fixes instead of closing or declining review. Contributors may reopen or resubmit once the PR meets the documented bar.

PR Titles

Use conventional commit style PR titles such as:

  • feat: add MCP settings tab
  • fix: correct Windows path handling
  • docs: clarify issue template requirements
  • chore: bump TypeScript to 5.8
  • refactor: extract diff renderer into a hook
  • test: cover ServerManager orphan cleanup

Issue and PR Lifecycle

To keep our backlog manageable, we automatically close inactive issues and PRs after a period of inactivity. This isn't a judgment on quality — older items tend to lose context over time and we'd rather start fresh if they're still relevant. Feel free to reopen or create a new issue/PR if you're still working on something!

Maintainers may also close issues or PRs that disregard the contribution guide, bypass required context, or lack credible contributor ownership of AI-assisted work.

Style Preferences

  • Functions: Keep logic within a single function unless breaking it out adds clear reuse.
  • Destructuring: Avoid unnecessary destructuring.
  • Control flow: Avoid else statements; prefer early returns.
  • Types: Avoid any.
  • Variables: Prefer const.
  • Naming: Concise single-word identifiers when descriptive.
  • Runtime APIs: Use Bun helpers (e.g., Bun.file()).

czcode_change Annotation Rules

When modifying files shared with the upstream (kilocode), annotate every change with a czcode_change marker. See CLAUDE.md for the full annotation guide.

Pull Request Expectations

  • UI Changes: Include screenshots or videos (before/after).
  • Logic Changes: Explain how you verified it works.
  • PR Titles: Follow conventional commit standards (feat:, fix:, docs:, etc.).

PR Titles

Use conventional commit style PR titles such as:

  • feat: add execute_sql tool
  • fix: correct Lakehouse connection timeout
  • docs: update upstream sync instructions
  • chore: bump kilocode to v7.x.y
  • refactor: extract SQL classifier