Skip to content

Releases: Ian2073/Intelligence-Hub

Intelligence Hub v0.1.0-rc.3

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.

Intelligence Hub v0.1.0-rc.2

Pre-release

Choose a tag to compare

@Ian2073 Ian2073 released this 14 Jul 08:07

Superseded by v0.1.0-rc.3.

Intelligence Hub v0.1.0-rc.2

This release candidate fixes clean-checkout CI portability for the Obsidian characterization test suite.

Fixed

  • Obsidian characterization tests no longer depend on generated files from a developer workspace.
  • Tests generate deterministic temporary Vault data during execution.
  • Clean GitHub Actions checkout now runs the full test suite successfully.

Included platform capabilities

  • Local-first canonical SQLite repository
  • Proposal Trust Layer
  • Evidence-backed Event and Insight persistence
  • FastAPI API and local Dashboard
  • Repository-driven Obsidian Knowledge Workspace
  • Zero-secret demo mode
  • Platform-neutral CLI
  • Optional Hermes compatibility boundary

Requires Python 3.11.

Intelligence Hub v0.1.0-rc.1

Pre-release

Choose a tag to compare

@Ian2073 Ian2073 released this 14 Jul 05:36

Superseded by v0.1.0-rc.2 due to a clean-checkout CI fixture issue.

Intelligence Hub v0.1.0-rc.1 The first public release candidate of Intelligence Hub, a local-first, evidence-driven intelligence platform. ## Intelligence lifecycle Information → Evidence → Proposal → Validated Knowledge → Insight → Decision → Actionable Brief ## Highlights - Zero-secret deterministic demo mode - Canonical SQLite repository - Proposal Trust Layer with evidence, confidence, provenance, and validation - Canonical Event and Insight persistence - FastAPI API and local Dashboard - Repository-driven Obsidian Knowledge Workspace - Stable note identity and semantic WikiLinks - Proposal review workflow - Platform-neutral CLI - Optional Hermes compatibility boundary - Local-first operation without requiring an API key - 220 automated tests - Clean-room installation and startup verification ## Quickstart Requires Python 3.11. powershell python -m venv hub_env .\hub_env\Scripts\python.exe -m pip install -r requirements.txt Copy-Item .env.example .env .\hub_env\Scripts\python.exe scripts\intelligence_hub.py seed-demo .\hub_env\Scripts\python.exe scripts\intelligence_hub.py serve --seed-demo