Local-first Engineering Intelligence for software repositories
Project description
DevTime
Local-first Engineering Intelligence for software repositories.
DevTime helps a codebase explain itself from evidence.
It scans code, tests, configs, routes, and decisions to identify supported software concepts, link claims to files, surface uncertainty, and warn about a narrow set of risky changes.
No cloud. No telemetry. No code execution. No AI required.
Watch the 2-minute demo: DevTime scans a repo locally, explains concepts from evidence, surfaces uncertainty, catches a risky diff, and shows how a corroborated decision improves understanding.
Try DevTime in 60 seconds
git clone https://github.com/Shakargy/devtime.git
cd devtime
python -m venv .venv
source .venv/bin/activate
pip install -e ".[dev]"
cd examples/demo-saas
dtc init
dtc scan
dtc concepts
dtc explain "Billing Webhooks"
On Windows PowerShell:
git clone https://github.com/Shakargy/devtime.git
cd devtime
python -m venv .venv
.venv\Scripts\Activate.ps1
pip install -e ".[dev]"
cd examples/demo-saas
dtc init
dtc scan
dtc concepts
dtc explain "Billing Webhooks"
You should see Billing Webhooks explained from evidence, including supported claims, file references, uncertainty, Understanding Score, and Understanding Debt.
To test risk review, make a local change first, then run:
dtc risk --diff
A full, copy-pasteable walkthrough (including the risk-diff and corroborated-decision steps) is in DEMO_SCRIPT.md.
Why this exists
Git remembers code. It does not remember understanding. It does not tell you why a behavior exists, what evidence supports it, or what nobody has decided yet. As AI tools generate code faster than teams can review it, that missing understanding becomes the bottleneck.
DevTime builds evidence-backed repository memory: a local layer that says what a repository can prove, and - just as importantly - what it cannot prove yet.
Who it is for
DevTime is for developers reviewing unfamiliar code, teams using AI coding tools, and maintainers who want repository understanding to be backed by evidence instead of generated summaries.
It is useful when you want to ask:
- where is authentication actually implemented?
- what files prove that billing webhooks exist?
- what is still uncertain?
- did this diff touch a risky concept?
- is there a decision explaining this behavior?
What DevTime does
- Detects concepts from routes, tests, configs, dependencies, and docs.
- Explains from evidence by linking claims to files and signals.
- Surfaces uncertainty when evidence is missing or weak.
- Scores understanding with an Understanding Score and Understanding Debt label.
- Reviews narrow risky diffs with advisory findings from local memory.
- Records decisions locally so rationale can reduce uncertainty when corroborated by code.
Supported concepts
V0 detects six supported concept families. It does not discover arbitrary domain concepts yet:
- Authentication
- Billing Webhooks
- Background Jobs
- Data Export
- Admin Permissions
- File Uploads
Anything outside these six is out of scope for V0. See LIMITATIONS.md.
What DevTime does not do
- It does not execute your code.
- It does not send code or data over the network.
- It does not require or call an AI model.
- It does not guarantee correctness or safe changes.
- It does not replace code review or architecture decisions.
- It is not a documentation generator, a static analyzer, an observability tool, a productivity tracker, or an AI coding agent.
Trust model
- DevTime stores local repository memory in
.devtime/(a local SQLite database). - No network access during a scan.
- No code execution during a scan.
- Ignored directories are pruned before scanning; ignored files and secrets must never become evidence or claims.
- Every claim must link to evidence - no claim without evidence.
- Weak evidence produces uncertainty, not confidence.
- Usage is not decision: that a dependency is used does not mean someone decided why.
- Risk review is advisory by default - it does not block PRs.
Commands
| Command | Purpose |
|---|---|
dtc init |
Create local .devtime memory. |
dtc scan |
Scan the current repository and extract evidence-backed signals. |
dtc concepts |
List detected concepts with confidence and Understanding Debt. |
dtc explain <concept> |
Explain a concept: claims, evidence, confidence, uncertainty, Understanding Debt. |
dtc context <concept> |
Create a governed Context Pack for agents or humans. |
dtc risk --diff |
Review a git diff for risky changes using local evidence (advisory). |
dtc decision add |
Add a local decision record that can reduce uncertainty. |
(Also available: dtc evidence, dtc debt, dtc status, dtc doctor --privacy,
dtc export, dtc reset.)
Requires Python >= 3.11 and git. See QUICKSTART.md for a step-by-step first run and troubleshooting.
Installation
Recommended source install for now:
git clone https://github.com/Shakargy/devtime.git
cd devtime
python -m venv .venv
source .venv/bin/activate
pip install -e ".[dev]"
Windows PowerShell:
git clone https://github.com/Shakargy/devtime.git
cd devtime
python -m venv .venv
.venv\Scripts\Activate.ps1
pip install -e ".[dev]"
Planned PyPI install (after the package is published and verified):
pipx install devtime
Example output
$ dtc explain "Billing Webhooks"
Concept: Billing Webhooks
Supported claims:
- Billing Webhooks is present and supported by behavior evidence.
type: concept confidence: 0.86 evidence: src/billing/stripe-webhook.ts, tests/stripe-signature.test.ts
- Billing Webhooks has active route handling.
type: behavior confidence: 0.82 evidence: src/billing/stripe-webhook.ts
- Billing Webhooks verifies webhook signatures.
type: behavior confidence: 0.85 evidence: src/billing/stripe-webhook.ts
Uncertainty:
- No decision was found explaining key choices for Billing Webhooks.
Understanding Score: 58 / 100
Understanding Debt: medium
causes:
- missing or uncorroborated decision evidence
- no confirmed owner
Understanding Score is higher = better understanding; Understanding Debt is a label (low/medium/high), not the same number.
Proof
DevTime runs on examples/demo-saas and on real repositories. During Reality
Validation it detected - and then learned from - real failures (Next.js App Router
blindness, a false Billing Webhooks detection on a generic webhook system, a DB
migration mis-counted as Background Jobs evidence, and more). Each failure became a
fixture so it cannot silently regress.
- Tests grew from 13 to 88 as real failures became fixtures.
- Scan time on a 355-file real repo dropped from ~27.3s to ~0.48s after ignored- directory pruning.
Full evidence, before/after examples, and the validation reports are in
PROOF.md and reports/reality-validation/.
Privacy and safety
- Runs entirely locally; nothing leaves your machine during a scan.
- No code execution and no network calls during scanning.
- Secrets and ignored files are excluded from evidence by design (
dtc doctor --privacyreports the boundaries). dtc resetdeletes local memory; your source code is never modified.
Known limitations
DevTime is a heuristic scanner, not a full compiler or semantic analyzer. It is currently strongest on TypeScript / Next.js / Express / FastAPI-style repositories that resemble its fixtures. False positives and false negatives are possible. Understanding Debt is a product signal, not an objective universal truth.
Read the full list - including framework coverage, risk-review scope, and what is intentionally not built yet - in LIMITATIONS.md.
Roadmap
This is an early, local-first V0 focused on being trustworthy before being large. Not yet built (intentionally): git-history signals, wired MCP transport, an AI provider, a UI, and any cloud/team/enterprise features. See ROADMAP.md.
Contributing
The most valuable contribution is a fixture: a small repository pattern plus the expected concepts, allowed claims, forbidden claims, and required uncertainty. If DevTime gets something wrong on your code, that wrong output can become a fixture so it never regresses. See CONTRIBUTING.md.
License
Licensed under the Apache License 2.0. See LICENSE.
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 devtime_ei-0.1.0.tar.gz.
File metadata
- Download URL: devtime_ei-0.1.0.tar.gz
- Upload date:
- Size: 56.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
832e34cba729ee123c6c5427cc75884cb6903b7df0124fb60b23c189835444b9
|
|
| MD5 |
042005efd4faf1d65df6d0e043f21a21
|
|
| BLAKE2b-256 |
4418341edb6b7e6cb3cd417096ad98b3f0724adb1e070af8f6f30f841bb4bb6a
|
File details
Details for the file devtime_ei-0.1.0-py3-none-any.whl.
File metadata
- Download URL: devtime_ei-0.1.0-py3-none-any.whl
- Upload date:
- Size: 68.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
21a8782834508fa34ce599d2d10a459d9314d36ea68f110d5add1eec8e2b3568
|
|
| MD5 |
0175cec91a7032be181bbef8ecc91670
|
|
| BLAKE2b-256 |
3dba6b63d4349be12a6676834233ddb7977677abc951179aa562e66267b3bdfb
|