Add CLI (cli/main.py) — click-based interface for all core operations

Commands: project (add/list/show), task (add/list/show),
decision (add/list), module (add/list), status, cost.
Auto-generated task IDs (PROJ-001). DB at ~/.kin/kin.db or $KIN_DB.
pyproject.toml with `kin` entry point. 18 CLI tests, 39 total passing.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
johnfrum1234 2026-03-15 13:20:57 +02:00
parent 3db73332ad
commit 432cfd55d4
4 changed files with 635 additions and 0 deletions

16
pyproject.toml Normal file
View file

@ -0,0 +1,16 @@
[build-system]
requires = ["setuptools>=68.0"]
build-backend = "setuptools.backends._legacy:_Backend"
[project]
name = "kin"
version = "0.1.0"
description = "Multi-agent project orchestrator"
requires-python = ">=3.11"
dependencies = ["click>=8.0"]
[project.scripts]
kin = "cli.main:cli"
[tool.pytest.ini_options]
testpaths = ["tests"]