Skip to main content

spine

Minimal runtime coordination layer for Python projects.

One registry. One freeze. One place where reality gets decided.

This README is for humans browsing GitHub. The complete technical reference lives as inline comments at the top of each .py file — that's where AI assistants should look. Open core.py or observers.py and read the comment block before the imports.

The problem

Every Python project past ~5 files ends up with the same mess. File A imports a path from file B, file C hardcodes a different path, file D assumes the working directory, file E does its own config loading, and file F has no idea what file E decided. Nothing agrees on where things are, how things are loaded, or what things are called.

The fix

A single coordination layer every file reads from. Two rules: before boot, register capabilities. After boot, registry is frozen and read-only for the entire run. No dependency injection. No plugin forest. No abstract factories.

Install

pip install ghostspine

Quick start

from spine import Core

c = Core()
c.register("paths.data", Path("./data").resolve())
c.register("paths.logs", Path("./logs").resolve())
c.register("db.backend", SQLiteBackend())
c.boot(env="dev")

data_dir = c.get("paths.data")    # always the same answer
backend  = c.get("db.backend")    # always the same instance
run_id   = c.context.run_id       # unique per run

After boot(), calling register() raises CoreFrozen. That's the entire point.

Full documentation

Open core.py. The first 160 lines are a complete reference — API, design decisions, error types, hit counter usage, file layout, and future split strategy. All as comments. You can't miss it.

Observer (fully detachable)

observers.py watches the core's hit counter and error diagnostics, then sends formatted messages through pluggable backends (Slack, WhatsApp, stdout, custom callbacks). The core has zero knowledge it exists. Delete the file and nothing breaks.

Open observers.py for its full inline documentation.

File layout

spine/
├── __init__.py      re-exports (the stable contract)
├── core.py          Core, RunContext, errors, test harness
└── observers.py     detachable: Observer + backends

License

MIT

Release files for ghostspine 0.3.1

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for ghostspine 0.3.1
File Size Uploaded
ghostspine-0.3.1.tar.gz 22.6 kB Details

Built distribution (wheel)

Table of built distributions (wheels) for ghostspine 0.3.1
File Interpreter ABI Platform
ghostspine-0.3.1-py3-none-any.whl Python 3 none any Details

Total release size: 43.8 kB

Release files / ghostspine-0.3.1.tar.gz

Download URL ghostspine-0.3.1.tar.gz
Size 22.6 kB
Tags Source
SHA-256 checksum
How to use checksums
2cfc111c57a58991034faee477f0fcbaf46f8d2551f881a743e533e5d22bbcb9
BLAKE2b-256 checksum
How to use checksums
e66d1a647d671a6771daff2cb03395f7e9eb34ac7980b2e52f0777ba909c3433
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.10

Release files / ghostspine-0.3.1-py3-none-any.whl

Download URL ghostspine-0.3.1-py3-none-any.whl
Size 21.2 kB
Tags Python 3
SHA-256 checksum
How to use checksums
88167a923ec4d6fade72bb3b4bfe2f179cb4c7067dc0204dfbf3c6015cce0bec
BLAKE2b-256 checksum
How to use checksums
a79f8806a2fb5579a918c0bfcee74300adeb0ab6d56551a3bff863e114a5aac0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.10

Release history Release notifications | RSS feed

This release

0.3.1 This release

2 release files

0.3.0

2 release 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