Dependency-free Python substrate for portable pathing, bootstrap, state telemetry, and local-LLM routing.
Project description
terminus-core
Dependency-free Python substrate for portable pathing, bootstrap, state, and local-LLM routing.
Who It Is For
Use terminus-core when you need code that survives relocation, nesting, and packaging without path breakage.
- Infrastructure and platform engineers building portable Python services.
- Local-first AI developers using Ollama without adding SDK dependencies.
- Teams that need deterministic startup, local telemetry, and contract drift checks.
Not a general AI framework. Not an orchestration platform. It is a portable infrastructure substrate.
60 Seconds: Understand, Compare, Try
Install:
pip install -e ".[test]"
pytest -q
Run the demo:
python examples/portable_demo.py
What you should see:
- Anchor-based path resolution instead of hardcoded paths.
- State and telemetry written through the same resolver.
- Ollama request that fails soft (error payload, not app crash) if service is unavailable.
Three Tiny Wins
1. Replace hardcoded paths
from terminus_core import PathResolver
paths = PathResolver.detect()
config_path = paths("ROOT", "config", "settings.json")
2. Portable bootstrap on any machine
from terminus_core import bootstrap, terminus
bootstrap()
log_path = terminus("STATE", "runtime.log")
3. Local Ollama routing without extra dependencies
from terminus_core import OllamaClient
client = OllamaClient(defaults={"reasoning": "qwen2.5-coder:7b"})
resp = client.generate(prompt="Summarize this file", model=client.get_model("reasoning"))
print(resp.success, resp.model, resp.error)
Why This Instead?
| Need | Typical stack | terminus-core | Scope note |
|---|---|---|---|
| Portable root/path detection | rootutils | PathResolver anchors plus workspace marker detection | Focused on deterministic anchor resolution |
| .env loading and bootstrap | python-dotenv + custom startup glue | bootstrap and load_env in stdlib | No framework integration layer |
| Local Ollama requests | ollama-python | OllamaClient over urllib with fail-soft responses | Ollama only, intentionally narrow |
| Budget-aware model routing | litellm (broad provider abstraction) | TokenRouter with local-first/downshift policy | Local-first policy, not multi-cloud brokering |
The Portability Problem It Solves
Most projects remove absolute paths but keep positional assumptions (flat siblings, fixed folder depth, fixed workspace roots). The system works until the project is nested, moved to another drive, or packaged differently.
terminus-core closes that last mile by resolving locations through logical anchors (ROOT, STATE, MEMORY_DB) instead of positional layout assumptions.
The Case for Deterministic Infrastructure
Most infrastructure failures are not algorithm failures. They are environment failures: path assumptions, dependency drift, and service coupling that appears only after relocation or packaging.
terminus-core addresses that risk directly:
- PathResolver removes positional assumptions by resolving logical anchors (ROOT, STATE, MEMORY_DB).
- StateManager keeps local telemetry and KV state portable, then verifies contracts via SHA-256 drift checks.
- TokenRouter and OllamaClient support local-first inference with budget-aware routing and fail-soft behavior.
- bootstrap provides deterministic startup without third-party bootstrap stacks.
- The stdlib-only mandate reduces attack surface and dependency maintenance overhead.
For teams shipping production systems, this is a continuity decision as much as a developer-experience decision: move the project tree, keep operating.
Core Components
- PathResolver: Workspace detection plus anchor resolution.
- bootstrap: sys.path setup, environment loading, logging, and a terminus callable.
- StateManager: Telemetry log, namespaced KV state, SHA-256 contract drift detection.
- TokenRouter: Budget-aware local model selection and downshift planning.
- OllamaClient: stdlib transport with retries, fallback chains, and fail-soft response objects.
Drop-In Starter
Use the demo as a starter baseline, then swap your current file paths to anchors one module at a time.
- Starter script: examples/portable_demo.py
- Migration path: replace path literals with PathResolver or terminus calls first, then move state and LLM calls.
5-Minute Migration
- Add terminus-core and call bootstrap in your entrypoint.
- Replace hardcoded paths with terminus("ROOT", ...), terminus("STATE", ...), or PathResolver.detect().
- Route local inference through OllamaClient and check response.success before consuming outputs.
- Persist critical checkpoints with StateManager.set_state and add trace blocks around risky operations.
Copy-Paste: Unified Example
from terminus_core import PathResolver, StateManager, OllamaClient
paths = PathResolver.detect()
state = StateManager.detect()
client = OllamaClient(defaults={"reasoning": "qwen2.5-coder:7b"})
state.set_state("startup_root", str(paths("ROOT")))
with state.trace("demo", "local_inference"):
result = client.generate(prompt="Return one sentence", model=client.get_model("reasoning"))
if result.success:
print(result.output)
else:
print("Ollama unavailable:", result.error)
Release and Adoption Checklist
- Publish package to PyPI and keep release notes current.
- Keep CHANGELOG updates small and frequent.
- Post one crisp comparison article: Why I built terminus-core instead of combining rootutils, dotenv, and Ollama tooling.
- Lead with a short relocation demo clip before architecture deep dives.
License
Dual licensed:
- AGPL-3.0-or-later for open-source usage.
- Commercial licensing available for closed-source or SaaS distribution (see COMMERCIAL_LICENSE.md).
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 terminus_core-0.2.0.tar.gz.
File metadata
- Download URL: terminus_core-0.2.0.tar.gz
- Upload date:
- Size: 38.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
df168a2aa3aee79115ceee0f7dd2a01705efdadc91fa471f55f06ec998ffa03d
|
|
| MD5 |
e7b7b37f8c1540d4e6e76a69a865c504
|
|
| BLAKE2b-256 |
a173b968dba97f810c7440a39bf37122934508c2686b1401b141c1264bf422f6
|
File details
Details for the file terminus_core-0.2.0-py3-none-any.whl.
File metadata
- Download URL: terminus_core-0.2.0-py3-none-any.whl
- Upload date:
- Size: 35.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6b54b74f270479cbbbb22052f73fd6833cd041a909fbc1550f22e47eb6276bb6
|
|
| MD5 |
b6b3dbe6acdb481883610a3682200ff5
|
|
| BLAKE2b-256 |
0fd572da6699ddc58ec577a77a5b3929325dcfb1b98b33061555b4dea68bb430
|