mancode 0.3.9 → 0.3.10
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 +46 -4
- package/README.md +41 -7
- package/dist/chunk-KEIW7AEP.js +597 -0
- package/dist/chunk-KEIW7AEP.js.map +1 -0
- package/dist/chunk-O3QAKAPJ.js +7117 -0
- package/dist/chunk-O3QAKAPJ.js.map +1 -0
- package/dist/cli.d.ts +1 -0
- package/dist/cli.js +41525 -7548
- package/dist/cli.js.map +1 -1
- package/dist/store-JUB2KAFT.js +9 -0
- package/dist/store-JUB2KAFT.js.map +1 -0
- package/dist/v3-adapter-3GJT3AID.js +27 -0
- package/dist/v3-adapter-3GJT3AID.js.map +1 -0
- package/package.json +3 -2
package/README.en.md
CHANGED
|
@@ -17,9 +17,10 @@
|
|
|
17
17
|
<p align="center">
|
|
18
18
|
<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>
|
|
19
19
|
<a href="https://www.npmjs.com/package/mancode"><img src="https://img.shields.io/npm/v/mancode?style=flat-square" alt="npm version" /></a>
|
|
20
|
-
<img src="https://img.shields.io/badge/status-stable%20v0.3.
|
|
20
|
+
<img src="https://img.shields.io/badge/status-stable%20v0.3.10-green?style=flat-square" alt="Status: stable v0.3.10" />
|
|
21
|
+
<img src="https://img.shields.io/badge/V3-cross--CLI%20team%20Beta-FB6A21?style=flat-square" alt="V3: cross-CLI team Beta" />
|
|
21
22
|
<img src="https://img.shields.io/badge/platforms-Claude%20Code%20%7C%20Cursor%20%7C%20Codex%20%7C%20Copilot%20%7C%20ZCode-5865F2?style=flat-square" alt="Platforms: Claude Code, Cursor, Codex in ChatGPT desktop and CLI, GitHub Copilot, ZCode" />
|
|
22
|
-
<img src="https://img.shields.io/badge/tests-
|
|
23
|
+
<img src="https://img.shields.io/badge/tests-passing-brightgreen?style=flat-square" alt="Tests passing" />
|
|
23
24
|
</p>
|
|
24
25
|
|
|
25
26
|
<p align="center">
|
|
@@ -89,6 +90,47 @@ These are agent skills, not deprecated custom prompts. See the official
|
|
|
89
90
|
[slash-command](https://learn.chatgpt.com/docs/reference/slash-commands) docs.
|
|
90
91
|
Existing workflow metadata remains compatible and does not need migration.
|
|
91
92
|
|
|
93
|
+
## V3 Cross-CLI and Team Beta
|
|
94
|
+
|
|
95
|
+
V3 gives new team projects stable `TaskRef` context, isolated sessions,
|
|
96
|
+
governance ledgers, worktree claims and handoffs, and optional git-ref
|
|
97
|
+
coordination across clones. It is a **hard-gated Beta**: adapters bootstrap
|
|
98
|
+
Claude Code, Cursor, Codex, GitHub Copilot, and ZCode, but platform files never
|
|
99
|
+
become the authority for task or session state.
|
|
100
|
+
|
|
101
|
+
For a new project, start with one platform you actually use:
|
|
102
|
+
|
|
103
|
+
```bash
|
|
104
|
+
mancode init --v3 --team --platform claude-code
|
|
105
|
+
mancode team identity create --name "Your name"
|
|
106
|
+
mancode context session new --client claude-code
|
|
107
|
+
mancode list-platforms
|
|
108
|
+
```
|
|
109
|
+
|
|
110
|
+
Use the CLI for creation, resume, and coordination: `mancode workflow create`,
|
|
111
|
+
`mancode context resume`, `mancode team claim`, and `mancode team handoff`. For
|
|
112
|
+
an existing project, begin with `mancode migrate context --dry-run`, then follow
|
|
113
|
+
its stage and activation report. Do not manually mix legacy `state.json` writes
|
|
114
|
+
with V3 authority.
|
|
115
|
+
|
|
116
|
+
### Beta validation boundary
|
|
117
|
+
|
|
118
|
+
- The `main` branch requires a Windows gate that runs smoke tests in CMD,
|
|
119
|
+
PowerShell, and Git Bash.
|
|
120
|
+
- `mancode context beta --release-candidate <commit> --json` checks activation,
|
|
121
|
+
adapters, repair state, worktree binding, and session evidence for all five
|
|
122
|
+
platforms. Evidence must bind to that immutable release candidate; any blocker
|
|
123
|
+
stops broad enablement.
|
|
124
|
+
- Each platform must prove distinct sessions in two real host windows, child-command
|
|
125
|
+
propagation, and child-agent inheritance (or record a specific reason it is not
|
|
126
|
+
applicable). `context session spike` records an operator-attested real-host result;
|
|
127
|
+
it never infers propagation from a temporary environment variable. Stored evidence
|
|
128
|
+
never includes raw session keys.
|
|
129
|
+
|
|
130
|
+
Until that gate passes, use an explicit `--session <id>` and do not treat host
|
|
131
|
+
identity as verified. This lets you try V3 without presenting unproven
|
|
132
|
+
cross-platform session behavior as a fact.
|
|
133
|
+
|
|
92
134
|
## What Gets Installed
|
|
93
135
|
|
|
94
136
|
`mancode init` creates local workflow files and platform integration files:
|
|
@@ -302,7 +344,7 @@ it should behave, and why previous decisions were made.
|
|
|
302
344
|
|
|
303
345
|
## Installation
|
|
304
346
|
|
|
305
|
-
**Status**: stable v0.3.
|
|
347
|
+
**Status**: stable v0.3.10. Claude Code, Cursor, Codex in the ChatGPT desktop app
|
|
306
348
|
and CLI, and GitHub Copilot are supported. ZCode adapter support is included,
|
|
307
349
|
with project skill discovery kept behind a verification gate before release.
|
|
308
350
|
|
|
@@ -405,7 +447,7 @@ mancode version
|
|
|
405
447
|
Example output for a UI project (not a default stack):
|
|
406
448
|
|
|
407
449
|
```text
|
|
408
|
-
mancode v0.3.
|
|
450
|
+
mancode v0.3.10
|
|
409
451
|
|
|
410
452
|
Project: my-app (React + TypeScript + Tailwind)
|
|
411
453
|
Mode: solo (default)
|
package/README.md
CHANGED
|
@@ -17,13 +17,17 @@
|
|
|
17
17
|
<p align="center">
|
|
18
18
|
<a href="./LICENSE"><img src="https://img.shields.io/badge/License-AGPL--3.0-blue.svg?style=flat-square" alt="许可证:AGPL-3.0" /></a>
|
|
19
19
|
<a href="https://www.npmjs.com/package/mancode"><img src="https://img.shields.io/npm/v/mancode?style=flat-square" alt="npm 版本" /></a>
|
|
20
|
-
<img src="https://img.shields.io/badge/status-stable%20v0.3.
|
|
20
|
+
<img src="https://img.shields.io/badge/status-stable%20v0.3.10-green?style=flat-square" alt="状态:稳定版 v0.3.10" />
|
|
21
|
+
<img src="https://img.shields.io/badge/V3-%E8%B7%A8%20CLI%20%E5%9B%A2%E9%98%9F%20Beta-FB6A21?style=flat-square" alt="V3:跨 CLI 团队协作 Beta" />
|
|
21
22
|
<img src="https://img.shields.io/badge/platforms-Claude%20Code%20%7C%20Cursor%20%7C%20Codex%20%7C%20Copilot%20%7C%20ZCode-5865F2?style=flat-square" alt="平台:Claude Code、Cursor、ChatGPT 桌面端 Codex、Codex CLI、GitHub Copilot、ZCode" />
|
|
22
|
-
<img src="https://img.shields.io/badge/tests-
|
|
23
|
+
<img src="https://img.shields.io/badge/tests-passing-brightgreen?style=flat-square" alt="测试通过" />
|
|
23
24
|
</p>
|
|
24
25
|
|
|
25
26
|
<p align="center">
|
|
26
|
-
<a href="
|
|
27
|
+
<a href="https://github.com/whitelonng/mancode/blob/main/README.en.md">English</a> ·
|
|
28
|
+
<a href="https://whitelonng.github.io/mancode/">官网</a> ·
|
|
29
|
+
<a href="https://github.com/whitelonng/mancode#%E5%AE%89%E8%A3%85%E6%96%B9%E6%B3%95">安装方法</a> ·
|
|
30
|
+
<a href="https://github.com/whitelonng/mancode#%E4%BD%BF%E7%94%A8%E6%96%B9%E6%B3%95">使用方法</a>
|
|
27
31
|
</p>
|
|
28
32
|
|
|
29
33
|
---
|
|
@@ -34,8 +38,6 @@
|
|
|
34
38
|
日常任务用轻量 `solo`,关键任务用季后赛级别的 `/man`,复杂任务让教练组 subagents
|
|
35
39
|
负责调研、计划、实现和审查。
|
|
36
40
|
|
|
37
|
-
[安装方法](#安装方法) · [使用方法](#使用方法)
|
|
38
|
-
|
|
39
41
|
mancode 当前支持 Claude Code、Cursor、ChatGPT 桌面端中的 Codex、Codex CLI、
|
|
40
42
|
GitHub Copilot 和 ZCode。Claude Code 获得完整 hooks、skills 和 subagents;其他
|
|
41
43
|
平台通过持久化 rules、skills 或 instructions 文件提供降级适配。
|
|
@@ -82,6 +84,38 @@ ChatGPT 桌面端、Codex CLI 和 Codex IDE 扩展会从 `.agents/skills/` 读
|
|
|
82
84
|
和 [slash command 文档](https://learn.chatgpt.com/docs/reference/slash-commands)。
|
|
83
85
|
已有 workflow 元数据继续兼容,不需要迁移。
|
|
84
86
|
|
|
87
|
+
## V3 跨 CLI 与团队协作 Beta
|
|
88
|
+
|
|
89
|
+
V3 为新团队项目提供稳定 `TaskRef` 上下文、隔离 session、治理账本、worktree
|
|
90
|
+
claim/handoff,以及可选的 git-ref 跨 clone 协调。它是**带硬门禁的 Beta**:adapter 能为
|
|
91
|
+
Claude Code、Cursor、Codex、GitHub Copilot 和 ZCode 提供 bootstrap,但不会把平台文件
|
|
92
|
+
当作任务或 session 状态的权威来源。
|
|
93
|
+
|
|
94
|
+
在全新项目中,从一个实际使用的平台开始:
|
|
95
|
+
|
|
96
|
+
```bash
|
|
97
|
+
mancode init --v3 --team --platform claude-code
|
|
98
|
+
mancode team identity create --name "Your name"
|
|
99
|
+
mancode context session new --client claude-code
|
|
100
|
+
mancode list-platforms
|
|
101
|
+
```
|
|
102
|
+
|
|
103
|
+
创建、恢复和协作均通过 CLI 完成:`mancode workflow create`、`mancode context resume`、
|
|
104
|
+
`mancode team claim` 和 `mancode team handoff`。已有项目先运行
|
|
105
|
+
`mancode migrate context --dry-run`,再按迁移报告确认 stage/activation;不要手工混写
|
|
106
|
+
legacy `state.json` 与 V3 authority。
|
|
107
|
+
|
|
108
|
+
### Beta 的验证边界
|
|
109
|
+
|
|
110
|
+
- `main` 的 Windows 门禁会从 CMD、PowerShell 和 Git Bash 运行 smoke 测试。
|
|
111
|
+
- `mancode context beta --release-candidate <commit> --json` 会检查 activation、adapter、repair、worktree binding 和
|
|
112
|
+
五个平台的 session evidence;evidence 必须绑定同一个不可变发布候选,任何 blocker 都会阻止大范围启用。
|
|
113
|
+
- 每个平台都必须在真实宿主中证明两个窗口的 session 区分、子命令传播以及子 agent 继承(或记录明确的不适用原因)。
|
|
114
|
+
`context session spike` 只记录操作者报告的真实宿主结果,不会由临时环境变量自动推断传播成功;证据不保存原始 session key。
|
|
115
|
+
|
|
116
|
+
在门禁通过前,继续显式传入 `--session <id>`,不要把 host identity 视为已验证。这样可以
|
|
117
|
+
先试用 V3,同时避免把尚未证明的跨平台 session 行为当作事实。
|
|
118
|
+
|
|
85
119
|
## 安装后创建哪些文件?
|
|
86
120
|
|
|
87
121
|
`mancode init` 会创建本地工作流文件和平台适配文件:
|
|
@@ -262,7 +296,7 @@ src/components/
|
|
|
262
296
|
|
|
263
297
|
## 安装
|
|
264
298
|
|
|
265
|
-
**状态**:稳定版 v0.3.
|
|
299
|
+
**状态**:稳定版 v0.3.10。Claude Code、Cursor、ChatGPT 桌面端中的 Codex、
|
|
266
300
|
Codex CLI 和 GitHub Copilot 均已支持。ZCode adapter 已接入,但项目级 skill
|
|
267
301
|
发现路径在发布前仍作为验证门禁。
|
|
268
302
|
|
|
@@ -363,7 +397,7 @@ mancode version
|
|
|
363
397
|
以下是 UI 项目的输出示例,并非默认技术栈:
|
|
364
398
|
|
|
365
399
|
```text
|
|
366
|
-
mancode v0.3.
|
|
400
|
+
mancode v0.3.10
|
|
367
401
|
|
|
368
402
|
Project: my-app (React + TypeScript + Tailwind)
|
|
369
403
|
Mode: solo (default)
|