codejunkie99

Contexthub — AI skill for Claude Code

AI community

Open-source, MCP-accessible context layer for AI agents and LLMs.

How to install Contexthub

This entry records only its repository, not the path inside it, so there is no exact command to give. Open codejunkie99/contexthub and copy the folder into ~/.claude/skills/, or the file into ~/.claude/agents/.

What Contexthub does

Open-source, MCP-accessible context layer for AI agents and LLMs.

Alternatives in AI

  • AIHawk — Open-source AI browser agent: describe any task in plain language and it autonomously browses, clicks, types a 30.3k ★
  • OpenSpace — "OpenSpace: The Skill Management Layer for AI Agents" -- https://open-space.cloud/ 7.5k ★
  • Axonhub — ⚡️ Open-source AI Gateway — Use any SDK to call 100+ LLMs 3.2k ★

README

ContextHub

An open-source, MCP-accessible context layer for AI agents and LLMs.

ContextHub gives every agent you use — Claude Code, Cursor, your own scripts — a single, self-updating memory drawn from the apps you actually live in. You decide, per-call, what each agent is allowed to see.

It is built around three ideas:

  1. One store, many agents. Connectors pull from your sources into a single local SQLite database. Every MCP client talks to the same memory.
  2. Ship lines, not documents. A line-level scorer assembles only the spans that answer the query, instead of dumping whole chunks into the prompt.
  3. Permissions are part of retrieval. Scope policies filter the candidate set before scoring, so blocked content never reaches the model.

Status: working MVP. Local-only, no auth. Ships with an interactive web console, a CLI, an MCP server, four example connectors (incl. paste-to-ingest), hybrid FTS5 retrieval, and a full unit-test suite. Use it as a starting point — not a hosted product.


Architecture

┌──────────────┐    ┌──────────────────┐    ┌──────────────┐
│  Connectors  │ →  │ Ingestion + tag- │ →  │  SQLite db   │
│ (gh, md, …)  │    │ ger + segmenter  │    │ items, lines │
└──────────────┘    └──────────────────┘    └──────┬───────┘
                                                   │
                                ┌──────────────────┴──────────────────┐
                                │     Permission policy (scopes)      │
                                └──────────────────┬──────────────────┘
                                                   │
                                ┌──────────────────┴──────────────────┐
                                │   Line-level retrieval scorer       │
                                └──────────────────┬──────────────────┘
                                                   │
                                ┌──────────────────┴──────────────────┐