Skip to content

Intelligence Hub v0.1.0-rc.3

Pre-release
Pre-release

Choose a tag to compare

@Ian2073 Ian2073 released this 14 Jul 16:15
535a8b8

Intelligence Hub v0.1.0-rc.3

This release candidate aligns the public project around Intelligence Hub as the canonical platform and improves the clean-install experience, release evidence, and repository hygiene.

Highlights

  • Aligns user-facing platform identity with Intelligence Hub while retaining Hermes only as an optional research-agent integration and legacy compatibility layer.
  • Adds an installable cross-platform intelligence-hub CLI with PEP 440 package version 0.1.0rc3.
  • Adds a reproducible Proposal Trust Layer walkthrough based on the real deterministic demo records.
  • Adds verified Dashboard Overview, Insights, and Proposal Review screenshots generated from the running zero-secret demo.
  • Removes internal implementation plans, duplicate contributor guidance, stale committed sample output, and obsolete public narrative files.
  • Adds progressive Ruff checks, public repository hygiene tests, screenshot verification, and pre-publish audit coverage to CI.

Verification

  • Main release-commit CI: Ubuntu Python 3.11 228 passed, 1 warning; Windows Python 3.11 228 passed, 1 warning. Both jobs passed Ruff, compileall, smoke, acceptance, fixture demo, zero-secret seed, API health, first-run, and pre-publish audit.
  • Exact-tag CI: Ubuntu Python 3.11 228 passed, 1 warning; Windows Python 3.11 228 passed, 1 warning. Both jobs passed every release gate.
  • Exact-tag clone: 228 tests passed in supplemental source verification; the clean Python 3.11 package install and executable paths were verified by the exact-tag CI jobs.
  • Deterministic demo seed: first run Seeded=True; repeated run Seeded=False with unchanged canonical counts.
  • Obsidian demo projection: 204 notes, 0 stale notes, 0 broken WikiLinks.
  • Local Ruff was not rerun because the original local environment could not install additional packages; clean main and exact-tag GitHub Actions Python 3.11 runners installed and passed Ruff.

Quickstart

Requires Python 3.11.

python -m venv hub_env
.\hub_env\Scripts\python.exe -m pip install -e .
Copy-Item .env.example .env
.\hub_env\Scripts\intelligence-hub.exe seed-demo
.\hub_env\Scripts\intelligence-hub.exe serve --seed-demo

Linux/macOS:

python3.11 -m venv hub_env
source hub_env/bin/activate
python -m pip install -e .
cp .env.example .env
intelligence-hub seed-demo
intelligence-hub serve --seed-demo

Known limitations

  • SQLite remains the only canonical repository implementation.
  • The Dashboard is local-first and single-user; authentication and multi-user support are not implemented.
  • PostgreSQL, causal graphs, Kubernetes, and a public writable hosted demo remain roadmap items.
  • Hermes remains a compatibility entrypoint and future optional proposal producer; it does not own canonical persistence.