artifact-chain-assistant 0.8.4 → 0.9.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/.claude-plugin/plugin.json +3 -3
- package/.codex-plugin/plugin.json +2 -2
- package/.kimi-plugin/plugin.json +19 -0
- package/CHANGELOG.md +35 -0
- package/INSTALL.md +36 -12
- package/README.md +17 -6
- package/README.zh-CN.md +17 -6
- package/adapters/claude/.claude-plugin/plugin.json +3 -3
- package/adapters/claude/INSTALL.md +36 -12
- 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/claude/scripts/lib/compatibility-policy.mjs +7 -4
- package/adapters/codex/.codex-plugin/plugin.json +2 -2
- package/adapters/codex/INSTALL.md +36 -12
- 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/codex/scripts/lib/compatibility-policy.mjs +7 -4
- package/adapters/kimi/.kimi-plugin/plugin.json +19 -0
- package/adapters/kimi/EXTENDED-ARTIFACT-CATALOG.md +315 -0
- package/adapters/kimi/EXTENDED-ARTIFACT-CATALOG.zh-CN.md +292 -0
- package/adapters/kimi/INSTALL.md +1381 -0
- package/adapters/kimi/agent-methods/catalog.yaml +296 -0
- package/adapters/kimi/compatibility.json +9 -0
- package/adapters/kimi/families-src/prd-feature/implementation.yaml +39 -0
- package/adapters/kimi/families-src/scenario-script/implementation.yaml +39 -0
- package/adapters/kimi/family-apis/catalog.json +16 -0
- package/adapters/kimi/family-apis/e2e-test/api.json +205 -0
- package/adapters/kimi/family-apis/schema/family-api.schema.json +235 -0
- package/adapters/kimi/schemas/artifact-workflow-profile.schema.json +72 -0
- package/adapters/kimi/schemas/project-facts.schema.json +80 -0
- package/adapters/kimi/scripts/batch-merge.mjs +276 -0
- package/adapters/kimi/scripts/batch-split.mjs +184 -0
- package/adapters/kimi/scripts/check-family-api.mjs +84 -0
- package/adapters/kimi/scripts/check-workflow-profile.mjs +64 -0
- package/adapters/kimi/scripts/doctor.mjs +44 -0
- package/adapters/kimi/scripts/export-family-api.mjs +184 -0
- package/adapters/kimi/scripts/family-compile.mjs +309 -0
- package/adapters/kimi/scripts/family-help-render.mjs +214 -0
- package/adapters/kimi/scripts/lib/artifact-graph-runtime.mjs +189 -0
- package/adapters/kimi/scripts/lib/compatibility-policy.mjs +373 -0
- package/adapters/kimi/scripts/lib/family-api-validator.mjs +413 -0
- package/adapters/kimi/scripts/lib/generated/canonical-json-v1-manifest.json +7 -0
- package/adapters/kimi/scripts/lib/generated/canonical-json-v1-vectors.generated.json +50 -0
- package/adapters/kimi/scripts/lib/generated/canonical-json-v1.generated.mjs +130 -0
- package/adapters/kimi/scripts/lib/generated/family-api-validator.generated.mjs +1756 -0
- package/adapters/kimi/scripts/lib/generated/project-facts-validator.generated.mjs +638 -0
- package/adapters/kimi/scripts/lib/generated/schema-validator-manifest.json +20 -0
- package/adapters/kimi/scripts/lib/inline-yaml-parser.mjs +216 -0
- package/adapters/kimi/scripts/lib/method-query.mjs +177 -0
- package/adapters/kimi/scripts/lib/method-registry-version.mjs +7 -0
- package/adapters/kimi/scripts/lib/workflow-profile.mjs +645 -0
- package/adapters/kimi/scripts/method-query.mjs +67 -0
- package/adapters/kimi/scripts/run-artifact-workflow.mjs +366 -0
- package/adapters/kimi/skills/artifact-audit/SKILL.md +80 -0
- package/adapters/kimi/skills/artifact-batch/SKILL.md +115 -0
- package/adapters/kimi/skills/artifact-chain-bootstrap/SKILL.md +343 -0
- package/adapters/kimi/skills/artifact-chain-maintainer/SKILL.md +167 -0
- package/adapters/kimi/skills/artifact-generate/SKILL.md +89 -0
- package/adapters/kimi/skills/artifact-repair/SKILL.md +124 -0
- package/adapters/kimi/skills/artifact-review/SKILL.md +122 -0
- package/adapters/kimi/skills/artifact-workflow-worker/SKILL.md +90 -0
- package/adapters/kimi/skills/help/SKILL.md +96 -0
- package/adapters/kimi/skills/prd-feature/SKILL.md +68 -0
- package/adapters/kimi/skills/prd-feature/author/SKILL.md +92 -0
- package/adapters/kimi/skills/prd-feature/author/references/compose.md +43 -0
- package/adapters/kimi/skills/prd-feature/author/references/inspect.md +94 -0
- package/adapters/kimi/skills/prd-feature/author/references/validate.md +65 -0
- package/adapters/kimi/skills/prd-feature/references/compose.md +43 -0
- package/adapters/kimi/skills/prd-feature/references/inspect.md +94 -0
- package/adapters/kimi/skills/prd-feature/references/validate.md +65 -0
- package/adapters/kimi/skills/prd-feature/repair/SKILL.md +135 -0
- package/adapters/kimi/skills/prd-feature/review/SKILL.md +134 -0
- package/adapters/kimi/skills/prd-feature/review/references/compose.md +43 -0
- package/adapters/kimi/skills/prd-feature/review/references/inspect.md +94 -0
- package/adapters/kimi/skills/prd-feature/review/references/validate.md +65 -0
- package/adapters/kimi/skills/quickstart/SKILL.md +113 -0
- package/adapters/kimi/skills/scenario-script/SKILL.md +76 -0
- package/adapters/kimi/skills/scenario-script/author/SKILL.md +111 -0
- package/adapters/kimi/skills/scenario-script/author/references/compose.md +43 -0
- package/adapters/kimi/skills/scenario-script/author/references/inspect.md +105 -0
- package/adapters/kimi/skills/scenario-script/author/references/validate.md +72 -0
- package/adapters/kimi/skills/scenario-script/references/compose.md +43 -0
- package/adapters/kimi/skills/scenario-script/references/inspect.md +105 -0
- package/adapters/kimi/skills/scenario-script/references/validate.md +72 -0
- package/adapters/kimi/skills/scenario-script/repair/SKILL.md +135 -0
- package/adapters/kimi/skills/scenario-script/review/SKILL.md +137 -0
- package/adapters/kimi/skills/scenario-script/review/references/compose.md +43 -0
- package/adapters/kimi/skills/scenario-script/review/references/inspect.md +105 -0
- package/adapters/kimi/skills/scenario-script/review/references/validate.md +72 -0
- package/adapters/kimi/skills/setup/SKILL.md +119 -0
- package/adapters/kimi/skills/where-am-i/SKILL.md +233 -0
- package/adapters/kimi/templates/README.md +159 -0
- package/adapters/kimi/templates/core/decision/review-checklist.md +35 -0
- package/adapters/kimi/templates/core/decision/starter.md +66 -0
- package/adapters/kimi/templates/core/design/review-checklist.md +41 -0
- package/adapters/kimi/templates/core/design/starter.md +84 -0
- package/adapters/kimi/templates/core/e2e_test/review-checklist.md +43 -0
- package/adapters/kimi/templates/core/e2e_test/starter.md +70 -0
- package/adapters/kimi/templates/core/feature/review-checklist.md +29 -0
- package/adapters/kimi/templates/core/feature/starter.md +43 -0
- package/adapters/kimi/templates/core/scenario/review-checklist.md +29 -0
- package/adapters/kimi/templates/core/scenario/starter.md +57 -0
- package/adapters/kimi/templates/core/test/review-checklist.md +37 -0
- package/adapters/kimi/templates/core/test/starter.md +70 -0
- package/adapters/kimi/templates/extended/ADOPTION-GUIDE.md +263 -0
- package/adapters/kimi/templates/extended/README.md +261 -0
- package/adapters/kimi/templates/extended/agent/agent_skill/review-checklist.md +51 -0
- package/adapters/kimi/templates/extended/agent/agent_skill/starter.md +133 -0
- package/adapters/kimi/templates/extended/agent/hook_policy/review-checklist.md +58 -0
- package/adapters/kimi/templates/extended/agent/hook_policy/starter.md +134 -0
- package/adapters/kimi/templates/extended/agent/prompt_packet/review-checklist.md +54 -0
- package/adapters/kimi/templates/extended/agent/prompt_packet/starter.md +106 -0
- package/adapters/kimi/templates/extended/contracts/api_contract/review-checklist.md +43 -0
- package/adapters/kimi/templates/extended/contracts/api_contract/starter.md +92 -0
- package/adapters/kimi/templates/extended/contracts/batch_job_contract/review-checklist.md +82 -0
- package/adapters/kimi/templates/extended/contracts/batch_job_contract/starter.md +158 -0
- package/adapters/kimi/templates/extended/contracts/cli_contract/review-checklist.md +43 -0
- package/adapters/kimi/templates/extended/contracts/cli_contract/starter.md +93 -0
- package/adapters/kimi/templates/extended/contracts/data_contract/review-checklist.md +45 -0
- package/adapters/kimi/templates/extended/contracts/data_contract/starter.md +88 -0
- package/adapters/kimi/templates/extended/contracts/integration_contract/review-checklist.md +77 -0
- package/adapters/kimi/templates/extended/contracts/integration_contract/starter.md +158 -0
- package/adapters/kimi/templates/extended/contracts/ipc_contract/review-checklist.md +78 -0
- package/adapters/kimi/templates/extended/contracts/ipc_contract/starter.md +214 -0
- package/adapters/kimi/templates/extended/contracts/report_contract/review-checklist.md +61 -0
- package/adapters/kimi/templates/extended/contracts/report_contract/starter.md +97 -0
- package/adapters/kimi/templates/extended/contracts/ui_contract/review-checklist.md +70 -0
- package/adapters/kimi/templates/extended/contracts/ui_contract/starter.md +150 -0
- package/adapters/kimi/templates/extended/domain/database_migration/review-checklist.md +51 -0
- package/adapters/kimi/templates/extended/domain/database_migration/starter.md +115 -0
- package/adapters/kimi/templates/extended/domain/domain_model/review-checklist.md +43 -0
- package/adapters/kimi/templates/extended/domain/domain_model/starter.md +83 -0
- package/adapters/kimi/templates/extended/governance/oss_compliance/review-checklist.md +51 -0
- package/adapters/kimi/templates/extended/governance/oss_compliance/starter.md +84 -0
- package/adapters/kimi/templates/extended/governance/publish_skill/review-checklist.md +58 -0
- package/adapters/kimi/templates/extended/governance/publish_skill/starter.md +172 -0
- package/adapters/kimi/templates/extended/governance/release_policy/review-checklist.md +57 -0
- package/adapters/kimi/templates/extended/governance/release_policy/starter.md +131 -0
- package/adapters/kimi/templates/extended/ops/deployment_manifest/review-checklist.md +51 -0
- package/adapters/kimi/templates/extended/ops/deployment_manifest/starter.md +117 -0
- package/adapters/kimi/templates/extended/ops/migration_plan/review-checklist.md +63 -0
- package/adapters/kimi/templates/extended/ops/migration_plan/starter.md +117 -0
- package/adapters/kimi/templates/extended/ops/performance_budget/review-checklist.md +50 -0
- package/adapters/kimi/templates/extended/ops/performance_budget/starter.md +117 -0
- package/adapters/kimi/templates/extended/ops/runbook/review-checklist.md +51 -0
- package/adapters/kimi/templates/extended/ops/runbook/starter.md +101 -0
- package/adapters/kimi/templates/extended/ops/security_review/review-checklist.md +56 -0
- package/adapters/kimi/templates/extended/ops/security_review/starter.md +125 -0
- package/agent-methods/catalog.yaml +1 -1
- package/compatibility.json +4 -4
- package/docs/.nojekyll +0 -0
- package/docs/00-matrix.html +146 -0
- package/docs/01-what.html +139 -0
- package/docs/02-architecture.html +126 -0
- package/docs/03-concepts.html +176 -0
- package/docs/04-cli.html +163 -0
- package/docs/05-scenarios.html +159 -0
- package/docs/06-method-registry.html +137 -0
- package/docs/07-glossary.html +89 -0
- package/docs/08-maintainer.html +147 -0
- package/docs/09-troubleshoot.html +125 -0
- package/docs/10-roadmap.html +124 -0
- package/docs/assets/style.css +140 -0
- package/docs/assets/terms.js +222 -0
- package/docs/index.html +125 -0
- package/family-apis/catalog.json +1 -1
- package/package.json +20 -3
- package/scripts/build-adapters.mjs +10 -2
- package/scripts/build-runtime-bundles.mjs +1 -1
- package/scripts/check-method-registry.mjs +13 -0
- package/scripts/lib/compatibility-policy.mjs +7 -4
- package/scripts/sync-skills.mjs +6 -0
- package/templates/claude/plugin.json.tpl +2 -2
- package/templates/codex/plugin.json.tpl +1 -1
- package/templates/kimi/plugin.json.tpl +19 -0
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "artifact-chain-assistant",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.9.0",
|
|
4
4
|
"description": "Artifact-chain intake, review/repair/batch/audit workflows, diagnostics, hooks, and version-lock maintenance helpers.",
|
|
5
5
|
"author": {
|
|
6
|
-
"name": "
|
|
6
|
+
"name": "广州市风荷科技有限公司"
|
|
7
7
|
},
|
|
8
8
|
"license": "Apache-2.0",
|
|
9
9
|
"keywords": ["artifact-graph", "traceability", "codex", "claude-code"],
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
"displayName": "Artifact Chain Assistant",
|
|
13
13
|
"shortDescription": "Artifact-chain context, review workflows, and version-lock maintenance.",
|
|
14
14
|
"longDescription": "Reusable skills for artifact-graph projects, including intake routing, generic artifact review/repair/batch/audit workflows, diagnostics, and version-lock refresh guidance.",
|
|
15
|
-
"developerName": "
|
|
15
|
+
"developerName": "广州市风荷科技有限公司",
|
|
16
16
|
"category": "Productivity",
|
|
17
17
|
"capabilities": ["Write"],
|
|
18
18
|
"defaultPrompt": [
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "artifact-chain-assistant",
|
|
3
3
|
"displayName": "Artifact Chain Assistant",
|
|
4
|
-
"version": "0.
|
|
4
|
+
"version": "0.9.0",
|
|
5
5
|
"description": "Artifact-chain intake, review/repair/batch/audit workflows, diagnostics, and version-lock maintenance helpers.",
|
|
6
6
|
"author": {
|
|
7
|
-
"name": "
|
|
7
|
+
"name": "广州市风荷科技有限公司"
|
|
8
8
|
},
|
|
9
9
|
"license": "Apache-2.0",
|
|
10
10
|
"keywords": ["artifact-graph", "traceability", "codex", "claude-code"],
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "artifact-chain-assistant",
|
|
3
|
+
"version": "0.9.0",
|
|
4
|
+
"description": "Artifact-chain intake, review/repair/batch/audit workflows, diagnostics, and version-lock maintenance helpers.",
|
|
5
|
+
"author": {
|
|
6
|
+
"name": "广州市风荷科技有限公司"
|
|
7
|
+
},
|
|
8
|
+
"license": "Apache-2.0",
|
|
9
|
+
"homepage": "https://github.com/ifoohoo/artifact-chain-assistant#readme",
|
|
10
|
+
"keywords": ["artifact-graph", "traceability", "kimi-code"],
|
|
11
|
+
"skills": "./adapters/kimi/skills/",
|
|
12
|
+
"interface": {
|
|
13
|
+
"displayName": "Artifact Chain Assistant",
|
|
14
|
+
"shortDescription": "Artifact-chain context, review workflows, and version-lock maintenance.",
|
|
15
|
+
"longDescription": "Reusable skills for artifact-graph projects, including intake routing, generic artifact review/repair/batch/audit workflows, diagnostics, and version-lock refresh guidance.",
|
|
16
|
+
"developerName": "广州市风荷科技有限公司",
|
|
17
|
+
"websiteURL": "https://github.com/ifoohoo/artifact-chain-assistant"
|
|
18
|
+
}
|
|
19
|
+
}
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,40 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.9.0
|
|
4
|
+
|
|
5
|
+
### Added
|
|
6
|
+
|
|
7
|
+
- **Kimi Code adapter (third host)**: the plugin now ships `adapters/kimi/` and a root
|
|
8
|
+
`.kimi-plugin/plugin.json`, installable in Kimi Code via
|
|
9
|
+
`/plugins install https://github.com/ifoohoo/artifact-chain-assistant` (interactive, per-user
|
|
10
|
+
scope; run `/reload` afterwards). The Kimi Code adapter mirrors the Codex surface — plugin
|
|
11
|
+
manifest, skills, and managed scripts — without plugin commands, hooks, or settings. Because
|
|
12
|
+
Kimi Code has no non-interactive install CLI, automated host smoke verifies the adapter layout
|
|
13
|
+
deterministically instead of performing a CLI install.
|
|
14
|
+
|
|
15
|
+
### Changed
|
|
16
|
+
|
|
17
|
+
- Runtime compatibility and generated plugin manifests are synchronized with
|
|
18
|
+
`artifact-graph@0.9.0`.
|
|
19
|
+
- Installation and onboarding documentation now covers Codex, Claude Code, and Kimi Code.
|
|
20
|
+
|
|
21
|
+
## 0.8.5
|
|
22
|
+
|
|
23
|
+
### Fixed
|
|
24
|
+
|
|
25
|
+
- The generated GitHub Pages knowledge site is now part of both the production release snapshot
|
|
26
|
+
and npm package through 15 explicit `docs/` mappings. The release configuration also enables a
|
|
27
|
+
closed-world `expectedPublicSurface` gate so newly added or omitted public files fail preparation
|
|
28
|
+
instead of silently disappearing from the public repository.
|
|
29
|
+
|
|
30
|
+
### Changed
|
|
31
|
+
|
|
32
|
+
- Runtime compatibility and generated plugin manifests are synchronized with
|
|
33
|
+
`artifact-graph@0.8.5`.
|
|
34
|
+
- Package, Claude, and Codex author metadata now consistently names
|
|
35
|
+
广州市风荷科技有限公司; Apache-2.0 remains unchanged and `ifoohoo` remains the
|
|
36
|
+
public repository owner.
|
|
37
|
+
|
|
3
38
|
## 0.8.4
|
|
4
39
|
|
|
5
40
|
### 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.
|
|
16
|
+
- `artifact-graph` 0.9.0 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.
|
|
28
|
+
| `artifact-chain-assistant` 0.9.0 | `artifact-graph` 0.9.0 | `pnpm add -D artifact-graph@0.9.0` |
|
|
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.
|
|
35
|
+
pnpm add -D artifact-graph@0.9.0
|
|
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.
|
|
41
|
+
pnpm add -D github:ifoohoo/artifact-graph#artifact-graph-v0.9.0
|
|
42
42
|
```
|
|
43
43
|
|
|
44
44
|
> **Never** install with an unlocked range (`artifact-graph`, `artifact-graph@latest`,
|
|
45
|
-
> `artifact-graph@^0.
|
|
45
|
+
> `artifact-graph@^0.9.0`) 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.
|
|
72
|
+
command (`pnpm add -D artifact-graph@0.9.0`) and exits non-zero.
|
|
73
73
|
|
|
74
74
|
### CLI Resolution Order
|
|
75
75
|
|
|
@@ -144,9 +144,33 @@ 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.
|
|
147
|
+
> must publish and enable `artifact-chain-assistant` 0.9.0 before the install commands above will
|
|
148
148
|
> succeed.
|
|
149
149
|
|
|
150
|
+
### Kimi Code
|
|
151
|
+
|
|
152
|
+
Kimi Code installs plugins interactively from a GitHub URL (per-user scope, applies to all
|
|
153
|
+
projects):
|
|
154
|
+
|
|
155
|
+
```text
|
|
156
|
+
/plugins install https://github.com/ifoohoo/artifact-chain-assistant
|
|
157
|
+
```
|
|
158
|
+
|
|
159
|
+
To upgrade, run the same install command again. After installing or upgrading, run `/reload`
|
|
160
|
+
(or start a new session) so the plugin skills are picked up.
|
|
161
|
+
|
|
162
|
+
For a monorepo checkout, install from the local plugin root or the Kimi adapter directory:
|
|
163
|
+
|
|
164
|
+
```text
|
|
165
|
+
/plugins install <absolute-path>/plugins/artifact-chain-assistant
|
|
166
|
+
```
|
|
167
|
+
|
|
168
|
+
The Kimi Code adapter exposes the same surface as the Codex adapter: the plugin manifest,
|
|
169
|
+
skills, and managed scripts (`doctor.mjs`, `check-workflow-profile.mjs`, `run-artifact-workflow.mjs`, `batch-split.mjs`,
|
|
170
|
+
`batch-merge.mjs`). It does not expose plugin commands, hooks, or settings. Kimi Code has no
|
|
171
|
+
non-interactive install CLI, so automated install verification is limited to layout checks;
|
|
172
|
+
use `artifact-chain-maintainer` to guide version-lock CLI operations.
|
|
173
|
+
|
|
150
174
|
## Post-Installation Discovery
|
|
151
175
|
|
|
152
176
|
After installing the plugin, use these entry points to understand available capabilities:
|
|
@@ -194,7 +218,7 @@ The plugin should not move these files into the plugin repository.
|
|
|
194
218
|
|
|
195
219
|
For a first-time setup, the end-to-end sequence is:
|
|
196
220
|
|
|
197
|
-
1. **Install the CLI** — `pnpm add -D artifact-graph@0.
|
|
221
|
+
1. **Install the CLI** — `pnpm add -D artifact-graph@0.9.0` (see Prerequisites above).
|
|
198
222
|
2. **Install the plugin** — follow the Codex or Claude Code section above.
|
|
199
223
|
3. **Run bootstrap** — ask the assistant to use the `artifact-chain-bootstrap` skill (see prompt
|
|
200
224
|
below). The skill will:
|
|
@@ -268,7 +292,7 @@ with execution evidence.
|
|
|
268
292
|
|
|
269
293
|
The workflow profile schema is at `$PLUGIN_ROOT/schemas/artifact-workflow-profile.schema.json`
|
|
270
294
|
and the shared validation library is at `$PLUGIN_ROOT/scripts/lib/workflow-profile.mjs`. Both
|
|
271
|
-
are automatically synced to Codex and
|
|
295
|
+
are automatically synced to Codex, Claude Code, and Kimi Code adapter roots during the runtime bundle build.
|
|
272
296
|
|
|
273
297
|
### Guided Setup With The Bootstrap Skill
|
|
274
298
|
|
|
@@ -992,10 +1016,10 @@ with append-only behavior; it does not overwrite local rules.
|
|
|
992
1016
|
### Recovery Steps
|
|
993
1017
|
|
|
994
1018
|
```bash
|
|
995
|
-
# 1. Install dependencies from lockfile (gets artifact-graph@0.
|
|
1019
|
+
# 1. Install dependencies from lockfile (gets artifact-graph@0.9.0)
|
|
996
1020
|
pnpm install --frozen-lockfile
|
|
997
1021
|
|
|
998
|
-
# 2. Install plugin per your host (Codex / Claude Code)
|
|
1022
|
+
# 2. Install plugin per your host (Codex / Claude Code / Kimi Code)
|
|
999
1023
|
# Each machine must install the plugin separately if the host
|
|
1000
1024
|
# does not auto-restore from project declarations.
|
|
1001
1025
|
```
|
|
@@ -1059,7 +1083,7 @@ pnpm exec artifact-graph hooks install-git --hook all
|
|
|
1059
1083
|
### Enterprise Mirror
|
|
1060
1084
|
|
|
1061
1085
|
If the corporate environment cannot access the public npm registry or GitHub, mirror both
|
|
1062
|
-
`artifact-graph@0.
|
|
1086
|
+
`artifact-graph@0.9.0` and the plugin marketplace repository on an internal registry. The mirror
|
|
1063
1087
|
does not change the state ownership model: Git-tracked files remain authoritative, local caches
|
|
1064
1088
|
remain derived.
|
|
1065
1089
|
|
package/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
[中文](README.zh-CN.md)
|
|
4
4
|
|
|
5
|
-
Codex and
|
|
5
|
+
Codex, Claude Code, and Kimi Code assistant plugin for projects that use `artifact-graph`.
|
|
6
6
|
|
|
7
7
|
Artifact Chain Assistant packages reusable skills, host-specific adapter manifests, and install
|
|
8
8
|
guidance for artifact-chain projects. It helps agents discover the right artifact context, bootstrap
|
|
@@ -94,7 +94,7 @@ Missing project markers or worker mappings return `NEEDS_INPUT`.
|
|
|
94
94
|
|
|
95
95
|
The plugin ships a JSON Schema (`schemas/artifact-workflow-profile.schema.json`) and a shared
|
|
96
96
|
validator (`scripts/lib/workflow-profile.mjs`) for project workflow profiles; both are synced to
|
|
97
|
-
the Codex and
|
|
97
|
+
the Codex, Claude Code, and Kimi Code adapter roots. Validate with `check-workflow-profile.mjs` before
|
|
98
98
|
running generic artifact workflows. See [AGENT-METHOD-REGISTRY.md](AGENT-METHOD-REGISTRY.md)
|
|
99
99
|
for the full schema and examples.
|
|
100
100
|
|
|
@@ -139,6 +139,9 @@ override, compact query, fallback behavior, and `PLUGIN_ROOT` discovery, see
|
|
|
139
139
|
- **Claude Code** exposes `.claude-plugin/plugin.json`, `skills/**`, managed scripts
|
|
140
140
|
(`doctor.mjs`, `check-workflow-profile.mjs`, `run-artifact-workflow.mjs`, `batch-split.mjs`, `batch-merge.mjs`), slash command
|
|
141
141
|
wrappers, and a Stop-hook guardrail.
|
|
142
|
+
- **Kimi Code** exposes `.kimi-plugin/plugin.json`, `skills/**`, and managed scripts
|
|
143
|
+
(`doctor.mjs`, `check-workflow-profile.mjs`, `run-artifact-workflow.mjs`, `batch-split.mjs`, `batch-merge.mjs`). It does not
|
|
144
|
+
expose plugin commands, hooks, or settings.
|
|
142
145
|
- Git hook templates and installers are host-independent. Git hooks and CI are the hard gates;
|
|
143
146
|
host-specific skills and hooks only provide assistant guidance.
|
|
144
147
|
|
|
@@ -146,13 +149,13 @@ override, compact query, fallback behavior, and `PLUGIN_ROOT` discovery, see
|
|
|
146
149
|
|
|
147
150
|
| Plugin | Runtime | Install |
|
|
148
151
|
| --- | --- | --- |
|
|
149
|
-
| `artifact-chain-assistant` 0.
|
|
152
|
+
| `artifact-chain-assistant` 0.9.0 | `artifact-graph` 0.9.0 | `pnpm add -D artifact-graph@0.9.0` |
|
|
150
153
|
|
|
151
154
|
## Install
|
|
152
155
|
|
|
153
156
|
```bash
|
|
154
157
|
# Runtime (required)
|
|
155
|
-
npm install --save-dev artifact-graph@0.
|
|
158
|
+
npm install --save-dev artifact-graph@0.9.0
|
|
156
159
|
```
|
|
157
160
|
|
|
158
161
|
```bash
|
|
@@ -174,15 +177,23 @@ codex plugin add artifact-chain-assistant@artifact-skill-set
|
|
|
174
177
|
|
|
175
178
|
> **Marketplace note**: `ifoohoo/artifact-skill-set` is an external independent marketplace. The
|
|
176
179
|
> plugin payload is still published from `ifoohoo/artifact-chain-assistant`. The marketplace entry
|
|
177
|
-
> must publish and enable `artifact-chain-assistant` 0.
|
|
180
|
+
> must publish and enable `artifact-chain-assistant` 0.9.0 before the install commands above will
|
|
178
181
|
> succeed.
|
|
179
182
|
|
|
183
|
+
```text
|
|
184
|
+
# Kimi Code plugin (interactive, per-user scope)
|
|
185
|
+
/plugins install https://github.com/ifoohoo/artifact-chain-assistant
|
|
186
|
+
```
|
|
187
|
+
|
|
188
|
+
After installing or upgrading in Kimi Code, run `/reload` (or start a new session) so the plugin
|
|
189
|
+
skills are picked up. Kimi Code has no non-interactive install CLI.
|
|
190
|
+
|
|
180
191
|
For the full installation guide, quick start, Agent prompts, and clone onboarding, see
|
|
181
192
|
[INSTALL.md](INSTALL.md).
|
|
182
193
|
|
|
183
194
|
## Quick Start
|
|
184
195
|
|
|
185
|
-
1. Install plugin 0.
|
|
196
|
+
1. Install plugin 0.9.0 (above) and runtime: `pnpm add -D artifact-graph@0.9.0`.
|
|
186
197
|
2. Run `artifact-graph doctor --root . --format json` to verify the runtime.
|
|
187
198
|
3. For first-time setup, use the bootstrap skill.
|
|
188
199
|
4. For daily work, use the maintainer skill.
|
package/README.zh-CN.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
[English](README.md)
|
|
4
4
|
|
|
5
|
-
Artifact Chain Assistant 是面向 `artifact-graph` 项目的 Codex / Claude Code 助手插件。
|
|
5
|
+
Artifact Chain Assistant 是面向 `artifact-graph` 项目的 Codex / Claude Code / Kimi Code 助手插件。
|
|
6
6
|
|
|
7
7
|
它打包了可复用的 skill、按宿主划分的 adapter manifest 和安装指引,帮助 agent 找到正确的
|
|
8
8
|
制品上下文、初始化项目本地配置,并维护追溯版本锁(traceability version lock)。
|
|
@@ -105,7 +105,7 @@ bootstrap 技能会先对目标项目分类,只启用有稳定本地来源的
|
|
|
105
105
|
|
|
106
106
|
插件附带 JSON Schema(`schemas/artifact-workflow-profile.schema.json`)和共享验证库
|
|
107
107
|
(`scripts/lib/workflow-profile.mjs`),用于校验项目的 workflow profile,两者都会同步到
|
|
108
|
-
Codex 和
|
|
108
|
+
Codex、Claude Code 和 Kimi Code adapter 根目录。运行通用制品工作流之前,先用
|
|
109
109
|
`check-workflow-profile.mjs` 校验项目的 workflow profile。
|
|
110
110
|
|
|
111
111
|
完整的最小 project-worker profile 如下:
|
|
@@ -187,6 +187,9 @@ catalog 还包含 `artifact.generate`,用于从模板和 profile 配置生成
|
|
|
187
187
|
- **Claude Code** 暴露 `.claude-plugin/plugin.json`、`skills/**`、受管脚本(`doctor.mjs`、
|
|
188
188
|
`check-workflow-profile.mjs`、`run-artifact-workflow.mjs`、`batch-split.mjs`、`batch-merge.mjs`)、slash command 包装器和
|
|
189
189
|
Stop hook 防护。
|
|
190
|
+
- **Kimi Code** 暴露 `.kimi-plugin/plugin.json`、`skills/**` 和受管脚本(`doctor.mjs`、
|
|
191
|
+
`check-workflow-profile.mjs`、`run-artifact-workflow.mjs`、`batch-split.mjs`、`batch-merge.mjs`),不暴露插件命令、hook 和
|
|
192
|
+
settings。
|
|
190
193
|
- Git hook 模板和安装器与宿主无关。真正的硬门禁是 Git hook 和 CI;各宿主的 skill 和
|
|
191
194
|
hook 只为 assistant 提供指引。
|
|
192
195
|
|
|
@@ -194,13 +197,13 @@ catalog 还包含 `artifact.generate`,用于从模板和 profile 配置生成
|
|
|
194
197
|
|
|
195
198
|
| 插件 | 运行时 | 安装 |
|
|
196
199
|
| --- | --- | --- |
|
|
197
|
-
| `artifact-chain-assistant` 0.
|
|
200
|
+
| `artifact-chain-assistant` 0.9.0 | `artifact-graph` 0.9.0 | `pnpm add -D artifact-graph@0.9.0` |
|
|
198
201
|
|
|
199
202
|
## 安装
|
|
200
203
|
|
|
201
204
|
```bash
|
|
202
205
|
# 运行时(必需)
|
|
203
|
-
npm install --save-dev artifact-graph@0.
|
|
206
|
+
npm install --save-dev artifact-graph@0.9.0
|
|
204
207
|
```
|
|
205
208
|
|
|
206
209
|
```bash
|
|
@@ -222,14 +225,22 @@ codex plugin add artifact-chain-assistant@artifact-skill-set
|
|
|
222
225
|
|
|
223
226
|
> **市场说明**:`ifoohoo/artifact-skill-set` 是外部独立市场,插件载荷仍由
|
|
224
227
|
> `ifoohoo/artifact-chain-assistant` 发布。市场条目必须先发布并启用
|
|
225
|
-
> `artifact-chain-assistant` 0.
|
|
228
|
+
> `artifact-chain-assistant` 0.9.0,上述安装命令才能生效。
|
|
229
|
+
|
|
230
|
+
```text
|
|
231
|
+
# Kimi Code 插件(交互式,user 作用域)
|
|
232
|
+
/plugins install https://github.com/ifoohoo/artifact-chain-assistant
|
|
233
|
+
```
|
|
234
|
+
|
|
235
|
+
在 Kimi Code 中安装或升级后,运行 `/reload`(或新开会话)让插件技能生效。Kimi Code
|
|
236
|
+
没有非交互式安装 CLI。
|
|
226
237
|
|
|
227
238
|
完整的安装指南、快速开始、Agent 提示词和团队成员 clone 接入,请参阅
|
|
228
239
|
[INSTALL.md](INSTALL.md)。
|
|
229
240
|
|
|
230
241
|
## 快速开始
|
|
231
242
|
|
|
232
|
-
1. 安装插件 0.
|
|
243
|
+
1. 安装插件 0.9.0(见上文)和运行时:`pnpm add -D artifact-graph@0.9.0`。
|
|
233
244
|
2. 运行 `artifact-graph doctor --root . --format json` 验证运行时。
|
|
234
245
|
3. 首次搭建,进入 bootstrap 技能。
|
|
235
246
|
4. 日常工作,进入 maintainer 技能。
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "artifact-chain-assistant",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.9.0",
|
|
4
4
|
"description": "Artifact-chain intake, review/repair/batch/audit workflows, diagnostics, hooks, and version-lock maintenance helpers.",
|
|
5
5
|
"author": {
|
|
6
|
-
"name": "
|
|
6
|
+
"name": "广州市风荷科技有限公司"
|
|
7
7
|
},
|
|
8
8
|
"license": "Apache-2.0",
|
|
9
9
|
"keywords": ["artifact-graph", "traceability", "codex", "claude-code"],
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
"displayName": "Artifact Chain Assistant",
|
|
13
13
|
"shortDescription": "Artifact-chain context, review workflows, and version-lock maintenance.",
|
|
14
14
|
"longDescription": "Reusable skills for artifact-graph projects, including intake routing, generic artifact review/repair/batch/audit workflows, diagnostics, and version-lock refresh guidance.",
|
|
15
|
-
"developerName": "
|
|
15
|
+
"developerName": "广州市风荷科技有限公司",
|
|
16
16
|
"category": "Productivity",
|
|
17
17
|
"capabilities": ["Write"],
|
|
18
18
|
"defaultPrompt": [
|
|
@@ -16,7 +16,7 @@ instructions.
|
|
|
16
16
|
## Prerequisites
|
|
17
17
|
|
|
18
18
|
- Node.js `>=22.0.0`.
|
|
19
|
-
- `artifact-graph` 0.
|
|
19
|
+
- `artifact-graph` 0.9.0 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.
|
|
31
|
+
| `artifact-chain-assistant` 0.9.0 | `artifact-graph` 0.9.0 | `pnpm add -D artifact-graph@0.9.0` |
|
|
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.
|
|
38
|
+
pnpm add -D artifact-graph@0.9.0
|
|
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.
|
|
44
|
+
pnpm add -D github:ifoohoo/artifact-graph#artifact-graph-v0.9.0
|
|
45
45
|
```
|
|
46
46
|
|
|
47
47
|
> **Never** install with an unlocked range (`artifact-graph`, `artifact-graph@latest`,
|
|
48
|
-
> `artifact-graph@^0.
|
|
48
|
+
> `artifact-graph@^0.9.0`) 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.
|
|
75
|
+
command (`pnpm add -D artifact-graph@0.9.0`) and exits non-zero.
|
|
76
76
|
|
|
77
77
|
### CLI Resolution Order
|
|
78
78
|
|
|
@@ -147,9 +147,33 @@ 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.
|
|
150
|
+
> must publish and enable `artifact-chain-assistant` 0.9.0 before the install commands above will
|
|
151
151
|
> succeed.
|
|
152
152
|
|
|
153
|
+
### Kimi Code
|
|
154
|
+
|
|
155
|
+
Kimi Code installs plugins interactively from a GitHub URL (per-user scope, applies to all
|
|
156
|
+
projects):
|
|
157
|
+
|
|
158
|
+
```text
|
|
159
|
+
/plugins install https://github.com/ifoohoo/artifact-chain-assistant
|
|
160
|
+
```
|
|
161
|
+
|
|
162
|
+
To upgrade, run the same install command again. After installing or upgrading, run `/reload`
|
|
163
|
+
(or start a new session) so the plugin skills are picked up.
|
|
164
|
+
|
|
165
|
+
For a monorepo checkout, install from the local plugin root or the Kimi adapter directory:
|
|
166
|
+
|
|
167
|
+
```text
|
|
168
|
+
/plugins install <absolute-path>/plugins/artifact-chain-assistant
|
|
169
|
+
```
|
|
170
|
+
|
|
171
|
+
The Kimi Code adapter exposes the same surface as the Codex adapter: the plugin manifest,
|
|
172
|
+
skills, and managed scripts (`doctor.mjs`, `check-workflow-profile.mjs`, `run-artifact-workflow.mjs`, `batch-split.mjs`,
|
|
173
|
+
`batch-merge.mjs`). It does not expose plugin commands, hooks, or settings. Kimi Code has no
|
|
174
|
+
non-interactive install CLI, so automated install verification is limited to layout checks;
|
|
175
|
+
use `artifact-chain-maintainer` to guide version-lock CLI operations.
|
|
176
|
+
|
|
153
177
|
## Post-Installation Discovery
|
|
154
178
|
|
|
155
179
|
After installing the plugin, use these entry points to understand available capabilities:
|
|
@@ -197,7 +221,7 @@ The plugin should not move these files into the plugin repository.
|
|
|
197
221
|
|
|
198
222
|
For a first-time setup, the end-to-end sequence is:
|
|
199
223
|
|
|
200
|
-
1. **Install the CLI** — `pnpm add -D artifact-graph@0.
|
|
224
|
+
1. **Install the CLI** — `pnpm add -D artifact-graph@0.9.0` (see Prerequisites above).
|
|
201
225
|
2. **Install the plugin** — follow the Codex or Claude Code section above.
|
|
202
226
|
3. **Run bootstrap** — ask the assistant to use the `artifact-chain-bootstrap` skill (see prompt
|
|
203
227
|
below). The skill will:
|
|
@@ -271,7 +295,7 @@ with execution evidence.
|
|
|
271
295
|
|
|
272
296
|
The workflow profile schema is at `$PLUGIN_ROOT/schemas/artifact-workflow-profile.schema.json`
|
|
273
297
|
and the shared validation library is at `$PLUGIN_ROOT/scripts/lib/workflow-profile.mjs`. Both
|
|
274
|
-
are automatically synced to Codex and
|
|
298
|
+
are automatically synced to Codex, Claude Code, and Kimi Code adapter roots during the runtime bundle build.
|
|
275
299
|
|
|
276
300
|
### Guided Setup With The Bootstrap Skill
|
|
277
301
|
|
|
@@ -995,10 +1019,10 @@ with append-only behavior; it does not overwrite local rules.
|
|
|
995
1019
|
### Recovery Steps
|
|
996
1020
|
|
|
997
1021
|
```bash
|
|
998
|
-
# 1. Install dependencies from lockfile (gets artifact-graph@0.
|
|
1022
|
+
# 1. Install dependencies from lockfile (gets artifact-graph@0.9.0)
|
|
999
1023
|
pnpm install --frozen-lockfile
|
|
1000
1024
|
|
|
1001
|
-
# 2. Install plugin per your host (Codex / Claude Code)
|
|
1025
|
+
# 2. Install plugin per your host (Codex / Claude Code / Kimi Code)
|
|
1002
1026
|
# Each machine must install the plugin separately if the host
|
|
1003
1027
|
# does not auto-restore from project declarations.
|
|
1004
1028
|
```
|
|
@@ -1062,7 +1086,7 @@ pnpm exec artifact-graph hooks install-git --hook all
|
|
|
1062
1086
|
### Enterprise Mirror
|
|
1063
1087
|
|
|
1064
1088
|
If the corporate environment cannot access the public npm registry or GitHub, mirror both
|
|
1065
|
-
`artifact-graph@0.
|
|
1089
|
+
`artifact-graph@0.9.0` and the plugin marketplace repository on an internal registry. The mirror
|
|
1066
1090
|
does not change the state ownership model: Git-tracked files remain authoritative, local caches
|
|
1067
1091
|
remain derived.
|
|
1068
1092
|
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"schemaVersion": "1.0",
|
|
3
|
-
"pluginVersion": "0.
|
|
3
|
+
"pluginVersion": "0.9.0",
|
|
4
4
|
"artifactGraph": {
|
|
5
|
-
"verifiedVersion": "0.
|
|
6
|
-
"installSpec": "artifact-graph@0.
|
|
7
|
-
"githubFallbackSpec": "github:ifoohoo/artifact-graph#artifact-graph-v0.
|
|
5
|
+
"verifiedVersion": "0.9.0",
|
|
6
|
+
"installSpec": "artifact-graph@0.9.0",
|
|
7
|
+
"githubFallbackSpec": "github:ifoohoo/artifact-graph#artifact-graph-v0.9.0"
|
|
8
8
|
}
|
|
9
9
|
}
|
|
@@ -96,21 +96,22 @@ export async function validateCompatibilityPolicy(pluginRoot) {
|
|
|
96
96
|
// Check package.json version
|
|
97
97
|
await checkJsonField(pluginRoot, 'package.json', 'version', pluginVersion, issues);
|
|
98
98
|
|
|
99
|
-
// Check adapter manifest versions (real paths: .codex-plugin/plugin.json, .claude-plugin/plugin.json)
|
|
99
|
+
// Check adapter manifest versions (real paths: .codex-plugin/plugin.json, .claude-plugin/plugin.json, .kimi-plugin/plugin.json)
|
|
100
100
|
for (const [adapter, manifestRel] of [
|
|
101
101
|
['codex', join('adapters', 'codex', '.codex-plugin', 'plugin.json')],
|
|
102
102
|
['claude', join('adapters', 'claude', '.claude-plugin', 'plugin.json')],
|
|
103
|
+
['kimi', join('adapters', 'kimi', '.kimi-plugin', 'plugin.json')],
|
|
103
104
|
]) {
|
|
104
105
|
await checkAdapterManifest(pluginRoot, adapter, manifestRel, pluginVersion, issues);
|
|
105
106
|
}
|
|
106
107
|
|
|
107
108
|
// Check adapter compatibility.json deep match against root policy
|
|
108
|
-
for (const adapter of ['codex', 'claude']) {
|
|
109
|
+
for (const adapter of ['codex', 'claude', 'kimi']) {
|
|
109
110
|
await checkAdapterCompatibility(pluginRoot, adapter, policy, issues);
|
|
110
111
|
}
|
|
111
112
|
|
|
112
113
|
// Check adapter doctor and lib files exist
|
|
113
|
-
for (const adapter of ['codex', 'claude']) {
|
|
114
|
+
for (const adapter of ['codex', 'claude', 'kimi']) {
|
|
114
115
|
await checkAdapterDoctorFiles(pluginRoot, adapter, issues);
|
|
115
116
|
}
|
|
116
117
|
|
|
@@ -279,7 +280,8 @@ function classifyInstallSpecViolation(line, expectedInstallSpec, expectedGithubS
|
|
|
279
280
|
/**
|
|
280
281
|
* Check public docs for forbidden install patterns.
|
|
281
282
|
* Scans real public snapshot files at plugin root:
|
|
282
|
-
* INSTALL.md, README.md, README.zh-CN.md, adapters/codex/INSTALL.md, adapters/claude/INSTALL.md
|
|
283
|
+
* INSTALL.md, README.md, README.zh-CN.md, adapters/codex/INSTALL.md, adapters/claude/INSTALL.md,
|
|
284
|
+
* adapters/kimi/INSTALL.md
|
|
283
285
|
*
|
|
284
286
|
* For each fenced code block line, extracts the artifact-graph package spec
|
|
285
287
|
* from any argument position and classifies it — no enumeration of flag orderings.
|
|
@@ -296,6 +298,7 @@ async function checkDocsForForbiddenPatterns(pluginRoot, artifactGraphPolicy, is
|
|
|
296
298
|
'README.zh-CN.md',
|
|
297
299
|
join('adapters', 'codex', 'INSTALL.md'),
|
|
298
300
|
join('adapters', 'claude', 'INSTALL.md'),
|
|
301
|
+
join('adapters', 'kimi', 'INSTALL.md'),
|
|
299
302
|
];
|
|
300
303
|
|
|
301
304
|
for (const relPath of docPaths) {
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "artifact-chain-assistant",
|
|
3
3
|
"displayName": "Artifact Chain Assistant",
|
|
4
|
-
"version": "0.
|
|
4
|
+
"version": "0.9.0",
|
|
5
5
|
"description": "Artifact-chain intake, review/repair/batch/audit workflows, diagnostics, and version-lock maintenance helpers.",
|
|
6
6
|
"author": {
|
|
7
|
-
"name": "
|
|
7
|
+
"name": "广州市风荷科技有限公司"
|
|
8
8
|
},
|
|
9
9
|
"license": "Apache-2.0",
|
|
10
10
|
"keywords": ["artifact-graph", "traceability", "codex", "claude-code"],
|