From 5eb24efe0069f236796a470b8dfba4d21dd44cb8 Mon Sep 17 00:00:00 2001 From: Jordan Ritter Date: Sat, 6 Jun 2026 12:14:29 -0700 Subject: [PATCH] Release 1.14.0: ship the atlas CLI Bump @copilotkit/pathfinder 1.13.3 -> 1.14.0 to trigger the npm publish of the new version carrying bin.atlas. Source code is unchanged from #94 (already deployed); this is a version-only release cut. - atlas CLI (atlas search + atlas feedback) shipping as bin.atlas - prepublishOnly build guard so the tarball always ships dist/ - Atlas foundation (off-by-default knowledge layer) Bumps package.json, package-lock.json, src/cli.ts (version-sync gate), and adds the 1.14.0 CHANGELOG entry. --- CHANGELOG.md | 8 ++++++++ package-lock.json | 5 +++-- package.json | 2 +- src/cli.ts | 2 +- 4 files changed, 13 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a64c145..633b59c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/package-lock.json b/package-lock.json index 26c4251..8229fe6 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@copilotkit/pathfinder", - "version": "1.13.3", + "version": "1.14.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@copilotkit/pathfinder", - "version": "1.13.3", + "version": "1.14.0", "license": "Elastic-2.0", "dependencies": { "@discordjs/rest": "^2.6.1", @@ -31,6 +31,7 @@ "zod": "^3.23.8" }, "bin": { + "atlas": "dist/atlas-cli.js", "pathfinder": "dist/cli.js" }, "devDependencies": { diff --git a/package.json b/package.json index 8edbb72..bfdcc53 100644 --- a/package.json +++ b/package.json @@ -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": { diff --git a/src/cli.ts b/src/cli.ts index 489652e..8544e46 100644 --- a/src/cli.ts +++ b/src/cli.ts @@ -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")