artifact-chain-assistant 0.9.3 → 0.10.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.
Files changed (55) hide show
  1. package/.claude-plugin/plugin.json +1 -1
  2. package/.codex-plugin/plugin.json +1 -1
  3. package/.kimi-plugin/plugin.json +1 -1
  4. package/CHANGELOG.md +37 -0
  5. package/INSTALL.md +56 -17
  6. package/README.md +23 -5
  7. package/README.zh-CN.md +21 -5
  8. package/adapters/claude/.claude-plugin/plugin.json +1 -1
  9. package/adapters/claude/INSTALL.md +56 -17
  10. package/adapters/claude/agent-methods/catalog.yaml +4 -4
  11. package/adapters/claude/compatibility.json +4 -4
  12. package/adapters/claude/family-apis/catalog.json +1 -1
  13. package/adapters/claude/scripts/lib/entry-discovery.mjs +123 -0
  14. package/adapters/claude/scripts/setup-checks.mjs +267 -0
  15. package/adapters/claude/skills/help/SKILL.md +17 -4
  16. package/adapters/claude/skills/quickstart/SKILL.md +56 -1
  17. package/adapters/claude/skills/setup/SKILL.md +58 -6
  18. package/adapters/claude/skills/where-am-i/SKILL.md +1 -1
  19. package/adapters/codex/.codex-plugin/plugin.json +1 -1
  20. package/adapters/codex/INSTALL.md +56 -17
  21. package/adapters/codex/agent-methods/catalog.yaml +4 -4
  22. package/adapters/codex/compatibility.json +4 -4
  23. package/adapters/codex/family-apis/catalog.json +1 -1
  24. package/adapters/codex/scripts/lib/entry-discovery.mjs +123 -0
  25. package/adapters/codex/scripts/setup-checks.mjs +267 -0
  26. package/adapters/codex/skills/help/SKILL.md +17 -4
  27. package/adapters/codex/skills/quickstart/SKILL.md +56 -1
  28. package/adapters/codex/skills/setup/SKILL.md +58 -6
  29. package/adapters/codex/skills/where-am-i/SKILL.md +1 -1
  30. package/adapters/kimi/.kimi-plugin/plugin.json +1 -1
  31. package/adapters/kimi/INSTALL.md +56 -17
  32. package/adapters/kimi/agent-methods/catalog.yaml +4 -4
  33. package/adapters/kimi/compatibility.json +4 -4
  34. package/adapters/kimi/family-apis/catalog.json +1 -1
  35. package/adapters/kimi/scripts/lib/entry-discovery.mjs +123 -0
  36. package/adapters/kimi/scripts/setup-checks.mjs +267 -0
  37. package/adapters/kimi/skills/help/SKILL.md +17 -4
  38. package/adapters/kimi/skills/quickstart/SKILL.md +56 -1
  39. package/adapters/kimi/skills/setup/SKILL.md +58 -6
  40. package/adapters/kimi/skills/where-am-i/SKILL.md +1 -1
  41. package/agent-methods/catalog.yaml +4 -4
  42. package/compatibility.json +4 -4
  43. package/family-apis/catalog.json +1 -1
  44. package/package.json +3 -3
  45. package/scripts/build-runtime-bundles.mjs +1 -0
  46. package/scripts/lib/entry-discovery.mjs +123 -0
  47. package/scripts/setup-checks.mjs +267 -0
  48. package/skills/help/SKILL.md +17 -4
  49. package/skills/quickstart/SKILL.md +56 -1
  50. package/skills/setup/SKILL.md +58 -6
  51. package/skills/where-am-i/SKILL.md +1 -1
  52. package/skills-src/help/SKILL.md +17 -4
  53. package/skills-src/quickstart/SKILL.md +56 -1
  54. package/skills-src/setup/SKILL.md +58 -6
  55. package/skills-src/where-am-i/SKILL.md.tpl +1 -1
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "artifact-chain-assistant",
3
- "version": "0.9.3",
3
+ "version": "0.10.0",
4
4
  "description": "Artifact-chain intake, review/repair/batch/audit workflows, diagnostics, hooks, and version-lock maintenance helpers.",
5
5
  "author": {
6
6
  "name": "广州市风荷科技有限公司"
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "artifact-chain-assistant",
3
3
  "displayName": "Artifact Chain Assistant",
4
- "version": "0.9.3",
4
+ "version": "0.10.0",
5
5
  "description": "Artifact-chain intake, review/repair/batch/audit workflows, diagnostics, and version-lock maintenance helpers.",
6
6
  "author": {
7
7
  "name": "广州市风荷科技有限公司"
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "artifact-chain-assistant",
3
- "version": "0.9.3",
3
+ "version": "0.10.0",
4
4
  "description": "Artifact-chain intake, review/repair/batch/audit workflows, diagnostics, and version-lock maintenance helpers.",
5
5
  "author": {
6
6
  "name": "广州市风荷科技有限公司"
package/CHANGELOG.md CHANGED
@@ -1,5 +1,42 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.10.0
4
+
5
+ ### Added
6
+
7
+ - Added the product-owned setup runner and entry-discovery contract to every generated Codex,
8
+ Claude Code, and Kimi Code surface. Setup reports native-binding failures from structured doctor
9
+ output and keeps bootstrap behind explicit write authorization.
10
+
11
+ ### Changed
12
+
13
+ - Aligned the existing 16-entry method catalog, generated host surfaces, and documentation with the
14
+ canonical `help`, `quickstart`, and `setup` entry semantics.
15
+ - Runtime compatibility, installation commands, plugin manifests, Family API metadata, and adapter
16
+ catalogs are synchronized with `artifact-graph@0.10.0`.
17
+
18
+ ### Fixed
19
+
20
+ - Entry skills resolve shared scripts from the installed plugin root. Their behavior no longer
21
+ depends on the target project's working directory or a parent-repository layout.
22
+
23
+ ## 0.9.4
24
+
25
+ ### Added
26
+
27
+ - Qoder can consume the existing root plugin package as a skills-only host. This compatibility
28
+ path reuses the shared skills and does not add a Qoder-specific adapter, manifest, commands,
29
+ hooks, or settings.
30
+
31
+ ### Changed
32
+
33
+ - Host smoke verification now confirms that Qoder's reported install path is isolated and contains
34
+ the shared runtime resource closure plus every expected skill entry point.
35
+ - Shared skill descriptions use host-neutral language where the workflow is not specific to Codex,
36
+ so the same guidance remains accurate in Qoder and other supported hosts.
37
+ - Runtime compatibility and generated plugin manifests are synchronized with
38
+ `artifact-graph@0.9.4`.
39
+
3
40
  ## 0.9.3
4
41
 
5
42
  ### Changed
package/INSTALL.md CHANGED
@@ -2,18 +2,20 @@
2
2
 
3
3
  This guide separates two responsibilities:
4
4
 
5
- 1. Install the assistant plugin into Codex and/or Claude Code.
5
+ 1. Install the assistant plugin into Codex, Claude Code, Kimi Code, or Qoder.
6
6
  2. Prepare each target project so the plugin has a project-local artifact chain to manage.
7
7
 
8
8
  Codex exposes `.codex-plugin/plugin.json` and `skills/**` only. Claude Code also exposes slash
9
- command wrappers and a Stop-hook guardrail. Neither host surface replaces Git hooks or CI: those
9
+ command wrappers and a Stop-hook guardrail. Qoder currently runs in skill-compatible mode: it
10
+ installs and discovers the shared skills but does not receive slash command wrappers or the
11
+ Stop-hook guardrail (see [Qoder](#qoder)). Neither host surface replaces Git hooks or CI: those
10
12
  remain the hard gates for a target project's artifacts, graph config, version lock, and project
11
13
  instructions.
12
14
 
13
15
  ## Prerequisites
14
16
 
15
17
  - Node.js `>=22.0.0`.
16
- - `artifact-graph` 0.9.3 installed in the target project.
18
+ - `artifact-graph` 0.10.0 installed in the target project.
17
19
  - **GitHub SSH key** — Claude Code clones `source: github` entries over SSH by default. If you
18
20
  have not configured a GitHub SSH key, set `CLAUDE_CODE_PLUGIN_PREFER_HTTPS=1` in your shell
19
21
  profile, or add the marketplace with an explicit `https://` URL. Codex users can check
@@ -25,24 +27,24 @@ instructions.
25
27
 
26
28
  | Plugin | Verified Runtime | Install |
27
29
  | --- | --- | --- |
28
- | `artifact-chain-assistant` 0.9.3 | `artifact-graph` 0.9.3 | `pnpm add -D artifact-graph@0.9.3` |
30
+ | `artifact-chain-assistant` 0.10.0 | `artifact-graph` 0.10.0 | `pnpm add -D artifact-graph@0.10.0` |
29
31
 
30
32
  ### Install The Runtime
31
33
 
32
34
  The default installation path uses the npm registry with a precise version:
33
35
 
34
36
  ```bash
35
- pnpm add -D artifact-graph@0.9.3
37
+ pnpm add -D artifact-graph@0.10.0
36
38
  ```
37
39
 
38
40
  If the npm registry is unavailable, use the explicit GitHub fallback pinned to the verified tag:
39
41
 
40
42
  ```bash
41
- pnpm add -D github:ifoohoo/artifact-graph#artifact-graph-v0.9.3
43
+ pnpm add -D github:ifoohoo/artifact-graph#artifact-graph-v0.10.0
42
44
  ```
43
45
 
44
46
  > **Never** install with an unlocked range (`artifact-graph`, `artifact-graph@latest`,
45
- > `artifact-graph@^0.9.3`) or an unpinned GitHub URL (`github:ifoohoo/artifact-graph`).
47
+ > `artifact-graph@^0.10.0`) or an unpinned GitHub URL (`github:ifoohoo/artifact-graph`).
46
48
  > Unlocked installs produce non-reproducible dependency trees and break version-lock audit.
47
49
 
48
50
  With pnpm 10+, projects that install `artifact-graph` must allow the native `better-sqlite3`
@@ -69,7 +71,7 @@ allowBuilds:
69
71
 
70
72
  The plugin's `doctor` command validates the installed runtime version before running any
71
73
  diagnostic. If it detects a version mismatch or missing CLI, it reports the exact remediation
72
- command (`pnpm add -D artifact-graph@0.9.3`) and exits non-zero.
74
+ command (`pnpm add -D artifact-graph@0.10.0`) and exits non-zero.
73
75
 
74
76
  ### CLI Resolution Order
75
77
 
@@ -144,7 +146,7 @@ wrappers, and Stop-hook guardrail. These assistant controls do not replace Git h
144
146
 
145
147
  > **Marketplace note**: `ifoohoo/artifact-skill-set` is an external independent marketplace. The
146
148
  > plugin payload is still published from `ifoohoo/artifact-chain-assistant`. The marketplace entry
147
- > must publish and enable `artifact-chain-assistant` 0.9.3 before the install commands above will
149
+ > must publish and enable `artifact-chain-assistant` 0.10.0 before the install commands above will
148
150
  > succeed.
149
151
 
150
152
  ### Kimi Code
@@ -171,19 +173,56 @@ skills, and managed scripts (`doctor.mjs`, `check-workflow-profile.mjs`, `run-ar
171
173
  non-interactive install CLI, so automated install verification is limited to layout checks;
172
174
  use `artifact-chain-maintainer` to guide version-lock CLI operations.
173
175
 
176
+ ### Qoder
177
+
178
+ Qoder is currently supported as a **skill-compatible host**, not as a fourth adapter. It reuses the
179
+ existing `artifact-skill-set` marketplace: Qoder recognizes the root
180
+ `.claude-plugin/marketplace.json` and installs the shared plugin root (`skills/**`), so no
181
+ Qoder-specific manifest or duplicated runtime assets are required.
182
+
183
+ Register the marketplace and install the plugin (illustrative commands):
184
+
185
+ ```bash
186
+ qodercli plugin marketplace add ifoohoo/artifact-skill-set --scope user
187
+ qodercli plugin install artifact-chain-assistant@artifact-skill-set --scope user --json
188
+ qodercli plugin list --json
189
+ ```
190
+
191
+ > The exact flags may change between Qoder CLI releases. Treat the commands above as
192
+ > illustrations and confirm against `qodercli plugin ... --help` at execution time.
193
+
194
+ Current support boundary:
195
+
196
+ - **Committed**: plugin installation and shared skill discovery. Qoder installs
197
+ `artifact-chain-assistant` from the marketplace and discovers the shared `skills/` entries.
198
+ - **Not committed**: Claude Code slash command wrappers and the Stop-hook guardrail are not
199
+ provided for Qoder. `commands` and `hooks` being empty in `plugin list --json` is expected,
200
+ not a defect.
201
+
202
+ Verify an installation with `qodercli plugin list --json`: confirm the installed version, that the
203
+ plugin is enabled, that `installPath` points at the expected location, and that the `skills` list
204
+ matches the shared skill set. Diagnostics still use the plugin root `scripts/doctor.mjs` — resolve
205
+ the installed root from the `installPath` reported by `plugin list --json`, then run
206
+ `node "$PLUGIN_ROOT/scripts/doctor.mjs" --root . --format json`. There is no Qoder-specific
207
+ adapter doctor.
208
+
174
209
  ## Post-Installation Discovery
175
210
 
176
211
  After installing the plugin, use these entry points to understand available capabilities:
177
212
 
178
- 1. **`help`** — Run this skill to see the standard Family API catalog and bundled legacy methods.
179
- It shows what families and services the plugin provides, without claiming any are installed, enabled, or verified
180
- for your project. Installation of the plugin does NOT mean families are bound or providers are active.
213
+ 1. **`help`** — Run this skill when you ask "what can this plugin do" or "how does the artifact
214
+ chain work". It shows the standard Family API catalog and bundled legacy methods the plugin's
215
+ capabilities and what the artifact chain is for without claiming any are installed, enabled, or
216
+ verified for your project. Installation of the plugin does NOT mean families are bound or providers
217
+ are active. If the Registry is missing, it still runs and honestly lists which standard services
218
+ are not yet executable.
181
219
 
182
- 2. **`setup`** — Run this skill for read-only environment diagnostics: plugin closure integrity, Node/CLI
220
+ 2. **`setup`** — Run this skill when you ask "is my environment ready". It performs read-only
221
+ environment diagnostics: plugin closure integrity, Node/CLI
183
222
  availability, doctor output, project config, version lock, and registry availability. It outputs a structured status
184
223
  report with PASS/WARN/FAIL for each check plus precise next steps, and writes nothing without explicit authorization.
185
224
 
186
- 3. **`quickstart`** — Run this skill when unsure which skill to use. It routes your intent to the correct skill:
225
+ 3. **`quickstart`** — Run this skill when getting started or unsure which skill to use. It routes your intent to the correct skill via a deterministic routing table covering common Chinese/English requests:
187
226
  capability questions go to `help`, environment checks to `setup`, initialization to `setup` then bootstrap,
188
227
  project triage to `where-am-i`, maintenance to `maintainer`, and explicit artifact tasks to the matching family/service.
189
228
 
@@ -218,7 +257,7 @@ The plugin should not move these files into the plugin repository.
218
257
 
219
258
  For a first-time setup, the end-to-end sequence is:
220
259
 
221
- 1. **Install the CLI** — `pnpm add -D artifact-graph@0.9.3` (see Prerequisites above).
260
+ 1. **Install the CLI** — `pnpm add -D artifact-graph@0.10.0` (see Prerequisites above).
222
261
  2. **Install the plugin** — follow the Codex or Claude Code section above.
223
262
  3. **Run bootstrap** — ask the assistant to use the `artifact-chain-bootstrap` skill (see prompt
224
263
  below). The skill will:
@@ -1016,7 +1055,7 @@ with append-only behavior; it does not overwrite local rules.
1016
1055
  ### Recovery Steps
1017
1056
 
1018
1057
  ```bash
1019
- # 1. Install dependencies from lockfile (gets artifact-graph@0.9.3)
1058
+ # 1. Install dependencies from lockfile (gets artifact-graph@0.10.0)
1020
1059
  pnpm install --frozen-lockfile
1021
1060
 
1022
1061
  # 2. Install plugin per your host (Codex / Claude Code / Kimi Code)
@@ -1083,7 +1122,7 @@ pnpm exec artifact-graph hooks install-git --hook all
1083
1122
  ### Enterprise Mirror
1084
1123
 
1085
1124
  If the corporate environment cannot access the public npm registry or GitHub, mirror both
1086
- `artifact-graph@0.9.3` and the plugin marketplace repository on an internal registry. The mirror
1125
+ `artifact-graph@0.10.0` and the plugin marketplace repository on an internal registry. The mirror
1087
1126
  does not change the state ownership model: Git-tracked files remain authoritative, local caches
1088
1127
  remain derived.
1089
1128
 
package/README.md CHANGED
@@ -2,7 +2,8 @@
2
2
 
3
3
  [中文](README.zh-CN.md)
4
4
 
5
- Codex, Claude Code, and Kimi Code assistant plugin for projects that use `artifact-graph`.
5
+ Codex, Claude Code, and Kimi Code assistant plugin for projects that use `artifact-graph`; Qoder
6
+ uses the same shared skills as a skill-compatible host.
6
7
 
7
8
  Artifact Chain Assistant packages reusable skills, host-specific adapter manifests, and install
8
9
  guidance for artifact-chain projects. It helps agents discover the right artifact context, bootstrap
@@ -142,6 +143,10 @@ override, compact query, fallback behavior, and `PLUGIN_ROOT` discovery, see
142
143
  - **Kimi Code** exposes `.kimi-plugin/plugin.json`, `skills/**`, and managed scripts
143
144
  (`doctor.mjs`, `check-workflow-profile.mjs`, `run-artifact-workflow.mjs`, `batch-split.mjs`, `batch-merge.mjs`). It does not
144
145
  expose plugin commands, hooks, or settings.
146
+ - **Qoder** is a skill-compatible host: it installs from the same `artifact-skill-set`
147
+ marketplace and discovers the shared `skills/**`. It does not expose slash command wrappers or
148
+ the Stop-hook guardrail, and diagnostics still use the plugin root `scripts/doctor.mjs` (there
149
+ is no Qoder adapter doctor).
145
150
  - Git hook templates and installers are host-independent. Git hooks and CI are the hard gates;
146
151
  host-specific skills and hooks only provide assistant guidance.
147
152
 
@@ -149,13 +154,13 @@ override, compact query, fallback behavior, and `PLUGIN_ROOT` discovery, see
149
154
 
150
155
  | Plugin | Runtime | Install |
151
156
  | --- | --- | --- |
152
- | `artifact-chain-assistant` 0.9.3 | `artifact-graph` 0.9.3 | `pnpm add -D artifact-graph@0.9.3` |
157
+ | `artifact-chain-assistant` 0.10.0 | `artifact-graph` 0.10.0 | `pnpm add -D artifact-graph@0.10.0` |
153
158
 
154
159
  ## Install
155
160
 
156
161
  ```bash
157
162
  # Runtime (required)
158
- npm install --save-dev artifact-graph@0.9.3
163
+ npm install --save-dev artifact-graph@0.10.0
159
164
  ```
160
165
 
161
166
  ```bash
@@ -177,7 +182,7 @@ codex plugin add artifact-chain-assistant@artifact-skill-set
177
182
 
178
183
  > **Marketplace note**: `ifoohoo/artifact-skill-set` is an external independent marketplace. The
179
184
  > plugin payload is still published from `ifoohoo/artifact-chain-assistant`. The marketplace entry
180
- > must publish and enable `artifact-chain-assistant` 0.9.3 before the install commands above will
185
+ > must publish and enable `artifact-chain-assistant` 0.10.0 before the install commands above will
181
186
  > succeed.
182
187
 
183
188
  ```text
@@ -188,12 +193,25 @@ codex plugin add artifact-chain-assistant@artifact-skill-set
188
193
  After installing or upgrading in Kimi Code, run `/reload` (or start a new session) so the plugin
189
194
  skills are picked up. Kimi Code has no non-interactive install CLI.
190
195
 
196
+ ```bash
197
+ # Qoder plugin (skill-compatible host; illustrative commands —
198
+ # confirm flags with `qodercli plugin ... --help` at execution time)
199
+ qodercli plugin marketplace add ifoohoo/artifact-skill-set --scope user
200
+ qodercli plugin install artifact-chain-assistant@artifact-skill-set --scope user --json
201
+ qodercli plugin list --json
202
+ ```
203
+
204
+ Qoder currently commits to skill installation and discovery only; Claude Code slash commands and
205
+ the Stop hook are not provided. Use `qodercli plugin list --json` to check the installed version,
206
+ `enabled`, `installPath`, and `skills`. Diagnostics still use the plugin root
207
+ `scripts/doctor.mjs`; there is no Qoder adapter doctor.
208
+
191
209
  For the full installation guide, quick start, Agent prompts, and clone onboarding, see
192
210
  [INSTALL.md](INSTALL.md).
193
211
 
194
212
  ## Quick Start
195
213
 
196
- 1. Install plugin 0.9.3 (above) and runtime: `pnpm add -D artifact-graph@0.9.3`.
214
+ 1. Install plugin 0.10.0 (above) and runtime: `pnpm add -D artifact-graph@0.10.0`.
197
215
  2. Run `artifact-graph doctor --root . --format json` to verify the runtime.
198
216
  3. For first-time setup, use the bootstrap skill.
199
217
  4. For daily work, use the maintainer skill.
package/README.zh-CN.md CHANGED
@@ -2,7 +2,8 @@
2
2
 
3
3
  [English](README.md)
4
4
 
5
- Artifact Chain Assistant 是面向 `artifact-graph` 项目的 Codex / Claude Code / Kimi Code 助手插件。
5
+ Artifact Chain Assistant 是面向 `artifact-graph` 项目的 Codex / Claude Code / Kimi Code 助手插件;
6
+ Qoder 以技能兼容宿主身份复用同一套共享技能。
6
7
 
7
8
  它打包了可复用的 skill、按宿主划分的 adapter manifest 和安装指引,帮助 agent 找到正确的
8
9
  制品上下文、初始化项目本地配置,并维护追溯版本锁(traceability version lock)。
@@ -190,6 +191,9 @@ catalog 还包含 `artifact.generate`,用于从模板和 profile 配置生成
190
191
  - **Kimi Code** 暴露 `.kimi-plugin/plugin.json`、`skills/**` 和受管脚本(`doctor.mjs`、
191
192
  `check-workflow-profile.mjs`、`run-artifact-workflow.mjs`、`batch-split.mjs`、`batch-merge.mjs`),不暴露插件命令、hook 和
192
193
  settings。
194
+ - **Qoder** 是技能兼容宿主:从同一个 `artifact-skill-set` 市场安装并发现共享
195
+ `skills/**`,不暴露 slash command 包装器和 Stop hook 防护;诊断仍使用插件根
196
+ `scripts/doctor.mjs`(不存在 Qoder adapter doctor)。
193
197
  - Git hook 模板和安装器与宿主无关。真正的硬门禁是 Git hook 和 CI;各宿主的 skill 和
194
198
  hook 只为 assistant 提供指引。
195
199
 
@@ -197,13 +201,13 @@ catalog 还包含 `artifact.generate`,用于从模板和 profile 配置生成
197
201
 
198
202
  | 插件 | 运行时 | 安装 |
199
203
  | --- | --- | --- |
200
- | `artifact-chain-assistant` 0.9.3 | `artifact-graph` 0.9.3 | `pnpm add -D artifact-graph@0.9.3` |
204
+ | `artifact-chain-assistant` 0.10.0 | `artifact-graph` 0.10.0 | `pnpm add -D artifact-graph@0.10.0` |
201
205
 
202
206
  ## 安装
203
207
 
204
208
  ```bash
205
209
  # 运行时(必需)
206
- npm install --save-dev artifact-graph@0.9.3
210
+ npm install --save-dev artifact-graph@0.10.0
207
211
  ```
208
212
 
209
213
  ```bash
@@ -225,7 +229,7 @@ codex plugin add artifact-chain-assistant@artifact-skill-set
225
229
 
226
230
  > **市场说明**:`ifoohoo/artifact-skill-set` 是外部独立市场,插件载荷仍由
227
231
  > `ifoohoo/artifact-chain-assistant` 发布。市场条目必须先发布并启用
228
- > `artifact-chain-assistant` 0.9.3,上述安装命令才能生效。
232
+ > `artifact-chain-assistant` 0.10.0,上述安装命令才能生效。
229
233
 
230
234
  ```text
231
235
  # Kimi Code 插件(交互式,user 作用域)
@@ -235,12 +239,24 @@ codex plugin add artifact-chain-assistant@artifact-skill-set
235
239
  在 Kimi Code 中安装或升级后,运行 `/reload`(或新开会话)让插件技能生效。Kimi Code
236
240
  没有非交互式安装 CLI。
237
241
 
242
+ ```bash
243
+ # Qoder 插件(技能兼容宿主;示意命令——
244
+ # 具体命令以执行时 qodercli plugin ... --help 为准)
245
+ qodercli plugin marketplace add ifoohoo/artifact-skill-set --scope user
246
+ qodercli plugin install artifact-chain-assistant@artifact-skill-set --scope user --json
247
+ qodercli plugin list --json
248
+ ```
249
+
250
+ Qoder 当前承诺的边界是技能安装与发现;不提供 Claude Code 的 slash commands 和 Stop hook。
251
+ 使用 `qodercli plugin list --json` 检查安装版本、`enabled`、`installPath` 和 `skills`。
252
+ 诊断仍使用插件根 `scripts/doctor.mjs`,不存在 Qoder adapter doctor。
253
+
238
254
  完整的安装指南、快速开始、Agent 提示词和团队成员 clone 接入,请参阅
239
255
  [INSTALL.md](INSTALL.md)。
240
256
 
241
257
  ## 快速开始
242
258
 
243
- 1. 安装插件 0.9.3(见上文)和运行时:`pnpm add -D artifact-graph@0.9.3`。
259
+ 1. 安装插件 0.10.0(见上文)和运行时:`pnpm add -D artifact-graph@0.10.0`。
244
260
  2. 运行 `artifact-graph doctor --root . --format json` 验证运行时。
245
261
  3. 首次搭建,进入 bootstrap 技能。
246
262
  4. 日常工作,进入 maintainer 技能。
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "artifact-chain-assistant",
3
- "version": "0.9.3",
3
+ "version": "0.10.0",
4
4
  "description": "Artifact-chain intake, review/repair/batch/audit workflows, diagnostics, hooks, and version-lock maintenance helpers.",
5
5
  "author": {
6
6
  "name": "广州市风荷科技有限公司"
@@ -5,18 +5,20 @@
5
5
 
6
6
  This guide separates two responsibilities:
7
7
 
8
- 1. Install the assistant plugin into Codex and/or Claude Code.
8
+ 1. Install the assistant plugin into Codex, Claude Code, Kimi Code, or Qoder.
9
9
  2. Prepare each target project so the plugin has a project-local artifact chain to manage.
10
10
 
11
11
  Codex exposes `.codex-plugin/plugin.json` and `skills/**` only. Claude Code also exposes slash
12
- command wrappers and a Stop-hook guardrail. Neither host surface replaces Git hooks or CI: those
12
+ command wrappers and a Stop-hook guardrail. Qoder currently runs in skill-compatible mode: it
13
+ installs and discovers the shared skills but does not receive slash command wrappers or the
14
+ Stop-hook guardrail (see [Qoder](#qoder)). Neither host surface replaces Git hooks or CI: those
13
15
  remain the hard gates for a target project's artifacts, graph config, version lock, and project
14
16
  instructions.
15
17
 
16
18
  ## Prerequisites
17
19
 
18
20
  - Node.js `>=22.0.0`.
19
- - `artifact-graph` 0.9.3 installed in the target project.
21
+ - `artifact-graph` 0.10.0 installed in the target project.
20
22
  - **GitHub SSH key** — Claude Code clones `source: github` entries over SSH by default. If you
21
23
  have not configured a GitHub SSH key, set `CLAUDE_CODE_PLUGIN_PREFER_HTTPS=1` in your shell
22
24
  profile, or add the marketplace with an explicit `https://` URL. Codex users can check
@@ -28,24 +30,24 @@ instructions.
28
30
 
29
31
  | Plugin | Verified Runtime | Install |
30
32
  | --- | --- | --- |
31
- | `artifact-chain-assistant` 0.9.3 | `artifact-graph` 0.9.3 | `pnpm add -D artifact-graph@0.9.3` |
33
+ | `artifact-chain-assistant` 0.10.0 | `artifact-graph` 0.10.0 | `pnpm add -D artifact-graph@0.10.0` |
32
34
 
33
35
  ### Install The Runtime
34
36
 
35
37
  The default installation path uses the npm registry with a precise version:
36
38
 
37
39
  ```bash
38
- pnpm add -D artifact-graph@0.9.3
40
+ pnpm add -D artifact-graph@0.10.0
39
41
  ```
40
42
 
41
43
  If the npm registry is unavailable, use the explicit GitHub fallback pinned to the verified tag:
42
44
 
43
45
  ```bash
44
- pnpm add -D github:ifoohoo/artifact-graph#artifact-graph-v0.9.3
46
+ pnpm add -D github:ifoohoo/artifact-graph#artifact-graph-v0.10.0
45
47
  ```
46
48
 
47
49
  > **Never** install with an unlocked range (`artifact-graph`, `artifact-graph@latest`,
48
- > `artifact-graph@^0.9.3`) or an unpinned GitHub URL (`github:ifoohoo/artifact-graph`).
50
+ > `artifact-graph@^0.10.0`) or an unpinned GitHub URL (`github:ifoohoo/artifact-graph`).
49
51
  > Unlocked installs produce non-reproducible dependency trees and break version-lock audit.
50
52
 
51
53
  With pnpm 10+, projects that install `artifact-graph` must allow the native `better-sqlite3`
@@ -72,7 +74,7 @@ allowBuilds:
72
74
 
73
75
  The plugin's `doctor` command validates the installed runtime version before running any
74
76
  diagnostic. If it detects a version mismatch or missing CLI, it reports the exact remediation
75
- command (`pnpm add -D artifact-graph@0.9.3`) and exits non-zero.
77
+ command (`pnpm add -D artifact-graph@0.10.0`) and exits non-zero.
76
78
 
77
79
  ### CLI Resolution Order
78
80
 
@@ -147,7 +149,7 @@ wrappers, and Stop-hook guardrail. These assistant controls do not replace Git h
147
149
 
148
150
  > **Marketplace note**: `ifoohoo/artifact-skill-set` is an external independent marketplace. The
149
151
  > plugin payload is still published from `ifoohoo/artifact-chain-assistant`. The marketplace entry
150
- > must publish and enable `artifact-chain-assistant` 0.9.3 before the install commands above will
152
+ > must publish and enable `artifact-chain-assistant` 0.10.0 before the install commands above will
151
153
  > succeed.
152
154
 
153
155
  ### Kimi Code
@@ -174,19 +176,56 @@ skills, and managed scripts (`doctor.mjs`, `check-workflow-profile.mjs`, `run-ar
174
176
  non-interactive install CLI, so automated install verification is limited to layout checks;
175
177
  use `artifact-chain-maintainer` to guide version-lock CLI operations.
176
178
 
179
+ ### Qoder
180
+
181
+ Qoder is currently supported as a **skill-compatible host**, not as a fourth adapter. It reuses the
182
+ existing `artifact-skill-set` marketplace: Qoder recognizes the root
183
+ `.claude-plugin/marketplace.json` and installs the shared plugin root (`skills/**`), so no
184
+ Qoder-specific manifest or duplicated runtime assets are required.
185
+
186
+ Register the marketplace and install the plugin (illustrative commands):
187
+
188
+ ```bash
189
+ qodercli plugin marketplace add ifoohoo/artifact-skill-set --scope user
190
+ qodercli plugin install artifact-chain-assistant@artifact-skill-set --scope user --json
191
+ qodercli plugin list --json
192
+ ```
193
+
194
+ > The exact flags may change between Qoder CLI releases. Treat the commands above as
195
+ > illustrations and confirm against `qodercli plugin ... --help` at execution time.
196
+
197
+ Current support boundary:
198
+
199
+ - **Committed**: plugin installation and shared skill discovery. Qoder installs
200
+ `artifact-chain-assistant` from the marketplace and discovers the shared `skills/` entries.
201
+ - **Not committed**: Claude Code slash command wrappers and the Stop-hook guardrail are not
202
+ provided for Qoder. `commands` and `hooks` being empty in `plugin list --json` is expected,
203
+ not a defect.
204
+
205
+ Verify an installation with `qodercli plugin list --json`: confirm the installed version, that the
206
+ plugin is enabled, that `installPath` points at the expected location, and that the `skills` list
207
+ matches the shared skill set. Diagnostics still use the plugin root `scripts/doctor.mjs` — resolve
208
+ the installed root from the `installPath` reported by `plugin list --json`, then run
209
+ `node "$PLUGIN_ROOT/scripts/doctor.mjs" --root . --format json`. There is no Qoder-specific
210
+ adapter doctor.
211
+
177
212
  ## Post-Installation Discovery
178
213
 
179
214
  After installing the plugin, use these entry points to understand available capabilities:
180
215
 
181
- 1. **`help`** — Run this skill to see the standard Family API catalog and bundled legacy methods.
182
- It shows what families and services the plugin provides, without claiming any are installed, enabled, or verified
183
- for your project. Installation of the plugin does NOT mean families are bound or providers are active.
216
+ 1. **`help`** — Run this skill when you ask "what can this plugin do" or "how does the artifact
217
+ chain work". It shows the standard Family API catalog and bundled legacy methods the plugin's
218
+ capabilities and what the artifact chain is for without claiming any are installed, enabled, or
219
+ verified for your project. Installation of the plugin does NOT mean families are bound or providers
220
+ are active. If the Registry is missing, it still runs and honestly lists which standard services
221
+ are not yet executable.
184
222
 
185
- 2. **`setup`** — Run this skill for read-only environment diagnostics: plugin closure integrity, Node/CLI
223
+ 2. **`setup`** — Run this skill when you ask "is my environment ready". It performs read-only
224
+ environment diagnostics: plugin closure integrity, Node/CLI
186
225
  availability, doctor output, project config, version lock, and registry availability. It outputs a structured status
187
226
  report with PASS/WARN/FAIL for each check plus precise next steps, and writes nothing without explicit authorization.
188
227
 
189
- 3. **`quickstart`** — Run this skill when unsure which skill to use. It routes your intent to the correct skill:
228
+ 3. **`quickstart`** — Run this skill when getting started or unsure which skill to use. It routes your intent to the correct skill via a deterministic routing table covering common Chinese/English requests:
190
229
  capability questions go to `help`, environment checks to `setup`, initialization to `setup` then bootstrap,
191
230
  project triage to `where-am-i`, maintenance to `maintainer`, and explicit artifact tasks to the matching family/service.
192
231
 
@@ -221,7 +260,7 @@ The plugin should not move these files into the plugin repository.
221
260
 
222
261
  For a first-time setup, the end-to-end sequence is:
223
262
 
224
- 1. **Install the CLI** — `pnpm add -D artifact-graph@0.9.3` (see Prerequisites above).
263
+ 1. **Install the CLI** — `pnpm add -D artifact-graph@0.10.0` (see Prerequisites above).
225
264
  2. **Install the plugin** — follow the Codex or Claude Code section above.
226
265
  3. **Run bootstrap** — ask the assistant to use the `artifact-chain-bootstrap` skill (see prompt
227
266
  below). The skill will:
@@ -1019,7 +1058,7 @@ with append-only behavior; it does not overwrite local rules.
1019
1058
  ### Recovery Steps
1020
1059
 
1021
1060
  ```bash
1022
- # 1. Install dependencies from lockfile (gets artifact-graph@0.9.3)
1061
+ # 1. Install dependencies from lockfile (gets artifact-graph@0.10.0)
1023
1062
  pnpm install --frozen-lockfile
1024
1063
 
1025
1064
  # 2. Install plugin per your host (Codex / Claude Code / Kimi Code)
@@ -1086,7 +1125,7 @@ pnpm exec artifact-graph hooks install-git --hook all
1086
1125
  ### Enterprise Mirror
1087
1126
 
1088
1127
  If the corporate environment cannot access the public npm registry or GitHub, mirror both
1089
- `artifact-graph@0.9.3` and the plugin marketplace repository on an internal registry. The mirror
1128
+ `artifact-graph@0.10.0` and the plugin marketplace repository on an internal registry. The mirror
1090
1129
  does not change the state ownership model: Git-tracked files remain authoritative, local caches
1091
1130
  remain derived.
1092
1131
 
@@ -1,7 +1,7 @@
1
1
  schemaVersion: 1
2
2
  catalog:
3
3
  id: artifact-chain-assistant
4
- version: "0.9.3"
4
+ version: "0.10.0"
5
5
  entries:
6
6
  - ref: artifact.prd-feature.default
7
7
  provider:
@@ -247,7 +247,7 @@ entries:
247
247
  plugin: artifact-chain-assistant
248
248
  skill: help
249
249
  kind: operation
250
- summary: "展示标准 Family API、bundled legacy 方法和安装后采用步骤"
250
+ summary: "能力说明入口:回答\"能做什么\"、\"制品链怎么用\",展示标准 Family API、bundled legacy 方法和采用步骤;Registry 缺失时诚实降级"
251
251
  match:
252
252
  domains: [artifact]
253
253
  artifactTypes: [design-spec, link, e2e, domain, contract, blueprint, verification, prd-feature, scenario-script]
@@ -265,7 +265,7 @@ entries:
265
265
  plugin: artifact-chain-assistant
266
266
  skill: setup
267
267
  kind: operation
268
- summary: "只读环境检查:插件闭包、CLI、config、版本锁、registry 可用性"
268
+ summary: "环境诊断入口:回答\"环境准备好了吗\",只读检查插件闭包、CLI、config、版本锁、registry 可用性,输出 PASS/WARN/FAIL"
269
269
  match:
270
270
  domains: [artifact]
271
271
  artifactTypes: [design-spec, link, e2e, domain, contract, blueprint, verification, prd-feature, scenario-script]
@@ -283,7 +283,7 @@ entries:
283
283
  plugin: artifact-chain-assistant
284
284
  skill: quickstart
285
285
  kind: operation
286
- summary: "按意图路由到正确的技能"
286
+ summary: "上手路径入口:不知道用哪个技能时,按确定性路由表把自然语言需求路由到 help/setup/where-am-i 等正确入口"
287
287
  match:
288
288
  domains: [artifact]
289
289
  artifactTypes: [design-spec, link, e2e, domain, contract, blueprint, verification, prd-feature, scenario-script]
@@ -1,9 +1,9 @@
1
1
  {
2
2
  "schemaVersion": "1.0",
3
- "pluginVersion": "0.9.3",
3
+ "pluginVersion": "0.10.0",
4
4
  "artifactGraph": {
5
- "verifiedVersion": "0.9.3",
6
- "installSpec": "artifact-graph@0.9.3",
7
- "githubFallbackSpec": "github:ifoohoo/artifact-graph#artifact-graph-v0.9.3"
5
+ "verifiedVersion": "0.10.0",
6
+ "installSpec": "artifact-graph@0.10.0",
7
+ "githubFallbackSpec": "github:ifoohoo/artifact-graph#artifact-graph-v0.10.0"
8
8
  }
9
9
  }
@@ -2,7 +2,7 @@
2
2
  "schemaVersion": 1,
3
3
  "catalog": {
4
4
  "id": "artifact-chain-assistant",
5
- "version": "0.9.3"
5
+ "version": "0.10.0"
6
6
  },
7
7
  "families": [
8
8
  {