Skip to content

Releases: pathrule/core

Pathrule Core v0.1.0

12 Jun 22:03

Choose a tag to compare

Highlights

  • Per-prompt relevance. The engine embeds each prompt and ranks your memories, rules, and skills, so the hook delivers only the few most relevant full bodies for the task at hand instead of dumping everything. The agent answers from what it is given rather than searching the repo.
  • Bring your own key, or stay lexical. With a Voyage or OpenAI embedding key you get full semantic relevance; with no key it degrades gracefully to keyword ranking. Nothing blocks the prompt.
  • Cloud-free by construction. The open-source closure has zero cloud coupling — local-first, embedded SQLite, no account, Apache-2.0.
  • Native compilation + navigation. Path-scoped knowledge compiles into your turn-zero instruction files, with lightweight per-prompt routing hints toward the files that matter.

This release corresponds to @pathrule/[email protected] on npm.

Pathrule Core v0.0.19

09 Jun 10:37

Choose a tag to compare

Pathrule Core v0.0.18

09 Jun 09:18

Choose a tag to compare

Pathrule Core v0.0.17

07 Jun 22:17

Choose a tag to compare

Highlights

  • GitHub Copilot support. Pathrule now treats GitHub Copilot as a first-class agent target alongside Claude Code, Cursor, Codex, and Windsurf: MCP registration, auto-applied instruction files, skills, and hook-based context injection across the CLI and editor surfaces.

Full Changelog: v0.0.16...v0.0.17

Pathrule Core v0.0.16

06 Jun 05:14

Choose a tag to compare

The first public release of Pathrule Core: the context layer for AI coding agents, now open source under Apache-2.0.

Highlights

  • Path-scoped knowledge engine. Memories, rules, and skills attach to workspace paths; agents get exactly the context that belongs to the path they are working in, injected just-in-time.
  • 22-tool MCP surface. The full pathrule_* tool contract over stdio, identical to the one Pathrule Cloud serves, locked by a cross-edition parity suite.
  • Fully local, no account. An embedded SQLite store under ~/.pathrule runs the entire loop offline: zero infrastructure, zero login, zero network.
  • Offline hooks. A locally maintained hook index injects path-scoped reminders into every tool call (PreToolUse / UserPromptSubmit), with no daemon.
  • Bring-your-own-key intelligence. Optional LLM intent routing and semantic memory search with your own Anthropic / Voyage / OpenAI key; deterministic fallbacks keep everything working with zero keys.
  • Contract-tested backends. One assertion suite runs against both the in-memory reference and the SQLite backend, so behavior cannot silently diverge.

Install

npm i -g @pathrule/cli
cd your-project
pathrule init --local
pathrule setup --local

Works with Claude Code, Cursor, Codex, Windsurf, and any MCP client.

The version matches the published @pathrule/[email protected] binary, which bundles exactly this source.