Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @copilotkit/pathfinder

## 1.14.0

### Minor Changes

- **`atlas` CLI**: New first-party command-line client shipped as `bin.atlas`. `atlas search` queries a Pathfinder knowledge server and `atlas feedback` submits feedback on results, with hardened `tools/call` response handling.
- **`prepublishOnly` Build Guard**: Added a `prepublishOnly` script so the published tarball always ships a fresh `dist/` (including `dist/atlas-cli.js`), preventing stale or missing build output from being released.
- **Atlas Foundation**: Off-by-default codebase-knowledge layer — additive schema, ratification endpoints, gardener, and webhook PR ingestion. Disabled unless explicitly enabled, so existing deployments are unaffected.

## 1.13.3

### Patch Changes
Expand Down
5 changes: 3 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@copilotkit/pathfinder",
"version": "1.13.3",
"version": "1.14.0",
"description": "The knowledge server for AI agents — index docs, code, Notion, Slack, and Discord into searchable, agent-accessible knowledge via MCP. Supports OpenAI, Ollama, and local transformers.js embeddings.",
"type": "module",
"repository": {
Expand Down
2 changes: 1 addition & 1 deletion src/cli.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ const program = new Command();
program
.name("pathfinder")
.description("The knowledge server for AI agents")
.version("1.13.3");
.version("1.14.0");

program
.command("init")
Expand Down