mancode 0.6.3 → 0.6.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.en.md CHANGED
@@ -24,7 +24,7 @@
24
24
  <p align="center">
25
25
  <a href="./LICENSE"><img src="https://img.shields.io/badge/License-AGPL--3.0-blue.svg?style=flat-square" alt="License: AGPL-3.0" /></a>
26
26
  <a href="https://www.npmjs.com/package/mancode"><img src="https://img.shields.io/npm/v/mancode?style=flat-square" alt="npm version" /></a>
27
- <img src="https://img.shields.io/badge/status-Continuity%20v0.6.3-2f855a?style=flat-square" alt="Status: mancode Continuity v0.6.3" />
27
+ <img src="https://img.shields.io/badge/status-Continuity%20v0.6.4-2f855a?style=flat-square" alt="Status: mancode Continuity v0.6.4" />
28
28
  <img src="https://img.shields.io/badge/platforms-Claude%20Code%20%7C%20Cursor%20%7C%20Codex%20%7C%20Copilot%20%7C%20ZCode%20%7C%20Kimi%20Code%20%7C%20Qoder%20%7C%20DeepSeek%20Harness-5865F2?style=flat-square" alt="Platforms: Claude Code, Cursor, Codex in ChatGPT desktop and CLI, GitHub Copilot, ZCode, Kimi Code, Qoder, DeepSeek Harness" />
29
29
  </p>
30
30
 
@@ -185,7 +185,7 @@ the quality gate for models that need explicit review structure.
185
185
 
186
186
  ## Installation
187
187
 
188
- **Status**: mancode Continuity v0.6.3. Claude Code, Cursor, Codex in the ChatGPT
188
+ **Status**: mancode Continuity v0.6.4. Claude Code, Cursor, Codex in the ChatGPT
189
189
  desktop app and CLI, GitHub Copilot, ZCode, Kimi Code, Qoder, and DeepSeek Harness adapters are included.
190
190
 
191
191
  Requires Node.js 22 or newer. macOS, Linux, Windows CMD, PowerShell, and Git Bash
@@ -757,7 +757,7 @@ platform bootstrap and original mode entry. Coding agents should combine
757
757
  Simplified output:
758
758
 
759
759
  ```text
760
- mancode v0.6.3
760
+ mancode v0.6.4
761
761
 
762
762
  Project: my-app
763
763
  Runtime: ready
package/README.md CHANGED
@@ -18,7 +18,7 @@
18
18
  <p align="center">
19
19
  <a href="./LICENSE"><img src="https://img.shields.io/badge/License-AGPL--3.0-blue.svg?style=flat-square" alt="许可证:AGPL-3.0" /></a>
20
20
  <a href="https://www.npmjs.com/package/mancode"><img src="https://img.shields.io/npm/v/mancode?style=flat-square" alt="npm 版本" /></a>
21
- <img src="https://img.shields.io/badge/status-Continuity%20v0.6.3-2f855a?style=flat-square" alt="状态:mancode Continuity v0.6.3" />
21
+ <img src="https://img.shields.io/badge/status-Continuity%20v0.6.4-2f855a?style=flat-square" alt="状态:mancode Continuity v0.6.4" />
22
22
  <img src="https://img.shields.io/badge/platforms-Claude%20Code%20%7C%20Cursor%20%7C%20Codex%20%7C%20Copilot%20%7C%20ZCode%20%7C%20Kimi%20Code%20%7C%20Qoder%20%7C%20DeepSeek%20Harness-5865F2?style=flat-square" alt="平台:Claude Code、Cursor、ChatGPT 桌面端 Codex、Codex CLI、GitHub Copilot、ZCode、Kimi Code、Qoder、DeepSeek Harness" />
23
23
  </p>
24
24
 
@@ -130,7 +130,7 @@ mancode 不是 Claude Code、Cursor、Codex 或 Copilot 的替代品。它是在
130
130
 
131
131
  ## 安装方法
132
132
 
133
- **状态**:mancode Continuity v0.6.3。Claude Code、Cursor、ChatGPT 桌面端中的
133
+ **状态**:mancode Continuity v0.6.4。Claude Code、Cursor、ChatGPT 桌面端中的
134
134
  Codex、Codex CLI、GitHub Copilot、ZCode、Kimi Code、Qoder 和 DeepSeek Harness adapter 均已接入。
135
135
 
136
136
  需要 Node.js 22 或更高版本。原生支持 macOS、Linux、Windows CMD、
@@ -582,7 +582,7 @@ transport 和各平台 bootstrap/原 mode 入口的实际就绪状态。编码 A
582
582
  以下是简化输出示例:
583
583
 
584
584
  ```text
585
- mancode v0.6.3
585
+ mancode v0.6.4
586
586
 
587
587
  Project: my-app
588
588
  Runtime: ready
@@ -6126,15 +6126,6 @@ function serializeSchemaManifest(value) {
6126
6126
  function managedAdapterNames(inventory) {
6127
6127
  return MANAGED_ADAPTERS.filter((adapter) => inventory[adapter] !== void 0);
6128
6128
  }
6129
- function parseSchemaManifestV1(value) {
6130
- const manifest = parseSchemaManifest(value);
6131
- if (manifest.manifestVersion !== 1) {
6132
- throw new Error(
6133
- `MANCODE_MANIFEST_VERSION_UNSUPPORTED: observed=${manifest.manifestVersion} supported=1 requiredWriter=0.3.x`
6134
- );
6135
- }
6136
- return manifest;
6137
- }
6138
6129
  function parseSchemaManifestV2(value) {
6139
6130
  const manifest = parseSchemaManifest(value);
6140
6131
  if (manifest.manifestVersion !== 2) {
@@ -7413,7 +7404,6 @@ export {
7413
7404
  parseSchemaManifest,
7414
7405
  serializeSchemaManifest,
7415
7406
  managedAdapterNames,
7416
- parseSchemaManifestV1,
7417
7407
  parseSchemaManifestV2,
7418
7408
  assertSchemaManifestTransition,
7419
7409
  assertSchemaManifestPolicyUpgrade,
@@ -7521,4 +7511,4 @@ export {
7521
7511
  V3ContextStore,
7522
7512
  storedTaskAggregateDigest
7523
7513
  };
7524
- //# sourceMappingURL=chunk-NG72XZ3R.js.map
7514
+ //# sourceMappingURL=chunk-7HPP3KYG.js.map