Bootstrap tool for AI-assisted projects that preserves context across sessions, prevents doc drift, and scaffolds a memory layer around your code.
Project description
title: "context-kit — build AI projects that don't lose context" status: active
context-kit
Build AI projects that don't lose context.
context-kit scaffolds the structure, memory layer, and drift detection that keep your AI pair programmer from starting over every session. Designed so even non-technical builders can go from a raw idea to a Claude-ready project without choosing a stack alone.
Five commands, one loop:
init → recommend-stack → seed → doctor → orient
| Step | What it does |
|---|---|
context-kit init |
Creates the project memory structure |
context-kit recommend-stack idea.md |
Helps beginners pick a sane v0 stack from their idea |
context-kit seed idea.md |
Turns the raw idea into Claude-ready context |
context-kit doctor |
Catches environment / setup blockers before they bite |
context-kit orient |
Loads the current context for the next AI session (the bundled Claude Code skill calls this automatically) |
Plus inventory --check for CI drift detection, hotpath for
file-size budget warnings, and adopt for retrofitting
context-kit onto an existing project (the five-command loop above
assumes you're starting fresh; adopt is the entry point when you
already have code). All read-only by default. All exit cleanly for
an agent to parse.
Think create-next-app, but for the memory layer around your code.
Distilled from ~1,100 AI-assisted build sessions across ~18 months of shipping production code with an AI pair. Every rule here cost a real bug, a dead-end session, or a silent hallucination to learn.
The problem
AI-assisted projects decay in predictable ways:
- Context is lost across sessions. The model has no memory of what was decided yesterday or why. Every session starts cold.
- Docs drift from reality. Hand-maintained claims rot within days. The doc says "83 agents," the code has 101, and nobody notices until the AI confidently cites the wrong one.
- The AI becomes unreliable. Stale context plus drifted docs equals confident hallucinations. Trust erodes in both directions.
context-kit gives every new project the same proven structure from day one: a narrative anchor, a runtime-derived inventory, a drift verifier, session handoffs, and explicit AI/human collaboration conventions.
Install
pip install contextkit-ai
# or, isolated:
pipx install contextkit-ai
The PyPI distribution is contextkit-ai (the unsuffixed
context-kit name was rejected as too similar to another project).
The CLI command and the GitHub repo are still context-kit — only
the install command differs:
$ pip install contextkit-ai
$ context-kit init "My App"
Or from source (editable install):
git clone https://github.com/clwest/context-kit
cd context-kit
pip install -e .
Quick start
If you're new, just run this:
context-kit start
It opens a guided onboarding page in your browser that walks you
through naming the project, writing your idea, running the right CLI
commands, and getting your environment ready. You don't have to know
what init, seed, recommend-stack, doctor, or orient mean
before you begin — the wizard surfaces each one at the right moment.
For experienced builders who want the CLI directly, the full beginner loop, end-to-end:
# 1. Scaffold the project
context-kit init "My App"
cd my-app
# 2. Write a structured idea file (see docs/docs-pattern/IDEA_SCHEMA.md)
$EDITOR idea.md
# 3. Get an opinionated v0 stack pick (skip if you already know your stack)
context-kit recommend-stack idea.md
# 4. Bake the idea + recommendation into project context
context-kit seed idea.md
# 5. Verify your environment is ready (Python, git, Node, Expo, etc.)
context-kit doctor
# 6. Confirm the agent has what it needs at session start
context-kit orient
# 7. Build
claude # or your AI tool of choice — the bundled skill auto-loads
Each command is read-only-by-default (init and seed write; the
others just report). Exit codes are CI-friendly. Run any of them
individually whenever you need them; nothing depends on a fixed order
after the first few.
For experienced builders: skip steps 3 and 5 unless you want them.
The minimum loop is init → seed → orient.
With the optional Python scaffold (drift verifier + index builder):
context-kit init "My App" --with-scaffold
What's in the box
Two things ship together on purpose:
The tool — context_kit.py plus cli/, starter/, and examples/.
A zero-dependency Python CLI that scaffolds a new project and runs a
localhost onboarding page. Start here if you just want to begin.
The teaching material — 8 short guide docs (01_*.md through 08_*.md)
plus reference templates under templates/. Every new project gets its own
copy at docs/docs-pattern/. Read these to understand why the pattern
works.
The value isn't the files — it's the habits this structure enforces.
See examples/EXAMPLE_OUTPUT.md for the full generated tree.
CLI reference
context-kit COMMAND [options]
Commands:
init NAME Scaffold a new project with the context-kit pattern
adopt [PATH] Retrofit context-kit onto an EXISTING project (dry-run by default)
seed PATH Turn a structured idea file into project context (5 files)
recommend-stack PATH Suggest a beginner-friendly v0 stack from an idea file
start Launch the onboarding server for the current project
orient Print the assembled session-start orientation report
hotpath Show the largest files most likely to dominate AI context
inventory Generate a runtime-derived inventory of the project
doctor Read-only environment + setup diagnostics
audit Print a structured audit prompt for an AI agent
fix Print docs/audit/CLEANUP_PLAN.md as an actionable outline
exec Render docs/audit/CLEANUP_PLAN.md as an AI execution prompt
inspect Print a deterministic system map for any repo
Run `python3 context_kit.py <command> --help` for per-command options.
The audit → fix → exec loop (v0.12.0)
audit, fix, and exec are three small commands that work on
docs/audit/AUDIT_V1.md + docs/audit/CLEANUP_PLAN.md. They turn
context-kit into a full audit → plan → execute loop usable on any
repo, not just ones it scaffolded.
# 1. Print a senior-engineer audit prompt to stdout.
context-kit audit
# 2. Scaffold docs/audit/ with empty AUDIT_V1.md + CLEANUP_PLAN.md
# templates and embed the audit prompt at the bottom. Existing
# files are NEVER overwritten; a re-run reports "skipped" and
# flags "Audit files exist but appear unfilled" if scaffold text
# is still present.
context-kit audit --write
# 3. After you (or your agent) fill in the workspace, validate it
# by printing the parsed plan as a human outline.
context-kit fix
context-kit fix --phase 1 # one phase only
context-kit fix --next # first step of the first non-empty phase
# 4. Render the same plan as an AI execution prompt with explicit
# anti-scope-creep constraints, ready to paste into Claude /
# Cursor / Aider as a kickoff message.
context-kit exec
context-kit exec --phase 2
context-kit exec --next
exec's prompt has six fixed sections — Goal / Context /
Instructions / Phase tasks / Constraints / Output expectations.
The Output expectations block asks the agent to report back like
a teammate (concise, specific, action-oriented; what was checked,
what changed, what remains open, what's needed from the team next).
Agents trained on the audit prompt produce findings in the same
shape, so the loop stays consistent end-to-end.
For a real-world end-to-end example — running this loop on an
external Django + Celery project, with concrete numbers and a
stacked-PR pattern — see docs/WORKFLOWS_REAL_WORLD.md.
audit options
| Flag | Default | Purpose |
|---|---|---|
--write |
off | Scaffold docs/audit/AUDIT_V1.md + docs/audit/CLEANUP_PLAN.md and embed the audit prompt below the create/skip output |
fix options
| Flag | Default | Purpose |
|---|---|---|
--phase N |
(none) | Print only phase N. Mutually exclusive with --next |
--next |
off | Print only the first step of the first non-empty phase. Mutually exclusive with --phase |
exec options
| Flag | Default | Purpose |
|---|---|---|
--phase N |
(none) | Render an execution prompt scoped to phase N only. Mutually exclusive with --next |
--next |
off | Render a single-step execution prompt for the first step of the first non-empty phase. Mutually exclusive with --phase |
inspect — deterministic system map (v0.13.0)
Where audit outsources inspection to an LLM (the prompt is the
output), inspect reads the code and prints what it found:
context-kit inspect [PATH]
One short pass over the tree (~0.3s on a 7,900-file Django repo) produces:
- Primary stack from root manifests (Python / Django, JavaScript / Next.js, Rust, Go, etc.).
- Subsystems grouped at depth-1, with framework probes run inside each workspace child once. Monorepos with a Django backend and a Next.js frontend get per-child signals attached.
- Framework signals (Django + Next.js in v1): apps, models, URL patterns, task decorators, management commands, view files, Next.js routes, Next.js API routes.
- Hot files (top 5; the full leaderboard lives in
hotpath). - Risk patterns with stable IDs:
tracked-venv,tracked-env-file,multiple-env-templates,oversized-static-asset,tracked-build-artifacts. - Possibly stale docs (header-date grep, hardcoded 30-day threshold).
- Recommendations engine — 1–5 deterministic suggestions with
stable IDs,
confidencelabels (low / medium / high), awhyline grounded in the detected signal, and override-friendly framing. Phrased as suggestions, not bare commands.
Read-only by contract: never modifies files, never invokes an AI, never parses code as an AST. Filename / regex probes only.
inspect options
| Flag | Default | Purpose |
|---|---|---|
positional PATH |
. |
Project root to inspect |
--json |
off | Emit machine-readable JSON with locked top-level keys (repo, path, head, counts, primary_stack, subsystems, entry_points, framework_signals, hot_files, risks, stale_docs, documentation_intelligence, recommendations) |
--depth N |
2 |
Directory walk depth for monorepo / workspace detection. v1 uses depth-1 in practice; the flag is wired for future use |
Documentation Intelligence (v0.14.0)
Some repos treat docs/ as active AI memory infrastructure —
embedded into RAG corpora, retrieved by agents at runtime, or
injected into prompts as context. Treating that as disposable
clutter is dangerous. inspect detects this pattern and
surfaces it as a dedicated section.
Signals probed (filename / directory-existence only):
- Markdown file count under
docs/ SESSION_*.mdhandoffs indocs/handoffs/- Anchor docs at
docs/*_WHAT_IT_IS.md+docs/*_INVENTORY.md - Audit / cleanup folders directly under
docs/ - Process docs at
docs/docs-pattern/(orprocess//patterns/) - RAG corpus at
.rag/*.{jsonl,json}
Strength classifier (deterministic):
none— nodocs/, or no markdown under itlow— docs exist but no active-context signalsmedium— ≥ 2 distinct signal typeshigh— ≥ 2 signals AND scale (≥ 200 markdown files OR ≥ 50 handoffs)
The ## Documentation Intelligence report section appears at
medium and high strength with a standard interpretation +
caution block. At high, the recommendations engine fires
review-docs-context-first (confidence: high) ahead of
risk-driven suggestions so the "don't delete docs" warning
lands early enough to influence other cleanup PRs.
The JSON output's documentation_intelligence field is always
present and exposes the eight signal counts plus the strength
label, suitable for piping into downstream tools that decide
how aggressively to refactor a repo's docs/.
audit ↔ inspect bridge (v0.14.0)
context-kit audit now nudges the agent to run inspect first
("Before beginning, consider running context-kit inspect to
build a system map. If inspect output is available, use it to
ground your audit in real system structure instead of
assumptions.") and adds a sixth audit dimension —
"system topology and subsystem boundaries (if available)" —
so agents stop fabricating system structure when they could
have read it. Backward-compatible: nothing about the prompt's
existing five dimensions or P0/P1/P2 framing changes.
init options
| Flag | Default | Purpose |
|---|---|---|
positional NAME |
required | App name, e.g. "My App" or my-app |
--target DIR |
./<slug> |
Where to write the project |
--with-scaffold |
off | Include optional Python scaffold |
--force |
off | Overwrite existing files at the target |
--quiet |
off | Suppress per-file output |
adopt options
| Flag | Default | Purpose |
|---|---|---|
positional PATH |
. |
Project root to adopt |
--write |
off | Apply the plan; without this, adopt prints what would happen |
--html |
off | Also generate a static, self-contained HTML review report (single file, no server). Default destination is /tmp; the file opens in your default browser unless --no-browser is set |
--html-out PATH |
(none) | Explicit destination for the HTML report (implies --html). Default keeps the source tree untouched by writing under the system temp dir |
--no-browser |
off | Don't auto-open the HTML report in the browser (tests, headless, CI) |
--project-summary TEXT |
(none) | One-sentence project summary. When provided, adopt skips the matching prompt and reuses this string verbatim everywhere project context appears (BUILD_PLAN, PROJECT_WHAT_IT_IS, CLAUDE.md, Agent Launch Prompt) |
--next-task TEXT |
(none) | What the next AI session should help with. When provided, adopt skips the matching prompt and reuses this string verbatim across the same docs |
adopt is the entry point when you have an existing project
and want context-kit's docs layer wrapped around it. It detects
the project's stack — at the root (JavaScript / Python / Rust /
Go), one level deep into the seven recognized subdirs
(backend, frontend, web, mobile, api, client,
server), and one level deeper inside known workspace
containers (apps/, packages/, services/, crates/,
members/, workspaces/). When both root JavaScript and
Python manifests are present, adopt walks shallow source
evidence and picks the dominant side; when the root scan finds
no manifest but every workspace child shares the same stack
(Flutter / Solidity / Next.js / Rust), adopt promotes that into
the primary detection. Source code is never modified.
Output leads with a single Adopt Summary card — one block per run that names the concrete project's content:
- Type — derived project label (e.g. Web3 dApp, Smart contract project, Full-stack web app, Mobile app suite, Rust workspace / library, Go project, JavaScript app/tooling project) with a confidence band.
- Structure — per-child workspace stacks (e.g.
apps/forge → Solidity / EVM smart contracts,apps/next → Next.js / React web app). - Reality — overall assessment + confidence + a one-sentence why explaining how detection got there.
- Next actions — up to 5 prioritized actions that name the concrete things to inspect (specific child workspaces, unclassified directories, etc.).
Below the summary, adopt surfaces Workspace children (the depth-2 walk's per-child detail), Needs clarification (directories adopt sees but can't confidently classify — these are not errors), and the planned files it would create or augment. A Diagnostic signals section appears when adopt's internal failure taxonomy (MONOREPO_DEPTH_LIMIT, UNRECOGNIZED_ECOSYSTEM, etc.) flags anything worth knowing about — these are metadata, not failures in your repo.
adopt is dry-run by default; pass --write only when the
preview looks right. The CLAUDE.md augment-mode is byte-safe:
content outside <!-- context-kit:adopt:start --> / :end -->
markers is preserved verbatim, and re-running adopt --write
updates the managed block in place rather than stacking
duplicates. Pass --html to also write a single self-contained
review report that's much easier to scan than terminal output
on large repos.
Every adopt run — dry-run or --write — also produces an
Agent Launch Prompt: a single self-contained block you can
paste as the first message to your AI coding agent (Claude Code,
Cursor, Aider, etc.). It carries the detected project shape,
the user's own framing (via --project-summary / --next-task
or the two interactive prompts), a recommended read-only first
action, and explicit safety rules so the agent starts safely
without a question loop. After --write, the same prompt is
embedded in 00-START-NEXT-SESSION.md, CLAUDE.md, and
docs/BUILD_PLAN.md for later sessions.
The full design lives in docs/proposals/SESSION_009_ADOPT.md;
the v0.8.0 decision-layer ships are documented in
docs/handoffs/SESSION_010_ADOPT_V0_8_DECISION_LAYER.md.
start options
| Flag | Default | Purpose |
|---|---|---|
--host HOST |
127.0.0.1 |
Host to bind |
--port PORT |
0 (auto) |
Port; 0 lets the OS pick a free one |
--no-browser |
off | Don't auto-open the browser |
orient options
| Flag | Default | Purpose |
|---|---|---|
--project DIR |
cwd |
Project root to orient against |
orient is also the command the bundled Claude Code skill calls — see
skills/context-kit/SKILL.md. Every generated project gets a copy at
.claude/skills/context-kit/SKILL.md, so any agent run inside the
project picks it up automatically.
hotpath options
| Flag | Default | Purpose |
|---|---|---|
--project DIR |
cwd |
Project root to scan |
--single-threshold-kb N |
50 |
Warn on any single file larger than this |
--top-count N |
10 |
How many of the largest files to list |
--top-threshold-kb N |
200 |
Warn when the top-N sum exceeds this |
hotpath is read-only and always exits 0. It prefers git ls-files
when run inside a git repo, and falls back to a recursive walk
(skipping .git, node_modules, __pycache__, .venv, dist,
build, .next, coverage, .pytest_cache, *.egg-info, etc).
Use it when an AI session feels like it's looping or losing focus —
file size is a surprisingly good proxy for "this won't fit comfortably
in the agent's context."
seed options
| Flag | Default | Purpose |
|---|---|---|
positional PATH |
required | Path to the markdown idea file |
--project DIR |
cwd |
Project root (must already be init'd) |
--force |
off | Overwrite seed-owned content even when normally skipped |
--dry-run |
off | Print what would change; don't write files |
seed reads a structured markdown idea file (see
docs/docs-pattern/IDEA_SCHEMA.md inside any generated project for the
full format) and populates five files in your project: the narrative
anchor's TL;DR, the start-here doc's first milestone, the bootstrap
handoff, a product-framing topic, and a structured BUILD_PLAN.md.
Deterministic, no LLM. Re-runnable: managed-block markers
(<!-- context-kit:seed:start --> / :end -->) keep human content
outside them safe across re-runs.
The recommended greenfield workflow:
context-kit init "My App"
cd my-app && $EDITOR idea.md
context-kit seed idea.md
context-kit inventory --write
context-kit orient
claude # or your AI tool of choice
inventory options (mutually exclusive modes)
| Flag | Default | Purpose |
|---|---|---|
--project DIR |
cwd |
Project root to scan |
--write |
off | Update the managed block in docs/CONTEXT_KIT_INVENTORY.md |
--check |
off | Exit 0 only if the managed block is current; 1 if stale |
--json |
off | Print machine-readable JSON to stdout (read-only) |
recommend-stack options
| Flag | Default | Purpose |
|---|---|---|
positional PATH |
required | Path to the markdown idea file |
--json |
off | Print machine-readable JSON to stdout |
recommend-stack reads a structured markdown idea file (same format
as seed) and prints an opinionated v0 stack pick: what to use, why,
what NOT to add yet, risks, when to upgrade later. Deterministic, no
LLM, always exits 0. Designed for non-technical builders who know
their problem but not whether they need React, Flutter, Django, etc.
Seed integration: when ## Tech stack is missing from the
idea file, seed calls into the same engine and bakes the
recommendation into docs/BUILD_PLAN.md automatically (with an
attribution note). When ## Tech stack is present, seed trusts
your pick and leaves it alone.
doctor options
| Flag | Default | Purpose |
|---|---|---|
--project DIR |
cwd |
Project root to diagnose |
--json |
off | Print machine-readable JSON to stdout |
doctor runs a fixed set of read-only checks: Python version, git,
context-kit project structure, Node.js, Expo SDK + config,
file-watcher / ulimit pressure, and inventory freshness. Exits 1
only if a blocking issue is found; warnings never affect the exit
code. Specifically tuned for the EMFILE / Expo Go SDK mismatch /
deprecated expo-cli friction we hit when dogfooding on Munchkin App.
inventory generates runtime-derived counts (CLI subcommands, guide
docs, templates, tests, package metadata, hot-path summary, etc.)
and writes them between two markers:
<!-- context-kit:inventory:start -->
<!-- context-kit:inventory:end -->
Everything outside the markers is human-written commentary and is
preserved on every --write. Use --check in CI to fail the build
when the inventory drifts from the code that ships in the same commit.
What gets generated
my-app/
├── context_kit.py # runtime entry point (for `start`)
├── cli/
│ ├── __init__.py
│ └── server.py # onboarding server
├── 00-START-NEXT-SESSION.md # first-session entry point
├── CLAUDE.md # AI session entry rules
└── docs/
├── MY_APP_WHAT_IT_IS.md # narrative anchor (stub)
├── MY_APP_INVENTORY.md # runtime anchor (stub)
├── TRUST_CALIBRATION.md # AI ↔ human calibration log
├── docs-pattern/ # the teaching framework (copied in full)
├── handoffs/
│ └── SESSION_001_BOOTSTRAP.md
└── topics/
└── infrastructure.md # first subsystem stub
With --with-scaffold you also get scaffold/python/doc_claim_verification.py
and scaffold/python/build_docs_index.py.
The generated project runs start standalone — no need to keep the
context-kit source repo around after bootstrapping.
Why docs/docs-pattern/ inside generated projects
context-kit is the tool. "docs-pattern" is the teaching material
the tool ships. Same relationship as create-next-app (tool) → next.js
(framework content it scaffolds).
The directory name docs/docs-pattern/ inside your generated project
preserves a stable reference: the 8 guide docs cross-link to each other
and to the templates by that path, and everyone who has seen the pattern
knows to look for it there. Keeping the directory name stable means the
guide docs don't need rewriting for every new project.
What's framework-agnostic, what's not
| Piece | Portable? | Notes |
|---|---|---|
| The 8 guide docs | ✅ Any stack | Principles, not code |
Reference templates in templates/ |
✅ Any stack | Markdown + a Python skeleton |
Starter tree under starter/root/ + starter/docs/ |
✅ Any stack | Pure Markdown |
| Bootstrap CLI + onboarding server | ✅ Python 3.9+ | stdlib only, no deps |
starter/scaffold/python/doc_claim_verification.py |
🟡 Python projects | Framework-neutral; wire into Django / Typer / etc. |
starter/scaffold/python/build_docs_index.py |
🟡 Python projects | Runnable standalone; trivially portable to Node |
Everything under starter/root/ + starter/docs/ works for any stack.
Everything under starter/scaffold/ is language-specific and opt-in.
Placeholders
The bootstrap derives every form from a single NAME:
| Placeholder | Input "My App" |
Input "donkey-betz" |
|---|---|---|
{{APP}} |
My App |
donkey-betz |
{{APP_SLUG}} |
my-app |
donkey-betz |
{{APP_UPPER}} |
MY_APP |
DONKEY_BETZ |
{{APP_TITLE}} |
My App |
Donkey Betz |
{{DATE}} |
today, YYYY-MM-DD | today, YYYY-MM-DD |
{{YEAR}} |
today's year | today's year |
Placeholders appear in both filenames ({{APP_UPPER}}_WHAT_IT_IS.md →
MY_APP_WHAT_IT_IS.md) and file contents.
Repo layout
context-kit/
├── README.md # this file
├── 01_two_doc_anchor.md # ┐
├── 02_drift_verifier.md # │
├── 03_topic_docs.md # │ teaching content
├── 04_session_handoffs.md # │ (8 guide docs)
├── 05_start_here.md # │
├── 06_dos_and_donts.md # │
├── 07_bootstrap_checklist.md # │
├── 08_collaboration_roles.md # ┘
├── templates/ # reference templates (generic)
├── context_kit.py # CLI entry point
├── cli/
│ ├── __init__.py
│ ├── bootstrap.py # `init` implementation
│ ├── placeholders.py # shared placeholder logic
│ └── server.py # `start` implementation
├── starter/ # files rendered into new projects
│ ├── root/ # → new project's root
│ ├── docs/ # → new project's docs/
│ └── scaffold/ # → optional, behind --with-scaffold
└── examples/
└── EXAMPLE_OUTPUT.md # annotated generated tree
When init runs, cli/, starter/, examples/ (and the source
context_kit.py) are excluded from the copy into
<project>/docs/docs-pattern/ — those are tooling, not teaching material.
The guide docs + templates/ + this README are copied in.
Separately, the runtime files needed to run start inside the generated
project (context_kit.py, cli/__init__.py, cli/server.py) are copied
to the generated project's root so it works standalone.
Core principles (the short version)
| Piece | File in generated project | Purpose |
|---|---|---|
| Narrative anchor | docs/<APP>_WHAT_IT_IS.md |
What is this system? — conceptual doc |
| Runtime anchor | docs/<APP>_INVENTORY.md |
What exists right now? — regenerable |
| Drift verifier | scaffold/python/doc_claim_verification.py |
Finds stale claims automatically |
| Topic docs | docs/topics/<subsystem>.md |
Embeddable deep-dives |
| Handoffs | docs/handoffs/SESSION_####_*.md |
Build history, one per session |
| Entry point | 00-START-NEXT-SESSION.md |
Where every session begins |
| Calibration log | docs/TRUST_CALIBRATION.md |
AI ↔ human calibration events |
Single principle: runtime wins. If a number is in a hand-written doc and the verifier says it's wrong, the verifier is right. Fix the doc, or tag it with a pointer header, and move on.
Development
Zero runtime dependencies (Python 3.9+ stdlib only). Quick local test:
# Scaffold into a temp directory
python3 context_kit.py init "Test App" --target /tmp/test-app --force
# Run onboarding from inside the generated project
cd /tmp/test-app && python3 context_kit.py start --no-browser
To iterate on starter templates, edit files under starter/ — placeholders
use {{NAME}} syntax. To iterate on the guide, edit 01_*.md through
08_*.md (these are copied as-is into every generated project).
Testing
Tests use only the standard library (unittest). From the repo root:
python3 -m unittest discover -s tests -t .
Three suites cover the surface area: placeholder derivation, end-to-end bootstrap into a temp directory, and a live onboarding server on an OS-picked port.
Installable CLI
pip install contextkit-ai is the supported install. The wheel ships
starter/, the 8 guide docs, the reference templates, and the
bundled Claude Code skill as package data inside the cli package,
so context-kit init works end-to-end after a wheel install:
pip install contextkit-ai
context-kit init "My App"
context-kit start
Editable installs (pip install -e .) work the same way — both modes
load packaged assets via importlib.resources, so there's no separate
"developer" code path.
Status
- Phase 1 (minimal working bootstrap) — ✅ shipped
- Phase 2 (rename to context-kit + onboarding server) — ✅ shipped
- Phase 3 (tests + pyproject + git init + README polish) — ✅ shipped
- Phase 4 (wheel packaging —
pip install contextkit-aiworks end-to-end) — ✅ shipped in 0.4.1 - Phase 5 (idea-to-context:
seedcommand) — ✅ shipped in 0.4.2 - Phase 6 (release workflow, CI install matrix) — in progress
The pattern is "human and AI working together," not "human using AI to do something for them." The 8 guide docs explain why. context-kit makes the first project cheap.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file contextkit_ai-0.14.0.tar.gz.
File metadata
- Download URL: contextkit_ai-0.14.0.tar.gz
- Upload date:
- Size: 287.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e51275b17f07ee612167b83d6f2c71125061b9ad3393d09548323e14f98995e6
|
|
| MD5 |
5c0dc68726edbf0c3d793c50155f2fc7
|
|
| BLAKE2b-256 |
ee8c3992ee4b6fa8ce489e4c2c770d9e071be06418496b77bb397a66b9aeb334
|
File details
Details for the file contextkit_ai-0.14.0-py3-none-any.whl.
File metadata
- Download URL: contextkit_ai-0.14.0-py3-none-any.whl
- Upload date:
- Size: 206.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1d4a29892896a1e7ca9de8fe316518fbc48c58a7ac8e77b9fa152749e4680f3e
|
|
| MD5 |
3ebdc878b8bbc4c38025b75e1870a196
|
|
| BLAKE2b-256 |
7546cedfae396a5e07289a55b3a01451f9d82378c45b460a0cce53f5baa13d24
|