Skip to main content

roadmap-core

The roadmap graph: status derivation, dependency and relation edges, arc state, validation, and the markdown renderers behind roadmap/ROADMAP.md and ARCS.md.

Stdlib-only and dependency-free, which is the point rather than a nicety. Three properties depend on it:

  1. scripts/roadmap.py loads roadmap_core/graph.py by path, so a coding agent in a checkout can read the backlog with no install, no DB, no admin token and no network.
  2. The Lucille backend imports the same module, so a status derived by the API and a status rendered into the committed markdown cannot disagree — one implementation, two callers. That divergence is a failure this repo has been bitten by before.
  3. It is the extraction seam. The roadmap is being prepared to run as its own product whose default store is a single SQLite file with nothing to provision; a package that pulled in a web framework or an ORM could not be adopted by another repo without adopting Lucille with it.

Storage

store.py is the schema — one SQLite file, CREATE TABLE IF NOT EXISTS on first open, no migration step. stores.py is what you talk to:

LocalStore ApiStore
needs a writable path a call(method, path, payload)
provisioning none a running host
claim/release one BEGIN IMMEDIATE transaction one HTTP request
impact raises Unsupported the host's tickets

Both satisfy the same Store protocol, so a caller never branches on which it holds. ApiStore is constructed with the host's own caller and holds no token, no URL and no urllib import — auth stays entirely a host concern, and test_stores.py asserts that rather than trusting it.

from roadmap_core.stores import LocalStore

with LocalStore("roadmap/roadmap.db") as store:   # created if absent
    store.upsert_item({"key": "a-thing", "title": "A thing"})
    store.claim("a-thing", by="claude/some-branch")

From the CLI, --source local on push, claim, release and status, or ROADMAP_SOURCE=local once. ROADMAP_STORE sets the path.

Adopting it in another project

Measured end to end by tests/test_adoption.py, which runs the CLI as a subprocess against a scratch project with nothing on the path but this package — no backend, no FastAPI, no SQLAlchemy, no Postgres, no server, no token.

pip install "roadmap-core[files]"   # [files] adds PyYAML, which authoring needs
mkdir -p roadmap/items
export ROADMAP_SOURCE=local

That is the whole install. roadmap is a console script that comes with the package — there is nothing to copy. (It used to say curl -o scripts/roadmap.py <this repo>/scripts/roadmap.py, and this repo is private, so the package was installable, importable and useless to anyone outside it.)

Then the ordinary loop, which needs nothing else:

cat > roadmap/items/first-thing.yaml <<'YAML'
id: first-thing
title: The first thing to do
status: ready
evidence: |
  Why this is worth doing, and how you will know it worked.
YAML

roadmap push            # files -> store
roadmap ready           # what is startable
roadmap claim first-thing
roadmap release first-thing

The store is one SQLite file at roadmap/roadmap.db. There is nothing to provision and no migration to run: it is created on first open.

When something is off, ask

roadmap doctor          # is this project's setup actually working?
roadmap --version       # which roadmap-core is this?

doctor exits non-zero when something is genuinely broken and names the remedy. Run it first, because the way this setup fails is by looking fine: the read commands answer from the store, and a store nobody has pushed to is empty, so validate says "ok — 0 item(s), no problems" and ready says the backlog is finished. Both are green, confident and wrong. Same for a command run from outside the project: every path still resolves, and push reports "no item files to push", which reads as an empty backlog rather than as a wrong directory.

Those are the two failures tests/test_adoption.py was written after, and both are one line of doctor output:

FAIL  store       roadmap/roadmap.db holds 0 items while roadmap/items/ holds 7.
                  Every read command will report an empty backlog and call it ok.
                  Seed it: `roadmap push`

Two things that are conventions rather than choices, both found by doing this rather than by reading the code:

  • Your project root is the nearest ancestor holding roadmap/items or .git, so the commands work from anywhere inside it. Set ROADMAP_REPO_ROOT to pin it. Deliberately not bare roadmap/: that is a directory the tool creates, so keying on it let one command run in the wrong place mint the marker that made that place look like a project forever after.
  • Authoring is writing a YAML file, not calling an API. push is what moves it into the store; there is no roadmap new. That is deliberate: filing an item belongs in a diff somebody reviews.

ROADMAP_SOURCE=local selects the SQLite store. Without it the CLI expects the API store, which is how Lucille runs it — see roadmap_core.stores.

CI

Copy templates/roadmap.yml to .github/workflows/roadmap.yml. That is the whole CI story for the floor:

push      # files -> store, rebuilt fresh each run
validate  # schema, dangling dependencies, cycles
sync --check   # is the committed ROADMAP.md still what the graph renders?

No schedule, no credentials, no bot identity, no commit back to the default branch, no self-hosted runner. tests/test_adoption.py reads the commands out of that file and runs them, so a template that has drifted from the CLI fails rather than reading as tested.

The third line is the one that earns the workflow. ROADMAP.md is generated but committed — that is what lets an agent read the backlog with no install and no network — and a generated file nobody regenerates is a file that lies.

Do not commit roadmap/roadmap.db. It is derived: push rebuilds it from the YAML on first open, and a binary file in git conflicts on every claim. The files are the record; the store is the transaction that decides who gets one.

Upgrading to a served store

The floor's simplicity comes from one property: the store is inside the checkout, so there is no second copy to drift from. Move the store to a server — so that claims are visible across machines the moment they are taken, rather than when a branch merges — and four things come back, none of which the template can supply for you:

What returns Why
A credential step the store is now behind auth, and the CLI needs a token per run
A wait-for-reachable step a concurrent deploy can hold the store down, and being early is not being wrong
pull and a bot commit the store now knows things no checkout does, and they have to land in the files an agent reads
A schedule finishing an item is usually a code change somewhere else entirely, so no path filter can catch it — only re-asking on a clock can

ApiStore is constructed with your own caller, so the auth stays yours (see the table under Storage). Lucille's .github/workflows/roadmap-sync.yml is the worked example of all four, and the reason it is not shipped as a template: almost every line of it is a consequence of Lucille's own deployment, and handing an adopter that machinery for a problem they do not have reads as required rather than as one option.

What is NOT here

HTTP, auth, and the CLI. The graph is pure functions over plain dicts keyed by key, so the same code serves DB rows, API payloads and parsed YAML with no adapter. Lucille's own persistence stays in backend/app/crud/roadmap.py over SQLAlchemy; the two definitions of the same three tables are held together by backend/tests/test_roadmap_store_parity.py, which asserts both the columns and the row dicts the two readers produce.

The package's tests live in tests/ here and import nothing outside the stdlib. .github/workflows/roadmap-core-tests.yml runs them in a job that fails if app, fastapi, sqlalchemy or yaml can be imported at all — the isolation is asserted, not assumed.

Download files

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

Source Distribution

roadmap_core-0.2.2.tar.gz (95.3 kB view details)

Uploaded Source

Built Distribution

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

roadmap_core-0.2.2-py3-none-any.whl (74.5 kB view details)

Uploaded Python 3

File details

Details for the file roadmap_core-0.2.2.tar.gz.

File metadata

  • Download URL: roadmap_core-0.2.2.tar.gz
  • Upload date:
  • Size: 95.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for roadmap_core-0.2.2.tar.gz
Algorithm Hash digest
SHA256 f883c7c40d4aaf551aeed6cfdfd18beeaf70d5407e44c7ee9717e3e75bb9c429
MD5 f5cb3374f09ade21a9b5b7744f521f2f
BLAKE2b-256 900f368c883726af319d316454af1481c14cd2266960b19f4671808c579423ab

See more details on using hashes here.

Provenance

The following attestation bundles were made for roadmap_core-0.2.2.tar.gz:

Publisher: publish.yml on gald33/roadmap-core

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

File details

Details for the file roadmap_core-0.2.2-py3-none-any.whl.

File metadata

  • Download URL: roadmap_core-0.2.2-py3-none-any.whl
  • Upload date:
  • Size: 74.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for roadmap_core-0.2.2-py3-none-any.whl
Algorithm Hash digest
SHA256 f0c84143b36aed71f410f7c1103f6255fbe928b5b41de7142f30d01001279a8d
MD5 e16ce818e4f74a44470a9f717e0b4a87
BLAKE2b-256 b9d3f64d46ad93bbfdb7f37430e8b75eb15ec16a6ff03aff4e3f4515b3284740

See more details on using hashes here.

Provenance

The following attestation bundles were made for roadmap_core-0.2.2-py3-none-any.whl:

Publisher: publish.yml on gald33/roadmap-core

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

Release history Release notifications | RSS feed

0.3.0

2 files

0.2.3

2 files

This release

0.2.2 This release

2 files

0.2.1

2 files

0.2.0

2 files

0.1.0

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page