diff --git a/README.md b/README.md index 6154b57..15f6c45 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,8 @@ # Agent CLI Runtime +> [!IMPORTANT] +> **Maintenance mode.** This repository is archived and is not under active development. Existing releases remain available without compatibility guarantees or planned feature updates. For new multi-agent integrations, prefer [Agent Client Protocol](https://agentclientprotocol.com/) or the official SDK of your selected agent. +

The Universal Adapter & Execution Engine for Local Coding Agents @@ -7,7 +10,7 @@

License: Apache-2.0 NPM Version - Status: pre-alpha + Status: maintenance

English | 简体中文 @@ -319,9 +322,9 @@ This runtime spawns and manages powerful coding agents on your local machine. We --- -## 🚦 Release Status & Roadmap +## 🚦 Release Status -This project is in **pre-alpha / developer preview**. +This project is in **maintenance mode**. No new features, adapter compatibility updates, beta releases, or stable releases are planned. The published alpha packages remain available for existing users without ongoing support guarantees. ### 🏷️ Package Release History * `agent-cli-runtime@0.1.0-alpha.6` - **Published corrective alpha release**. Published on npm; npm `alpha` and `latest` dist-tags both point at `0.1.0-alpha.6`. GitHub Release `v0.1.0-alpha.6` exists as a prerelease with the npm registry tarball asset, and `release:post-alpha:verify` tarball parity passes. @@ -332,7 +335,7 @@ This project is in **pre-alpha / developer preview**. * `agent-cli-runtime@0.1.0-alpha.1` - Earlier published alpha with GitHub pre-release `v0.1.0-alpha.1`. * `agent-cli-runtime@0.1.0-alpha.0` - Deprecated because its immutable package docs shipped stale pre-publish status text. -npm registry metadata and GitHub Releases are the source of truth for available versions and dist-tags. Volatile run, target-SHA, registry, and artifact evidence stays outside the npm package under `.release-evidence/`. Future beta promotion or stable promotion requires fresh release evidence for that target, including package docs, registry state, GitHub Release parity, and published verification. +npm registry metadata and GitHub Releases are the source of truth for available versions and dist-tags. Volatile run, target-SHA, registry, and artifact evidence stays outside the npm package under `.release-evidence/`. Any future beta or stable promotion requires fresh release evidence for that target. `published:usability:audit` is a repository-only post-publish audit script. It is intentionally excluded from npm package contents and verifies an already published package from the npm registry. diff --git a/README.zh-CN.md b/README.zh-CN.md index 318ad83..dc227dc 100644 --- a/README.zh-CN.md +++ b/README.zh-CN.md @@ -1,5 +1,8 @@ # Agent CLI Runtime +> [!IMPORTANT] +> **维护模式。** 本仓库已归档,不再进行主动开发。现有版本继续保留,但不承诺后续兼容性或功能更新。新的多 Agent 集成建议优先采用 [Agent Client Protocol](https://agentclientprotocol.com/) 或所选 Agent 的官方 SDK。 +

本地 Coding Agent CLI 的通用适配层与执行引擎 @@ -7,7 +10,7 @@

License: Apache-2.0 NPM Version - Status: pre-alpha + Status: maintenance

English | 简体中文 @@ -319,9 +322,9 @@ agent-runtime store-repair --storage-dir .agent-runtime --apply --json # 自 --- -## 🚦 项目状态与路线图 +## 🚦 项目状态 -当前仓库处于 **pre-alpha / developer preview**(开发者预览阶段)。 +本项目处于 **维护模式**。当前没有新增功能、Agent 适配更新、beta 发布或 stable 发布计划。已发布的 alpha 版本继续供现有用户使用,但不提供持续支持承诺。 ### 🏷️ npm 版本发布简史 * `agent-cli-runtime@0.1.0-alpha.6` - **已发布的 corrective alpha release**。已发布到 npm;npm `alpha` 与 `latest` dist-tags 均指向 `0.1.0-alpha.6`。GitHub Release `v0.1.0-alpha.6` 已作为 prerelease 存在并带有 npm registry tarball asset,`release:post-alpha:verify` tarball parity 通过。 @@ -332,7 +335,7 @@ agent-runtime store-repair --storage-dir .agent-runtime --apply --json # 自 * `agent-cli-runtime@0.1.0-alpha.1` - 更早的已发布 alpha,并有 GitHub pre-release `v0.1.0-alpha.1`。 * `agent-cli-runtime@0.1.0-alpha.0` - 已弃用,因为 immutable package docs 带有过期发布前状态。 -npm registry metadata 和 GitHub Releases 是可用版本与 dist-tags 的 source of truth。易漂移的 run、target-SHA、registry 与 artifact evidence 留在 npm 包外的 `.release-evidence/`。后续 beta promotion 或 stable promotion 都必须为目标版本重新生成 fresh release evidence,包括 package docs、registry state、GitHub Release parity 和 published verification。 +npm registry metadata 和 GitHub Releases 是可用版本与 dist-tags 的 source of truth。易漂移的 run、target-SHA、registry 与 artifact evidence 留在 npm 包外的 `.release-evidence/`。任何未来 beta 或 stable promotion 均需为目标重新生成新鲜发布证据。 `published:usability:audit` 是 repo-only 的 post-publish 审计脚本。它有意不进入 npm package 内容,只用于从 npm registry 验证已经发布的 package。 diff --git a/tests/contract.test.ts b/tests/contract.test.ts index 2439b75..2d10ac3 100644 --- a/tests/contract.test.ts +++ b/tests/contract.test.ts @@ -1394,6 +1394,7 @@ describe("public contract", () => { const selfDirtyMatrixFile = path.join(dir, "self-dirty-matrix.json"); await writeFile(selfDirtyMatrixFile, JSON.stringify({ ...matrix, + checkedAt: new Date().toISOString(), gitDirty: false, gitInputDirty: false, gitOutputDirty: true,