From c69ca6308e7e03a74be4c445bf0e4a12d9d31156 Mon Sep 17 00:00:00 2001 From: Claude Date: Wed, 18 Mar 2026 14:00:43 +0000 Subject: [PATCH 1/2] feat: add CLI binary entry point to @codemcp/ade ## Intent Enable users to run `npx @codemcp/ade setup` by exposing the CLI binary from the main package. Previously only `@codemcp/ade-cli` had a bin entry, making the main package unusable as a CLI via npx. ## Key changes - Remove `"private": true` so the package can be published to npm - Add `"bin": {"ade": "packages/cli/dist/index.js"}` to expose the CLI - Add `"publishConfig": {"access": "public"}` for public npm publishing https://claude.ai/code/session_013WVNnTozRKrc3SoP9oLC4N --- package.json | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index 3b86dfb..7cb1dec 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,6 @@ { "name": "@codemcp/ade", "version": "0.1.1", - "private": true, "description": "ADE CLI — Agentic Development Environment setup and configuration tool", "license": "MIT", "keywords": [ @@ -20,6 +19,12 @@ "pnpm": ">=9.0.0" }, "type": "module", + "bin": { + "ade": "packages/cli/dist/index.js" + }, + "publishConfig": { + "access": "public" + }, "scripts": { "build": "turbo run build", "build:clean": "turbo run clean:build", From c50c8e2649a18c450c51bd0eaf4ed94a66b739f8 Mon Sep 17 00:00:00 2001 From: Claude Date: Wed, 18 Mar 2026 14:01:13 +0000 Subject: [PATCH 2/2] docs: add tldr with npx command to readme https://claude.ai/code/session_013WVNnTozRKrc3SoP9oLC4N --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 62dfb25..8f73b05 100644 --- a/README.md +++ b/README.md @@ -3,6 +3,8 @@ > A structured information architecture for harness engineering — organizing what > coding agents know into composable, team-shared layers. +**TL;DR** — Run `npx @codemcp/ade setup` in your project to get started. + ## The alignment problem The biggest challenge in agentic development is not agent capability — it is alignment.