Skip to main content

Knowledge Dispatcher for issue trackers and knowledge bases

Project description

kd

Knowledge Dispatcher. A command-line and Python tool for accessing and managing information that lives in issue trackers and knowledge bases — designed to be equally natural for humans and large language models.

Today kd speaks YouTrack. On the roadmap: JIRA, GitHub Issues, GitLab, and possibly Obsidian. One tool, one set of verbs, many backends.

What kd does

  • Full issue CRUD from the terminal or a script. Create, update, comment, link, time-log, assign, query — no web UI round-trips, no ad-hoc REST glue.
  • Knowledge-base article workflows. Idempotent push from local markdown, pull as markdown for editing, moves across projects, tag-driven queries. Articles round-trip cleanly through an HTML-comment marker so repeated LLM-driven edits preserve upstream identity instead of creating duplicates.
  • Cross-project visibility via tokens. kd sees exactly what the token's connection permits on the upstream server — nothing more, nothing less. Access control stays upstream where it belongs, not in a parallel local config.
  • Cross-entity search spanning issues and articles in a single query.
  • Structured output (JSON, YAML, table, markdown) because the primary consumer is often another program — an LLM, a shell pipeline, a CI job — not a human eyeballing a terminal.

The primer — and why it exists

The primer (kd /primer) is the centerpiece: a small, workspace-local file of pinned references and curated notes that every kd session can surface on demand.

It exists to solve a problem that has gotten worse as LLMs have become central to real work:

  • Visible memory. Agentic tools accumulate hidden "memories" in opaque per-LLM buckets you cannot easily read, edit, or audit. The primer is a plain file you can open, version, and review. If an LLM appears to "remember" something load-bearing, you can see exactly where that came from.
  • LLM-portable. One primer works for any model. Switch from Claude to GPT-5 to the next generation — the primer travels with the project, not with a vendor.
  • Shared by humans and LLMs. A developer jotting "on this project the sprint field is called Board" in the primer is building the same artifact an LLM would build, in the same place, readable by both. No separate convention to maintain.
  • A routing layer, not a copy. The primer can pin real knowledge-base articles (kd /primer/article add FB-A-42). It never duplicates their content — it points at them. The rest of kd extends this shape: pull what the current task needs from live systems, reason, push updates back. Nothing gets mirrored into a parallel store.

What kd is not

  • Not a migration platform. Cross-system moves are deliberate lossy cherry-picks — a stub on the target side with a backref to the source, not a faithful reproduction.
  • Not a data warehouse. Data lives in the upstream tracker; kd sits on top.
  • Not a faithful replica. kd reads what a task needs and writes what actually changed. It never claims to be a complete mirror.

If you need a migration tool or a comprehensive import/export platform, kd is the wrong tool.

Install

# pipx (recommended)
pipx install kd-cli

# or uv
uv tool install kd-cli

The PyPI distribution name is kd-cli (two-letter kd is reserved by PyPI policy). The installed command, the import name, and the CLI entry point are all kd.

Release notes for the installed version: kd /release-notes. The canonical changelog lives at kd/resources/CHANGELOG.md.

Configure

# Scaffold a project-local config in the current directory.
kd init

# Or set via environment (overrides workspace + global config).
export KD_TOKEN=your_token
export KD_CONNECTION=main

Global config lives at ~/.config/kd/config.yaml; workspace config lives at .kd/config.yaml.

Usage

CLI

# Projects
kd /project list
kd /project show FB

# Issues
kd /issue list --project FB --query "#Unresolved"
kd /issue create "Fix router configuration" -p FB --type Task
kd /issue show FB-1

# Time tracking
kd /time log FB-1 45 --type Development --description "Router reconfiguration"

# Articles
kd /article list --project CMCSA
kd /article push guide.md --project CMCSA --title "Setup Guide" --tag "type:guide"
kd /article pull FB-A-42 > setup.md

# Tags
kd /tag list
kd /tag articles type:case --project CMCSA

# Saved queries
kd /query list
kd /query issues "Sprint 47" --project FB

# Primer (workspace knowledge, LLM context)
kd /primer/note add "Sprint field is called 'Board'"
kd /primer/article add FB-A-42 --summary "Architecture Overview"
kd /primer show

# Cross-entity search
kd /search "router" --types issue,article --project FB

# Output formats
kd /project list --output json | jq '.[].key'
kd /issue list --output yaml

Python SDK

The CLI is a thin wrapper over a Python library. Same capabilities, programmatic interface:

from kd import YouTrackClient

client = YouTrackClient(
    url="https://your-instance.youtrack.cloud",
    token="your_token",
)

projects = client.projects.list()
issue = client.issues.create(project="FB", summary="Fix router config")
client.time.log(issue_id="FB-1", minutes=45, work_type="Development")
articles = client.tags.articles(["type:case"], project="CMCSA")
results = client.search.search("router", types=["issue", "article"])

Development

pytest tests/ -v --tb=short

ruff format kd/ tests/
ruff check --fix kd/ tests/
mypy kd/

Updated: 2026-04-14

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

kd_cli-2.4.0.tar.gz (148.3 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

kd_cli-2.4.0-py3-none-any.whl (174.1 kB view details)

Uploaded Python 3

File details

Details for the file kd_cli-2.4.0.tar.gz.

File metadata

  • Download URL: kd_cli-2.4.0.tar.gz
  • Upload date:
  • Size: 148.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for kd_cli-2.4.0.tar.gz
Algorithm Hash digest
SHA256 5d0bed66c0d89c292792e8a2b87886dc9c7db50bcd45aa6c572e8adedaf998ab
MD5 4a453eefbee86f1cc9efb94a3551468c
BLAKE2b-256 f81ac2866f761d0de9ed51b8a442c65385858954aa01009d3748a482b72817ac

See more details on using hashes here.

Provenance

The following attestation bundles were made for kd_cli-2.4.0.tar.gz:

Publisher: publish.yml on IntellectSolutionsCom/kd-release

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file kd_cli-2.4.0-py3-none-any.whl.

File metadata

  • Download URL: kd_cli-2.4.0-py3-none-any.whl
  • Upload date:
  • Size: 174.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for kd_cli-2.4.0-py3-none-any.whl
Algorithm Hash digest
SHA256 bf2caa460f516cefe8e0d406c6d47abe6a5ecb2afd43908e7ca896e3a01e78b1
MD5 48bad5688ac6681d23134077f406cc56
BLAKE2b-256 b2d1ad0410ba13d3d6388cb8735968f411f9eef1f5c1ad7425b77c3f8203cba0

See more details on using hashes here.

Provenance

The following attestation bundles were made for kd_cli-2.4.0-py3-none-any.whl:

Publisher: publish.yml on IntellectSolutionsCom/kd-release

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page