@hagicode/skillsbase 0.1.0-dev.6.1.7f41ada → 0.1.0-dev.9.1.95e7ba2

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hagicode/skillsbase",
3
- "version": "0.1.0-dev.6.1.7f41ada",
3
+ "version": "0.1.0-dev.9.1.95e7ba2",
4
4
  "description": "Managed skills repository CLI",
5
5
  "homepage": "https://github.com/HagiCode-org/skillsbase#readme",
6
6
  "bugs": {
@@ -26,6 +26,10 @@ runs:
26
26
  shell: bash
27
27
  run: npm ci
28
28
 
29
+ - name: Upgrade npm
30
+ shell: bash
31
+ run: npm install --global npm@10.9.2
32
+
29
33
  - name: Install skillsbase
30
34
  shell: bash
31
35
  run: npm install --global @hagicode/skillsbase
@@ -2,7 +2,7 @@
2
2
 
3
3
  # Maintainer Workflow
4
4
 
5
- 结论是:维护流以 `init -> add -> sync -> github_action` 为主。
5
+ The maintainer flow is `init -> add -> sync -> github_action`.
6
6
 
7
7
  ## Lifecycle
8
8
 
@@ -13,8 +13,8 @@
13
13
 
14
14
  ## Notes
15
15
 
16
- - `sources.yaml` 是单一真相源。
17
- - `skills/` 仅保存受管输出。
18
- - `.skill-source.json` 记录来源与转换元数据。
19
- - `skillsbase sync --check` 只校验,不改仓库。
20
- - 缺少来源根目录时,可用 `skillsbase sync --allow-missing-sources` 跳过。
16
+ - `sources.yaml` is the single source of truth.
17
+ - `skills/` stores managed output only.
18
+ - `.skill-source.json` records source and conversion metadata.
19
+ - `skillsbase sync --check` validates drift without writing files.
20
+ - If a source root is unavailable, use `skillsbase sync --allow-missing-sources` to skip it.
@@ -2,8 +2,8 @@
2
2
 
3
3
  # Managed Skills
4
4
 
5
- 此目录只存放受管 skill 输出。
5
+ This directory contains managed skill output only.
6
6
 
7
- - 每个 skill 目录必须包含 `SKILL.md`
8
- - 每个受管目录必须包含 `.skill-source.json`
9
- - 不要手改受管文件;变更应回到 `sources.yaml` 与上游来源
7
+ - Every skill directory must include `SKILL.md`
8
+ - Every managed directory must include `.skill-source.json`
9
+ - Do not edit managed files by hand; make changes in `sources.yaml` and the upstream source instead
@@ -32,6 +32,9 @@ jobs:
32
32
  - name: Install dependencies
33
33
  run: npm ci
34
34
 
35
+ - name: Upgrade npm
36
+ run: npm install --global npm@10.9.2
37
+
35
38
  - name: Install skillsbase
36
39
  run: npm install --global @hagicode/skillsbase
37
40