refactor!: rename to @codemcp/knowledge with ade-knowledge binary - #32
Merged
Conversation
…nary Harmonize naming across the @codemcp/* ecosystem so developers have a consistent, predictable experience. Previously, package names and binary names varied wildly across different tools, forcing users to look up documentation for each one. - Root package renamed from `agentic-knowledge-mcp` to `@codemcp/knowledge` - Binary renamed from `agentic-knowledge` to `ade-knowledge` - MCP server sub-package `bin` field removed (dead weight, binary belongs on root) - All documentation updated to use `npx @codemcp/knowledge` invocation - CLI program name updated to `ade-knowledge` in help output - The routing behavior is unchanged: no args starts MCP server, with args runs CLI - Breaking change for users with MCP configs using the old binary name - Users invoking via `npx @codemcp/knowledge` are unaffected (npm resolves the binary) - Stub package `agentic-knowledge-mcp` should be published pointing to the new name
BREAKING CHANGE: Package renamed from agentic-knowledge-mcp to @codemcp/knowledge - Rename package to @codemcp/knowledge (CLI) and @codemcp/knowledge-server (MCP) - Binary names: ade-knowledge and ade-knowledge-server - Use tsup bundler for self-contained packages - Mark internal packages as private - CommonJS deps (commander, adm-zip) must be external due to require() of Node built-ins - Update pnpm to 10.32.1
mrsimpson
force-pushed
the
ade-consistent-naming
branch
from
March 12, 2026 08:14
89f93fb to
5877789
Compare
- Changed CLI .name() from 'ade-knowledge' to 'npx @codemcp/knowledge' - Changed server name from 'agentic-knowledge' to 'knowledge' - Updated USER_GUIDE.md npm install command - Updated requirements.md CLI command references
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
@codemcp/knowledge(CLI) and@codemcp/knowledge-server(MCP)ade-knowledgeandade-knowledge-serverBreaking Change
Package renamed from
agentic-knowledge-mcpto@codemcp/knowledge. Users should update their MCP configuration:{ "mcpServers": { "knowledge": { "command": "npx", "args": ["@codemcp/knowledge-server"] } } }Part of ADE Naming Convention
This is part of harmonizing naming across all
@codemcp/*packages for the Agentic Development Environment.