marchen 0.8.0
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/LICENSE +21 -0
- package/README.md +36 -0
- package/dist/index.d.mts +13 -0
- package/dist/index.d.mts.map +1 -0
- package/dist/index.mjs +1954 -0
- package/dist/index.mjs.map +1 -0
- package/dist/search-manager-zPFpsFnI.mjs +3 -0
- package/dist/search-manager-zPFpsFnI.mjs.map +1 -0
- package/package.json +38 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 marchen-dev
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
ADDED
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
# marchen
|
|
2
|
+
|
|
3
|
+
AI 编码工作流工装 — 给编码代理一层工程化外壳。
|
|
4
|
+
|
|
5
|
+
完整文档请查看 [GitHub](https://github.com/marchen-dev/Marchen)。
|
|
6
|
+
|
|
7
|
+
## 安装
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
npx marchen init
|
|
11
|
+
|
|
12
|
+
# 或全局安装
|
|
13
|
+
npm i -g marchen
|
|
14
|
+
marchen init
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
## 支持的 AI 工具
|
|
18
|
+
|
|
19
|
+
Claude Code · Codex · Cursor · Windsurf · GitHub Copilot · Gemini CLI · Kiro · OpenCode · Kilo Code · Antigravity
|
|
20
|
+
|
|
21
|
+
`marchen init` 会让你选择要集成的工具,自动生成对应的 skill 文件。
|
|
22
|
+
|
|
23
|
+
## CLI 命令
|
|
24
|
+
|
|
25
|
+
```bash
|
|
26
|
+
marchen init # 初始化,选择 AI 工具
|
|
27
|
+
marchen new <name> [--schema full|lite] # 创建变更
|
|
28
|
+
marchen list [--json] # 列出变更
|
|
29
|
+
marchen status <name> [--json] # 查看状态
|
|
30
|
+
marchen instructions <name> <artifact> # 获取指令
|
|
31
|
+
marchen archive <name> [--summary <text>] # 归档变更
|
|
32
|
+
```
|
|
33
|
+
|
|
34
|
+
## License
|
|
35
|
+
|
|
36
|
+
MIT
|
package/dist/index.d.mts
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
|
|
2
|
+
import { Command } from "commander";
|
|
3
|
+
|
|
4
|
+
//#region src/program.d.ts
|
|
5
|
+
/**
|
|
6
|
+
* 构建 CLI 程序实例
|
|
7
|
+
*
|
|
8
|
+
* 注册所有命令并返回 Commander 程序实例
|
|
9
|
+
*/
|
|
10
|
+
declare function buildCliProgram(): Command;
|
|
11
|
+
//#endregion
|
|
12
|
+
export { buildCliProgram };
|
|
13
|
+
//# sourceMappingURL=index.d.mts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.mts","names":[],"sources":["../src/program.ts"],"mappings":";;;;;;AAmBA;;;iBAAgB,eAAA,CAAA,GAAmB,OAAA"}
|