@zmice/zc 0.2.7 → 0.2.8
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.md +430 -430
- package/dist/cli/__tests__/platform.test.js +112 -89
- package/dist/cli/__tests__/platform.test.js.map +1 -1
- package/dist/cli/__tests__/surface.test.js +1 -1
- package/dist/cli/__tests__/surface.test.js.map +1 -1
- package/dist/cli/platform.d.ts.map +1 -1
- package/dist/cli/platform.js +62 -5
- package/dist/cli/platform.js.map +1 -1
- package/dist/cli/setup.d.ts +3 -0
- package/dist/cli/setup.d.ts.map +1 -0
- package/dist/cli/setup.js +41 -0
- package/dist/cli/setup.js.map +1 -0
- package/dist/node_modules/@zmice/platform-core/dist/index.test.js +5 -3
- package/dist/node_modules/@zmice/platform-core/dist/index.test.js.map +1 -1
- package/dist/runtime/worktree-manager.js +2 -2
- package/dist/runtime/worktree-manager.js.map +1 -1
- package/dist/utils/codex-config-merge.d.ts +3 -0
- package/dist/utils/codex-config-merge.d.ts.map +1 -0
- package/dist/utils/codex-config-merge.js +43 -0
- package/dist/utils/codex-config-merge.js.map +1 -0
- package/dist/utils/codex-config-merge.test.d.ts +2 -0
- package/dist/utils/codex-config-merge.test.d.ts.map +1 -0
- package/dist/utils/codex-config-merge.test.js +64 -0
- package/dist/utils/codex-config-merge.test.js.map +1 -0
- package/dist/utils/install-target.test.js +3 -2
- package/dist/utils/install-target.test.js.map +1 -1
- package/dist/utils/qwen-extension-cli.d.ts.map +1 -1
- package/dist/utils/qwen-extension-cli.js +4 -4
- package/dist/utils/qwen-extension-cli.js.map +1 -1
- package/dist/utils/qwen-extension-cli.test.js +9 -6
- package/dist/utils/qwen-extension-cli.test.js.map +1 -1
- package/dist/utils/workspace.js +1 -1
- package/dist/utils/workspace.js.map +1 -1
- package/dist/utils/workspace.test.js +14 -0
- package/dist/utils/workspace.test.js.map +1 -1
- package/package.json +2 -2
- package/vendor/node_modules/@zmice/platform-core/dist/index.test.js +5 -3
- package/vendor/node_modules/@zmice/platform-core/dist/index.test.js.map +1 -1
- package/vendor/packages/platform-claude/dist/index.js +75 -75
- package/vendor/packages/platform-claude/dist/index.test.js +11 -8
- package/vendor/packages/platform-claude/dist/index.test.js.map +1 -1
- package/vendor/packages/platform-codex/dist/index.js +194 -194
- package/vendor/packages/platform-codex/dist/index.test.js +16 -13
- package/vendor/packages/platform-codex/dist/index.test.js.map +1 -1
- package/vendor/packages/platform-opencode/dist/index.js +75 -75
- package/vendor/packages/platform-opencode/dist/index.test.js +19 -15
- package/vendor/packages/platform-opencode/dist/index.test.js.map +1 -1
- package/vendor/packages/platform-qwen/dist/index.js +75 -75
- package/vendor/packages/platform-qwen/dist/index.test.js +9 -7
- package/vendor/packages/platform-qwen/dist/index.test.js.map +1 -1
- package/vendor/packages/toolkit/src/content/agents/architect/body.md +42 -42
- package/vendor/packages/toolkit/src/content/agents/code-reviewer/body.md +41 -41
- package/vendor/packages/toolkit/src/content/agents/product-owner/body.md +40 -40
- package/vendor/packages/toolkit/src/content/commands/plan-review/body.md +31 -31
- package/vendor/packages/toolkit/src/content/commands/start/body.md +197 -197
- package/vendor/packages/toolkit/src/content/commands/start/meta.yaml +55 -55
- package/vendor/packages/toolkit/src/content/skills/branch-finish-and-cleanup/body.md +172 -172
- package/vendor/packages/toolkit/src/content/skills/browser-qa-testing/body.md +111 -111
- package/vendor/packages/toolkit/src/content/skills/ci-cd-and-automation/body.md +86 -86
- package/vendor/packages/toolkit/src/content/skills/code-review-and-quality/body.md +140 -140
- package/vendor/packages/toolkit/src/content/skills/code-simplification/body.md +80 -80
- package/vendor/packages/toolkit/src/content/skills/context-engineering/body.md +67 -67
- package/vendor/packages/toolkit/src/content/skills/continuous-learning/body.md +102 -102
- package/vendor/packages/toolkit/src/content/skills/multi-perspective-review/body.md +81 -81
- package/vendor/packages/toolkit/src/content/skills/parallel-agent-dispatch/body.md +113 -113
- package/vendor/packages/toolkit/src/content/skills/performance-optimization/body.md +75 -75
- package/vendor/packages/toolkit/src/content/skills/planning-and-task-breakdown/body.md +83 -83
- package/vendor/packages/toolkit/src/content/skills/sdd-tdd-workflow/body.md +95 -95
- package/vendor/packages/toolkit/src/content/skills/sprint-retrospective/body.md +99 -99
- package/vendor/packages/toolkit/src/content/skills/team-orchestration/body.md +126 -126
- package/vendor/packages/toolkit/src/content/skills/test-driven-development/body.md +78 -78
- package/vendor/packages/toolkit/src/content/skills/using-agent-skills/body.md +193 -193
- package/vendor/references/upstreams.yaml +94 -94
|
@@ -1,94 +1,94 @@
|
|
|
1
|
-
schema_version: 1
|
|
2
|
-
|
|
3
|
-
governance:
|
|
4
|
-
manual_review_required: true
|
|
5
|
-
notes_root: references/notes
|
|
6
|
-
snapshots_root: references/snapshots
|
|
7
|
-
snapshot_policy: immutable
|
|
8
|
-
|
|
9
|
-
upstreams:
|
|
10
|
-
- id: agent-skills
|
|
11
|
-
title: Agent Skills
|
|
12
|
-
kind: github-public-repo
|
|
13
|
-
status: active
|
|
14
|
-
owner: codex
|
|
15
|
-
source_url: https://github.com/addyosmani/agent-skills.git
|
|
16
|
-
source_paths:
|
|
17
|
-
- skills
|
|
18
|
-
- commands
|
|
19
|
-
notes_path: references/notes/agent-skills.md
|
|
20
|
-
snapshots_path: references/snapshots/agent-skills/
|
|
21
|
-
sync:
|
|
22
|
-
mode: manual-review
|
|
23
|
-
review_required: true
|
|
24
|
-
compare_against: snapshots
|
|
25
|
-
publish_target: toolkit-and-platform-generation
|
|
26
|
-
- id: superpowers
|
|
27
|
-
title: Superpowers
|
|
28
|
-
kind: github-public-repo
|
|
29
|
-
status: active
|
|
30
|
-
owner: codex
|
|
31
|
-
source_url: https://github.com/obra/superpowers.git
|
|
32
|
-
source_paths:
|
|
33
|
-
- prompts
|
|
34
|
-
- instructions
|
|
35
|
-
- agents
|
|
36
|
-
notes_path: references/notes/superpowers.md
|
|
37
|
-
snapshots_path: references/snapshots/superpowers/
|
|
38
|
-
sync:
|
|
39
|
-
mode: manual-review
|
|
40
|
-
review_required: true
|
|
41
|
-
compare_against: snapshots
|
|
42
|
-
publish_target: toolkit-and-platform-generation
|
|
43
|
-
- id: everything-claude-code
|
|
44
|
-
title: Everything Claude Code
|
|
45
|
-
kind: github-public-repo
|
|
46
|
-
status: active
|
|
47
|
-
owner: codex
|
|
48
|
-
source_url: https://github.com/affaan-m/everything-claude-code.git
|
|
49
|
-
source_paths:
|
|
50
|
-
- CLAUDE.md
|
|
51
|
-
- docs
|
|
52
|
-
- commands
|
|
53
|
-
notes_path: references/notes/everything-claude-code.md
|
|
54
|
-
snapshots_path: references/snapshots/everything-claude-code/
|
|
55
|
-
sync:
|
|
56
|
-
mode: manual-review
|
|
57
|
-
review_required: true
|
|
58
|
-
compare_against: snapshots
|
|
59
|
-
publish_target: toolkit-and-platform-generation
|
|
60
|
-
- id: gstack
|
|
61
|
-
title: GStack
|
|
62
|
-
kind: github-public-repo
|
|
63
|
-
status: active
|
|
64
|
-
owner: codex
|
|
65
|
-
source_url: https://github.com/garrytan/gstack.git
|
|
66
|
-
source_paths:
|
|
67
|
-
- prompts
|
|
68
|
-
- commands
|
|
69
|
-
- docs
|
|
70
|
-
notes_path: references/notes/gstack.md
|
|
71
|
-
snapshots_path: references/snapshots/gstack/
|
|
72
|
-
sync:
|
|
73
|
-
mode: manual-review
|
|
74
|
-
review_required: true
|
|
75
|
-
compare_against: snapshots
|
|
76
|
-
publish_target: toolkit-and-platform-generation
|
|
77
|
-
- id: andrej-karpathy-skills
|
|
78
|
-
title: Andrej Karpathy Skills
|
|
79
|
-
kind: github-public-repo
|
|
80
|
-
status: active
|
|
81
|
-
owner: codex
|
|
82
|
-
source_url: https://github.com/multica-ai/andrej-karpathy-skills.git
|
|
83
|
-
source_paths:
|
|
84
|
-
- CLAUDE.md
|
|
85
|
-
- README.md
|
|
86
|
-
- EXAMPLES.md
|
|
87
|
-
- skills/karpathy-guidelines
|
|
88
|
-
notes_path: references/notes/andrej-karpathy-skills.md
|
|
89
|
-
snapshots_path: references/snapshots/andrej-karpathy-skills/
|
|
90
|
-
sync:
|
|
91
|
-
mode: manual-review
|
|
92
|
-
review_required: true
|
|
93
|
-
compare_against: snapshots
|
|
94
|
-
publish_target: toolkit-and-platform-generation
|
|
1
|
+
schema_version: 1
|
|
2
|
+
|
|
3
|
+
governance:
|
|
4
|
+
manual_review_required: true
|
|
5
|
+
notes_root: references/notes
|
|
6
|
+
snapshots_root: references/snapshots
|
|
7
|
+
snapshot_policy: immutable
|
|
8
|
+
|
|
9
|
+
upstreams:
|
|
10
|
+
- id: agent-skills
|
|
11
|
+
title: Agent Skills
|
|
12
|
+
kind: github-public-repo
|
|
13
|
+
status: active
|
|
14
|
+
owner: codex
|
|
15
|
+
source_url: https://github.com/addyosmani/agent-skills.git
|
|
16
|
+
source_paths:
|
|
17
|
+
- skills
|
|
18
|
+
- commands
|
|
19
|
+
notes_path: references/notes/agent-skills.md
|
|
20
|
+
snapshots_path: references/snapshots/agent-skills/
|
|
21
|
+
sync:
|
|
22
|
+
mode: manual-review
|
|
23
|
+
review_required: true
|
|
24
|
+
compare_against: snapshots
|
|
25
|
+
publish_target: toolkit-and-platform-generation
|
|
26
|
+
- id: superpowers
|
|
27
|
+
title: Superpowers
|
|
28
|
+
kind: github-public-repo
|
|
29
|
+
status: active
|
|
30
|
+
owner: codex
|
|
31
|
+
source_url: https://github.com/obra/superpowers.git
|
|
32
|
+
source_paths:
|
|
33
|
+
- prompts
|
|
34
|
+
- instructions
|
|
35
|
+
- agents
|
|
36
|
+
notes_path: references/notes/superpowers.md
|
|
37
|
+
snapshots_path: references/snapshots/superpowers/
|
|
38
|
+
sync:
|
|
39
|
+
mode: manual-review
|
|
40
|
+
review_required: true
|
|
41
|
+
compare_against: snapshots
|
|
42
|
+
publish_target: toolkit-and-platform-generation
|
|
43
|
+
- id: everything-claude-code
|
|
44
|
+
title: Everything Claude Code
|
|
45
|
+
kind: github-public-repo
|
|
46
|
+
status: active
|
|
47
|
+
owner: codex
|
|
48
|
+
source_url: https://github.com/affaan-m/everything-claude-code.git
|
|
49
|
+
source_paths:
|
|
50
|
+
- CLAUDE.md
|
|
51
|
+
- docs
|
|
52
|
+
- commands
|
|
53
|
+
notes_path: references/notes/everything-claude-code.md
|
|
54
|
+
snapshots_path: references/snapshots/everything-claude-code/
|
|
55
|
+
sync:
|
|
56
|
+
mode: manual-review
|
|
57
|
+
review_required: true
|
|
58
|
+
compare_against: snapshots
|
|
59
|
+
publish_target: toolkit-and-platform-generation
|
|
60
|
+
- id: gstack
|
|
61
|
+
title: GStack
|
|
62
|
+
kind: github-public-repo
|
|
63
|
+
status: active
|
|
64
|
+
owner: codex
|
|
65
|
+
source_url: https://github.com/garrytan/gstack.git
|
|
66
|
+
source_paths:
|
|
67
|
+
- prompts
|
|
68
|
+
- commands
|
|
69
|
+
- docs
|
|
70
|
+
notes_path: references/notes/gstack.md
|
|
71
|
+
snapshots_path: references/snapshots/gstack/
|
|
72
|
+
sync:
|
|
73
|
+
mode: manual-review
|
|
74
|
+
review_required: true
|
|
75
|
+
compare_against: snapshots
|
|
76
|
+
publish_target: toolkit-and-platform-generation
|
|
77
|
+
- id: andrej-karpathy-skills
|
|
78
|
+
title: Andrej Karpathy Skills
|
|
79
|
+
kind: github-public-repo
|
|
80
|
+
status: active
|
|
81
|
+
owner: codex
|
|
82
|
+
source_url: https://github.com/multica-ai/andrej-karpathy-skills.git
|
|
83
|
+
source_paths:
|
|
84
|
+
- CLAUDE.md
|
|
85
|
+
- README.md
|
|
86
|
+
- EXAMPLES.md
|
|
87
|
+
- skills/karpathy-guidelines
|
|
88
|
+
notes_path: references/notes/andrej-karpathy-skills.md
|
|
89
|
+
snapshots_path: references/snapshots/andrej-karpathy-skills/
|
|
90
|
+
sync:
|
|
91
|
+
mode: manual-review
|
|
92
|
+
review_required: true
|
|
93
|
+
compare_against: snapshots
|
|
94
|
+
publish_target: toolkit-and-platform-generation
|