artifact-chain-assistant 0.9.2 → 0.9.3
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/.claude-plugin/plugin.json +1 -1
- package/.codex-plugin/plugin.json +1 -1
- package/.kimi-plugin/plugin.json +1 -1
- package/CHANGELOG.md +7 -0
- package/INSTALL.md +10 -10
- package/README.md +4 -4
- package/README.zh-CN.md +4 -4
- package/adapters/claude/.claude-plugin/plugin.json +1 -1
- package/adapters/claude/INSTALL.md +10 -10
- package/adapters/claude/agent-methods/catalog.yaml +1 -1
- package/adapters/claude/compatibility.json +4 -4
- package/adapters/claude/family-apis/catalog.json +1 -1
- package/adapters/codex/.codex-plugin/plugin.json +1 -1
- package/adapters/codex/INSTALL.md +10 -10
- package/adapters/codex/agent-methods/catalog.yaml +1 -1
- package/adapters/codex/compatibility.json +4 -4
- package/adapters/codex/family-apis/catalog.json +1 -1
- package/adapters/kimi/.kimi-plugin/plugin.json +1 -1
- package/adapters/kimi/INSTALL.md +10 -10
- package/adapters/kimi/agent-methods/catalog.yaml +1 -1
- package/adapters/kimi/compatibility.json +4 -4
- package/adapters/kimi/family-apis/catalog.json +1 -1
- package/agent-methods/catalog.yaml +1 -1
- package/compatibility.json +4 -4
- package/family-apis/catalog.json +1 -1
- package/package.json +2 -2
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "artifact-chain-assistant",
|
|
3
3
|
"displayName": "Artifact Chain Assistant",
|
|
4
|
-
"version": "0.9.
|
|
4
|
+
"version": "0.9.3",
|
|
5
5
|
"description": "Artifact-chain intake, review/repair/batch/audit workflows, diagnostics, and version-lock maintenance helpers.",
|
|
6
6
|
"author": {
|
|
7
7
|
"name": "广州市风荷科技有限公司"
|
package/.kimi-plugin/plugin.json
CHANGED
package/CHANGELOG.md
CHANGED
package/INSTALL.md
CHANGED
|
@@ -13,7 +13,7 @@ instructions.
|
|
|
13
13
|
## Prerequisites
|
|
14
14
|
|
|
15
15
|
- Node.js `>=22.0.0`.
|
|
16
|
-
- `artifact-graph` 0.9.
|
|
16
|
+
- `artifact-graph` 0.9.3 installed in the target project.
|
|
17
17
|
- **GitHub SSH key** — Claude Code clones `source: github` entries over SSH by default. If you
|
|
18
18
|
have not configured a GitHub SSH key, set `CLAUDE_CODE_PLUGIN_PREFER_HTTPS=1` in your shell
|
|
19
19
|
profile, or add the marketplace with an explicit `https://` URL. Codex users can check
|
|
@@ -25,24 +25,24 @@ instructions.
|
|
|
25
25
|
|
|
26
26
|
| Plugin | Verified Runtime | Install |
|
|
27
27
|
| --- | --- | --- |
|
|
28
|
-
| `artifact-chain-assistant` 0.9.
|
|
28
|
+
| `artifact-chain-assistant` 0.9.3 | `artifact-graph` 0.9.3 | `pnpm add -D artifact-graph@0.9.3` |
|
|
29
29
|
|
|
30
30
|
### Install The Runtime
|
|
31
31
|
|
|
32
32
|
The default installation path uses the npm registry with a precise version:
|
|
33
33
|
|
|
34
34
|
```bash
|
|
35
|
-
pnpm add -D artifact-graph@0.9.
|
|
35
|
+
pnpm add -D artifact-graph@0.9.3
|
|
36
36
|
```
|
|
37
37
|
|
|
38
38
|
If the npm registry is unavailable, use the explicit GitHub fallback pinned to the verified tag:
|
|
39
39
|
|
|
40
40
|
```bash
|
|
41
|
-
pnpm add -D github:ifoohoo/artifact-graph#artifact-graph-v0.9.
|
|
41
|
+
pnpm add -D github:ifoohoo/artifact-graph#artifact-graph-v0.9.3
|
|
42
42
|
```
|
|
43
43
|
|
|
44
44
|
> **Never** install with an unlocked range (`artifact-graph`, `artifact-graph@latest`,
|
|
45
|
-
> `artifact-graph@^0.9.
|
|
45
|
+
> `artifact-graph@^0.9.3`) or an unpinned GitHub URL (`github:ifoohoo/artifact-graph`).
|
|
46
46
|
> Unlocked installs produce non-reproducible dependency trees and break version-lock audit.
|
|
47
47
|
|
|
48
48
|
With pnpm 10+, projects that install `artifact-graph` must allow the native `better-sqlite3`
|
|
@@ -69,7 +69,7 @@ allowBuilds:
|
|
|
69
69
|
|
|
70
70
|
The plugin's `doctor` command validates the installed runtime version before running any
|
|
71
71
|
diagnostic. If it detects a version mismatch or missing CLI, it reports the exact remediation
|
|
72
|
-
command (`pnpm add -D artifact-graph@0.9.
|
|
72
|
+
command (`pnpm add -D artifact-graph@0.9.3`) and exits non-zero.
|
|
73
73
|
|
|
74
74
|
### CLI Resolution Order
|
|
75
75
|
|
|
@@ -144,7 +144,7 @@ wrappers, and Stop-hook guardrail. These assistant controls do not replace Git h
|
|
|
144
144
|
|
|
145
145
|
> **Marketplace note**: `ifoohoo/artifact-skill-set` is an external independent marketplace. The
|
|
146
146
|
> plugin payload is still published from `ifoohoo/artifact-chain-assistant`. The marketplace entry
|
|
147
|
-
> must publish and enable `artifact-chain-assistant` 0.9.
|
|
147
|
+
> must publish and enable `artifact-chain-assistant` 0.9.3 before the install commands above will
|
|
148
148
|
> succeed.
|
|
149
149
|
|
|
150
150
|
### Kimi Code
|
|
@@ -218,7 +218,7 @@ The plugin should not move these files into the plugin repository.
|
|
|
218
218
|
|
|
219
219
|
For a first-time setup, the end-to-end sequence is:
|
|
220
220
|
|
|
221
|
-
1. **Install the CLI** — `pnpm add -D artifact-graph@0.9.
|
|
221
|
+
1. **Install the CLI** — `pnpm add -D artifact-graph@0.9.3` (see Prerequisites above).
|
|
222
222
|
2. **Install the plugin** — follow the Codex or Claude Code section above.
|
|
223
223
|
3. **Run bootstrap** — ask the assistant to use the `artifact-chain-bootstrap` skill (see prompt
|
|
224
224
|
below). The skill will:
|
|
@@ -1016,7 +1016,7 @@ with append-only behavior; it does not overwrite local rules.
|
|
|
1016
1016
|
### Recovery Steps
|
|
1017
1017
|
|
|
1018
1018
|
```bash
|
|
1019
|
-
# 1. Install dependencies from lockfile (gets artifact-graph@0.9.
|
|
1019
|
+
# 1. Install dependencies from lockfile (gets artifact-graph@0.9.3)
|
|
1020
1020
|
pnpm install --frozen-lockfile
|
|
1021
1021
|
|
|
1022
1022
|
# 2. Install plugin per your host (Codex / Claude Code / Kimi Code)
|
|
@@ -1083,7 +1083,7 @@ pnpm exec artifact-graph hooks install-git --hook all
|
|
|
1083
1083
|
### Enterprise Mirror
|
|
1084
1084
|
|
|
1085
1085
|
If the corporate environment cannot access the public npm registry or GitHub, mirror both
|
|
1086
|
-
`artifact-graph@0.9.
|
|
1086
|
+
`artifact-graph@0.9.3` and the plugin marketplace repository on an internal registry. The mirror
|
|
1087
1087
|
does not change the state ownership model: Git-tracked files remain authoritative, local caches
|
|
1088
1088
|
remain derived.
|
|
1089
1089
|
|
package/README.md
CHANGED
|
@@ -149,13 +149,13 @@ override, compact query, fallback behavior, and `PLUGIN_ROOT` discovery, see
|
|
|
149
149
|
|
|
150
150
|
| Plugin | Runtime | Install |
|
|
151
151
|
| --- | --- | --- |
|
|
152
|
-
| `artifact-chain-assistant` 0.9.
|
|
152
|
+
| `artifact-chain-assistant` 0.9.3 | `artifact-graph` 0.9.3 | `pnpm add -D artifact-graph@0.9.3` |
|
|
153
153
|
|
|
154
154
|
## Install
|
|
155
155
|
|
|
156
156
|
```bash
|
|
157
157
|
# Runtime (required)
|
|
158
|
-
npm install --save-dev artifact-graph@0.9.
|
|
158
|
+
npm install --save-dev artifact-graph@0.9.3
|
|
159
159
|
```
|
|
160
160
|
|
|
161
161
|
```bash
|
|
@@ -177,7 +177,7 @@ codex plugin add artifact-chain-assistant@artifact-skill-set
|
|
|
177
177
|
|
|
178
178
|
> **Marketplace note**: `ifoohoo/artifact-skill-set` is an external independent marketplace. The
|
|
179
179
|
> plugin payload is still published from `ifoohoo/artifact-chain-assistant`. The marketplace entry
|
|
180
|
-
> must publish and enable `artifact-chain-assistant` 0.9.
|
|
180
|
+
> must publish and enable `artifact-chain-assistant` 0.9.3 before the install commands above will
|
|
181
181
|
> succeed.
|
|
182
182
|
|
|
183
183
|
```text
|
|
@@ -193,7 +193,7 @@ For the full installation guide, quick start, Agent prompts, and clone onboardin
|
|
|
193
193
|
|
|
194
194
|
## Quick Start
|
|
195
195
|
|
|
196
|
-
1. Install plugin 0.9.
|
|
196
|
+
1. Install plugin 0.9.3 (above) and runtime: `pnpm add -D artifact-graph@0.9.3`.
|
|
197
197
|
2. Run `artifact-graph doctor --root . --format json` to verify the runtime.
|
|
198
198
|
3. For first-time setup, use the bootstrap skill.
|
|
199
199
|
4. For daily work, use the maintainer skill.
|
package/README.zh-CN.md
CHANGED
|
@@ -197,13 +197,13 @@ catalog 还包含 `artifact.generate`,用于从模板和 profile 配置生成
|
|
|
197
197
|
|
|
198
198
|
| 插件 | 运行时 | 安装 |
|
|
199
199
|
| --- | --- | --- |
|
|
200
|
-
| `artifact-chain-assistant` 0.9.
|
|
200
|
+
| `artifact-chain-assistant` 0.9.3 | `artifact-graph` 0.9.3 | `pnpm add -D artifact-graph@0.9.3` |
|
|
201
201
|
|
|
202
202
|
## 安装
|
|
203
203
|
|
|
204
204
|
```bash
|
|
205
205
|
# 运行时(必需)
|
|
206
|
-
npm install --save-dev artifact-graph@0.9.
|
|
206
|
+
npm install --save-dev artifact-graph@0.9.3
|
|
207
207
|
```
|
|
208
208
|
|
|
209
209
|
```bash
|
|
@@ -225,7 +225,7 @@ codex plugin add artifact-chain-assistant@artifact-skill-set
|
|
|
225
225
|
|
|
226
226
|
> **市场说明**:`ifoohoo/artifact-skill-set` 是外部独立市场,插件载荷仍由
|
|
227
227
|
> `ifoohoo/artifact-chain-assistant` 发布。市场条目必须先发布并启用
|
|
228
|
-
> `artifact-chain-assistant` 0.9.
|
|
228
|
+
> `artifact-chain-assistant` 0.9.3,上述安装命令才能生效。
|
|
229
229
|
|
|
230
230
|
```text
|
|
231
231
|
# Kimi Code 插件(交互式,user 作用域)
|
|
@@ -240,7 +240,7 @@ codex plugin add artifact-chain-assistant@artifact-skill-set
|
|
|
240
240
|
|
|
241
241
|
## 快速开始
|
|
242
242
|
|
|
243
|
-
1. 安装插件 0.9.
|
|
243
|
+
1. 安装插件 0.9.3(见上文)和运行时:`pnpm add -D artifact-graph@0.9.3`。
|
|
244
244
|
2. 运行 `artifact-graph doctor --root . --format json` 验证运行时。
|
|
245
245
|
3. 首次搭建,进入 bootstrap 技能。
|
|
246
246
|
4. 日常工作,进入 maintainer 技能。
|
|
@@ -16,7 +16,7 @@ instructions.
|
|
|
16
16
|
## Prerequisites
|
|
17
17
|
|
|
18
18
|
- Node.js `>=22.0.0`.
|
|
19
|
-
- `artifact-graph` 0.9.
|
|
19
|
+
- `artifact-graph` 0.9.3 installed in the target project.
|
|
20
20
|
- **GitHub SSH key** — Claude Code clones `source: github` entries over SSH by default. If you
|
|
21
21
|
have not configured a GitHub SSH key, set `CLAUDE_CODE_PLUGIN_PREFER_HTTPS=1` in your shell
|
|
22
22
|
profile, or add the marketplace with an explicit `https://` URL. Codex users can check
|
|
@@ -28,24 +28,24 @@ instructions.
|
|
|
28
28
|
|
|
29
29
|
| Plugin | Verified Runtime | Install |
|
|
30
30
|
| --- | --- | --- |
|
|
31
|
-
| `artifact-chain-assistant` 0.9.
|
|
31
|
+
| `artifact-chain-assistant` 0.9.3 | `artifact-graph` 0.9.3 | `pnpm add -D artifact-graph@0.9.3` |
|
|
32
32
|
|
|
33
33
|
### Install The Runtime
|
|
34
34
|
|
|
35
35
|
The default installation path uses the npm registry with a precise version:
|
|
36
36
|
|
|
37
37
|
```bash
|
|
38
|
-
pnpm add -D artifact-graph@0.9.
|
|
38
|
+
pnpm add -D artifact-graph@0.9.3
|
|
39
39
|
```
|
|
40
40
|
|
|
41
41
|
If the npm registry is unavailable, use the explicit GitHub fallback pinned to the verified tag:
|
|
42
42
|
|
|
43
43
|
```bash
|
|
44
|
-
pnpm add -D github:ifoohoo/artifact-graph#artifact-graph-v0.9.
|
|
44
|
+
pnpm add -D github:ifoohoo/artifact-graph#artifact-graph-v0.9.3
|
|
45
45
|
```
|
|
46
46
|
|
|
47
47
|
> **Never** install with an unlocked range (`artifact-graph`, `artifact-graph@latest`,
|
|
48
|
-
> `artifact-graph@^0.9.
|
|
48
|
+
> `artifact-graph@^0.9.3`) or an unpinned GitHub URL (`github:ifoohoo/artifact-graph`).
|
|
49
49
|
> Unlocked installs produce non-reproducible dependency trees and break version-lock audit.
|
|
50
50
|
|
|
51
51
|
With pnpm 10+, projects that install `artifact-graph` must allow the native `better-sqlite3`
|
|
@@ -72,7 +72,7 @@ allowBuilds:
|
|
|
72
72
|
|
|
73
73
|
The plugin's `doctor` command validates the installed runtime version before running any
|
|
74
74
|
diagnostic. If it detects a version mismatch or missing CLI, it reports the exact remediation
|
|
75
|
-
command (`pnpm add -D artifact-graph@0.9.
|
|
75
|
+
command (`pnpm add -D artifact-graph@0.9.3`) and exits non-zero.
|
|
76
76
|
|
|
77
77
|
### CLI Resolution Order
|
|
78
78
|
|
|
@@ -147,7 +147,7 @@ wrappers, and Stop-hook guardrail. These assistant controls do not replace Git h
|
|
|
147
147
|
|
|
148
148
|
> **Marketplace note**: `ifoohoo/artifact-skill-set` is an external independent marketplace. The
|
|
149
149
|
> plugin payload is still published from `ifoohoo/artifact-chain-assistant`. The marketplace entry
|
|
150
|
-
> must publish and enable `artifact-chain-assistant` 0.9.
|
|
150
|
+
> must publish and enable `artifact-chain-assistant` 0.9.3 before the install commands above will
|
|
151
151
|
> succeed.
|
|
152
152
|
|
|
153
153
|
### Kimi Code
|
|
@@ -221,7 +221,7 @@ The plugin should not move these files into the plugin repository.
|
|
|
221
221
|
|
|
222
222
|
For a first-time setup, the end-to-end sequence is:
|
|
223
223
|
|
|
224
|
-
1. **Install the CLI** — `pnpm add -D artifact-graph@0.9.
|
|
224
|
+
1. **Install the CLI** — `pnpm add -D artifact-graph@0.9.3` (see Prerequisites above).
|
|
225
225
|
2. **Install the plugin** — follow the Codex or Claude Code section above.
|
|
226
226
|
3. **Run bootstrap** — ask the assistant to use the `artifact-chain-bootstrap` skill (see prompt
|
|
227
227
|
below). The skill will:
|
|
@@ -1019,7 +1019,7 @@ with append-only behavior; it does not overwrite local rules.
|
|
|
1019
1019
|
### Recovery Steps
|
|
1020
1020
|
|
|
1021
1021
|
```bash
|
|
1022
|
-
# 1. Install dependencies from lockfile (gets artifact-graph@0.9.
|
|
1022
|
+
# 1. Install dependencies from lockfile (gets artifact-graph@0.9.3)
|
|
1023
1023
|
pnpm install --frozen-lockfile
|
|
1024
1024
|
|
|
1025
1025
|
# 2. Install plugin per your host (Codex / Claude Code / Kimi Code)
|
|
@@ -1086,7 +1086,7 @@ pnpm exec artifact-graph hooks install-git --hook all
|
|
|
1086
1086
|
### Enterprise Mirror
|
|
1087
1087
|
|
|
1088
1088
|
If the corporate environment cannot access the public npm registry or GitHub, mirror both
|
|
1089
|
-
`artifact-graph@0.9.
|
|
1089
|
+
`artifact-graph@0.9.3` and the plugin marketplace repository on an internal registry. The mirror
|
|
1090
1090
|
does not change the state ownership model: Git-tracked files remain authoritative, local caches
|
|
1091
1091
|
remain derived.
|
|
1092
1092
|
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"schemaVersion": "1.0",
|
|
3
|
-
"pluginVersion": "0.9.
|
|
3
|
+
"pluginVersion": "0.9.3",
|
|
4
4
|
"artifactGraph": {
|
|
5
|
-
"verifiedVersion": "0.9.
|
|
6
|
-
"installSpec": "artifact-graph@0.9.
|
|
7
|
-
"githubFallbackSpec": "github:ifoohoo/artifact-graph#artifact-graph-v0.9.
|
|
5
|
+
"verifiedVersion": "0.9.3",
|
|
6
|
+
"installSpec": "artifact-graph@0.9.3",
|
|
7
|
+
"githubFallbackSpec": "github:ifoohoo/artifact-graph#artifact-graph-v0.9.3"
|
|
8
8
|
}
|
|
9
9
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "artifact-chain-assistant",
|
|
3
3
|
"displayName": "Artifact Chain Assistant",
|
|
4
|
-
"version": "0.9.
|
|
4
|
+
"version": "0.9.3",
|
|
5
5
|
"description": "Artifact-chain intake, review/repair/batch/audit workflows, diagnostics, and version-lock maintenance helpers.",
|
|
6
6
|
"author": {
|
|
7
7
|
"name": "广州市风荷科技有限公司"
|
|
@@ -16,7 +16,7 @@ instructions.
|
|
|
16
16
|
## Prerequisites
|
|
17
17
|
|
|
18
18
|
- Node.js `>=22.0.0`.
|
|
19
|
-
- `artifact-graph` 0.9.
|
|
19
|
+
- `artifact-graph` 0.9.3 installed in the target project.
|
|
20
20
|
- **GitHub SSH key** — Claude Code clones `source: github` entries over SSH by default. If you
|
|
21
21
|
have not configured a GitHub SSH key, set `CLAUDE_CODE_PLUGIN_PREFER_HTTPS=1` in your shell
|
|
22
22
|
profile, or add the marketplace with an explicit `https://` URL. Codex users can check
|
|
@@ -28,24 +28,24 @@ instructions.
|
|
|
28
28
|
|
|
29
29
|
| Plugin | Verified Runtime | Install |
|
|
30
30
|
| --- | --- | --- |
|
|
31
|
-
| `artifact-chain-assistant` 0.9.
|
|
31
|
+
| `artifact-chain-assistant` 0.9.3 | `artifact-graph` 0.9.3 | `pnpm add -D artifact-graph@0.9.3` |
|
|
32
32
|
|
|
33
33
|
### Install The Runtime
|
|
34
34
|
|
|
35
35
|
The default installation path uses the npm registry with a precise version:
|
|
36
36
|
|
|
37
37
|
```bash
|
|
38
|
-
pnpm add -D artifact-graph@0.9.
|
|
38
|
+
pnpm add -D artifact-graph@0.9.3
|
|
39
39
|
```
|
|
40
40
|
|
|
41
41
|
If the npm registry is unavailable, use the explicit GitHub fallback pinned to the verified tag:
|
|
42
42
|
|
|
43
43
|
```bash
|
|
44
|
-
pnpm add -D github:ifoohoo/artifact-graph#artifact-graph-v0.9.
|
|
44
|
+
pnpm add -D github:ifoohoo/artifact-graph#artifact-graph-v0.9.3
|
|
45
45
|
```
|
|
46
46
|
|
|
47
47
|
> **Never** install with an unlocked range (`artifact-graph`, `artifact-graph@latest`,
|
|
48
|
-
> `artifact-graph@^0.9.
|
|
48
|
+
> `artifact-graph@^0.9.3`) or an unpinned GitHub URL (`github:ifoohoo/artifact-graph`).
|
|
49
49
|
> Unlocked installs produce non-reproducible dependency trees and break version-lock audit.
|
|
50
50
|
|
|
51
51
|
With pnpm 10+, projects that install `artifact-graph` must allow the native `better-sqlite3`
|
|
@@ -72,7 +72,7 @@ allowBuilds:
|
|
|
72
72
|
|
|
73
73
|
The plugin's `doctor` command validates the installed runtime version before running any
|
|
74
74
|
diagnostic. If it detects a version mismatch or missing CLI, it reports the exact remediation
|
|
75
|
-
command (`pnpm add -D artifact-graph@0.9.
|
|
75
|
+
command (`pnpm add -D artifact-graph@0.9.3`) and exits non-zero.
|
|
76
76
|
|
|
77
77
|
### CLI Resolution Order
|
|
78
78
|
|
|
@@ -147,7 +147,7 @@ wrappers, and Stop-hook guardrail. These assistant controls do not replace Git h
|
|
|
147
147
|
|
|
148
148
|
> **Marketplace note**: `ifoohoo/artifact-skill-set` is an external independent marketplace. The
|
|
149
149
|
> plugin payload is still published from `ifoohoo/artifact-chain-assistant`. The marketplace entry
|
|
150
|
-
> must publish and enable `artifact-chain-assistant` 0.9.
|
|
150
|
+
> must publish and enable `artifact-chain-assistant` 0.9.3 before the install commands above will
|
|
151
151
|
> succeed.
|
|
152
152
|
|
|
153
153
|
### Kimi Code
|
|
@@ -221,7 +221,7 @@ The plugin should not move these files into the plugin repository.
|
|
|
221
221
|
|
|
222
222
|
For a first-time setup, the end-to-end sequence is:
|
|
223
223
|
|
|
224
|
-
1. **Install the CLI** — `pnpm add -D artifact-graph@0.9.
|
|
224
|
+
1. **Install the CLI** — `pnpm add -D artifact-graph@0.9.3` (see Prerequisites above).
|
|
225
225
|
2. **Install the plugin** — follow the Codex or Claude Code section above.
|
|
226
226
|
3. **Run bootstrap** — ask the assistant to use the `artifact-chain-bootstrap` skill (see prompt
|
|
227
227
|
below). The skill will:
|
|
@@ -1019,7 +1019,7 @@ with append-only behavior; it does not overwrite local rules.
|
|
|
1019
1019
|
### Recovery Steps
|
|
1020
1020
|
|
|
1021
1021
|
```bash
|
|
1022
|
-
# 1. Install dependencies from lockfile (gets artifact-graph@0.9.
|
|
1022
|
+
# 1. Install dependencies from lockfile (gets artifact-graph@0.9.3)
|
|
1023
1023
|
pnpm install --frozen-lockfile
|
|
1024
1024
|
|
|
1025
1025
|
# 2. Install plugin per your host (Codex / Claude Code / Kimi Code)
|
|
@@ -1086,7 +1086,7 @@ pnpm exec artifact-graph hooks install-git --hook all
|
|
|
1086
1086
|
### Enterprise Mirror
|
|
1087
1087
|
|
|
1088
1088
|
If the corporate environment cannot access the public npm registry or GitHub, mirror both
|
|
1089
|
-
`artifact-graph@0.9.
|
|
1089
|
+
`artifact-graph@0.9.3` and the plugin marketplace repository on an internal registry. The mirror
|
|
1090
1090
|
does not change the state ownership model: Git-tracked files remain authoritative, local caches
|
|
1091
1091
|
remain derived.
|
|
1092
1092
|
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"schemaVersion": "1.0",
|
|
3
|
-
"pluginVersion": "0.9.
|
|
3
|
+
"pluginVersion": "0.9.3",
|
|
4
4
|
"artifactGraph": {
|
|
5
|
-
"verifiedVersion": "0.9.
|
|
6
|
-
"installSpec": "artifact-graph@0.9.
|
|
7
|
-
"githubFallbackSpec": "github:ifoohoo/artifact-graph#artifact-graph-v0.9.
|
|
5
|
+
"verifiedVersion": "0.9.3",
|
|
6
|
+
"installSpec": "artifact-graph@0.9.3",
|
|
7
|
+
"githubFallbackSpec": "github:ifoohoo/artifact-graph#artifact-graph-v0.9.3"
|
|
8
8
|
}
|
|
9
9
|
}
|
package/adapters/kimi/INSTALL.md
CHANGED
|
@@ -16,7 +16,7 @@ instructions.
|
|
|
16
16
|
## Prerequisites
|
|
17
17
|
|
|
18
18
|
- Node.js `>=22.0.0`.
|
|
19
|
-
- `artifact-graph` 0.9.
|
|
19
|
+
- `artifact-graph` 0.9.3 installed in the target project.
|
|
20
20
|
- **GitHub SSH key** — Claude Code clones `source: github` entries over SSH by default. If you
|
|
21
21
|
have not configured a GitHub SSH key, set `CLAUDE_CODE_PLUGIN_PREFER_HTTPS=1` in your shell
|
|
22
22
|
profile, or add the marketplace with an explicit `https://` URL. Codex users can check
|
|
@@ -28,24 +28,24 @@ instructions.
|
|
|
28
28
|
|
|
29
29
|
| Plugin | Verified Runtime | Install |
|
|
30
30
|
| --- | --- | --- |
|
|
31
|
-
| `artifact-chain-assistant` 0.9.
|
|
31
|
+
| `artifact-chain-assistant` 0.9.3 | `artifact-graph` 0.9.3 | `pnpm add -D artifact-graph@0.9.3` |
|
|
32
32
|
|
|
33
33
|
### Install The Runtime
|
|
34
34
|
|
|
35
35
|
The default installation path uses the npm registry with a precise version:
|
|
36
36
|
|
|
37
37
|
```bash
|
|
38
|
-
pnpm add -D artifact-graph@0.9.
|
|
38
|
+
pnpm add -D artifact-graph@0.9.3
|
|
39
39
|
```
|
|
40
40
|
|
|
41
41
|
If the npm registry is unavailable, use the explicit GitHub fallback pinned to the verified tag:
|
|
42
42
|
|
|
43
43
|
```bash
|
|
44
|
-
pnpm add -D github:ifoohoo/artifact-graph#artifact-graph-v0.9.
|
|
44
|
+
pnpm add -D github:ifoohoo/artifact-graph#artifact-graph-v0.9.3
|
|
45
45
|
```
|
|
46
46
|
|
|
47
47
|
> **Never** install with an unlocked range (`artifact-graph`, `artifact-graph@latest`,
|
|
48
|
-
> `artifact-graph@^0.9.
|
|
48
|
+
> `artifact-graph@^0.9.3`) or an unpinned GitHub URL (`github:ifoohoo/artifact-graph`).
|
|
49
49
|
> Unlocked installs produce non-reproducible dependency trees and break version-lock audit.
|
|
50
50
|
|
|
51
51
|
With pnpm 10+, projects that install `artifact-graph` must allow the native `better-sqlite3`
|
|
@@ -72,7 +72,7 @@ allowBuilds:
|
|
|
72
72
|
|
|
73
73
|
The plugin's `doctor` command validates the installed runtime version before running any
|
|
74
74
|
diagnostic. If it detects a version mismatch or missing CLI, it reports the exact remediation
|
|
75
|
-
command (`pnpm add -D artifact-graph@0.9.
|
|
75
|
+
command (`pnpm add -D artifact-graph@0.9.3`) and exits non-zero.
|
|
76
76
|
|
|
77
77
|
### CLI Resolution Order
|
|
78
78
|
|
|
@@ -147,7 +147,7 @@ wrappers, and Stop-hook guardrail. These assistant controls do not replace Git h
|
|
|
147
147
|
|
|
148
148
|
> **Marketplace note**: `ifoohoo/artifact-skill-set` is an external independent marketplace. The
|
|
149
149
|
> plugin payload is still published from `ifoohoo/artifact-chain-assistant`. The marketplace entry
|
|
150
|
-
> must publish and enable `artifact-chain-assistant` 0.9.
|
|
150
|
+
> must publish and enable `artifact-chain-assistant` 0.9.3 before the install commands above will
|
|
151
151
|
> succeed.
|
|
152
152
|
|
|
153
153
|
### Kimi Code
|
|
@@ -221,7 +221,7 @@ The plugin should not move these files into the plugin repository.
|
|
|
221
221
|
|
|
222
222
|
For a first-time setup, the end-to-end sequence is:
|
|
223
223
|
|
|
224
|
-
1. **Install the CLI** — `pnpm add -D artifact-graph@0.9.
|
|
224
|
+
1. **Install the CLI** — `pnpm add -D artifact-graph@0.9.3` (see Prerequisites above).
|
|
225
225
|
2. **Install the plugin** — follow the Codex or Claude Code section above.
|
|
226
226
|
3. **Run bootstrap** — ask the assistant to use the `artifact-chain-bootstrap` skill (see prompt
|
|
227
227
|
below). The skill will:
|
|
@@ -1019,7 +1019,7 @@ with append-only behavior; it does not overwrite local rules.
|
|
|
1019
1019
|
### Recovery Steps
|
|
1020
1020
|
|
|
1021
1021
|
```bash
|
|
1022
|
-
# 1. Install dependencies from lockfile (gets artifact-graph@0.9.
|
|
1022
|
+
# 1. Install dependencies from lockfile (gets artifact-graph@0.9.3)
|
|
1023
1023
|
pnpm install --frozen-lockfile
|
|
1024
1024
|
|
|
1025
1025
|
# 2. Install plugin per your host (Codex / Claude Code / Kimi Code)
|
|
@@ -1086,7 +1086,7 @@ pnpm exec artifact-graph hooks install-git --hook all
|
|
|
1086
1086
|
### Enterprise Mirror
|
|
1087
1087
|
|
|
1088
1088
|
If the corporate environment cannot access the public npm registry or GitHub, mirror both
|
|
1089
|
-
`artifact-graph@0.9.
|
|
1089
|
+
`artifact-graph@0.9.3` and the plugin marketplace repository on an internal registry. The mirror
|
|
1090
1090
|
does not change the state ownership model: Git-tracked files remain authoritative, local caches
|
|
1091
1091
|
remain derived.
|
|
1092
1092
|
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"schemaVersion": "1.0",
|
|
3
|
-
"pluginVersion": "0.9.
|
|
3
|
+
"pluginVersion": "0.9.3",
|
|
4
4
|
"artifactGraph": {
|
|
5
|
-
"verifiedVersion": "0.9.
|
|
6
|
-
"installSpec": "artifact-graph@0.9.
|
|
7
|
-
"githubFallbackSpec": "github:ifoohoo/artifact-graph#artifact-graph-v0.9.
|
|
5
|
+
"verifiedVersion": "0.9.3",
|
|
6
|
+
"installSpec": "artifact-graph@0.9.3",
|
|
7
|
+
"githubFallbackSpec": "github:ifoohoo/artifact-graph#artifact-graph-v0.9.3"
|
|
8
8
|
}
|
|
9
9
|
}
|
package/compatibility.json
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"schemaVersion": "1.0",
|
|
3
|
-
"pluginVersion": "0.9.
|
|
3
|
+
"pluginVersion": "0.9.3",
|
|
4
4
|
"artifactGraph": {
|
|
5
|
-
"verifiedVersion": "0.9.
|
|
6
|
-
"installSpec": "artifact-graph@0.9.
|
|
7
|
-
"githubFallbackSpec": "github:ifoohoo/artifact-graph#artifact-graph-v0.9.
|
|
5
|
+
"verifiedVersion": "0.9.3",
|
|
6
|
+
"installSpec": "artifact-graph@0.9.3",
|
|
7
|
+
"githubFallbackSpec": "github:ifoohoo/artifact-graph#artifact-graph-v0.9.3"
|
|
8
8
|
}
|
|
9
9
|
}
|
package/family-apis/catalog.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "artifact-chain-assistant",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.3",
|
|
4
4
|
"description": "Codex, Claude Code, and Kimi Code assistant plugin for artifact-chain projects",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"type": "module",
|
|
@@ -99,6 +99,6 @@
|
|
|
99
99
|
},
|
|
100
100
|
"devDependencies": {
|
|
101
101
|
"ajv": "^8.20.0",
|
|
102
|
-
"artifact-graph": "0.9.
|
|
102
|
+
"artifact-graph": "0.9.3"
|
|
103
103
|
}
|
|
104
104
|
}
|