Skip to content

Contributing

Khiip’s v0.1.x substrate is tagged (v0.1.0 baseline + v0.1.1 MCP server); public launch is the next horizon. The authoritative contributor guide is CONTRIBUTING.md in the repo — this page is an orientation.

Get set up

Terminal window
git clone https://github.com/KhiipAI/khiip.git ~/projects/khiip
cd ~/projects/khiip
pip install -e ".[dev]"

Running tests

Terminal window
make test # hermetic pytest suite (~1s)
make smoke # full live round-trip against fxtwitter + the bundled embedder

Where things go

Khiip is built around capability registries, so most contributions slot in without touching the core:

  • A new source → an extractor that emits a typed payload (see Typed payloads)
  • A new output shape → a renderer behind the Renderer Protocol (see Substrate overview)
  • A new media channel → a fetcher in the media-fetcher registry

Each registry entry declares what it supports; the first match wins. This is what keeps the substrate extensible without coupling.

Ways to help