skill-systems-thinking 0.1.2 → 0.1.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.
Files changed (3) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/README.md +20 -0
  3. package/package.json +3 -3
package/CHANGELOG.md CHANGED
@@ -5,6 +5,22 @@ Versioning follows [Semantic Versioning](https://semver.org/) in `X.Y.Z` format.
5
5
 
6
6
  ---
7
7
 
8
+ ## [0.1.3] — 2026-07-25
9
+
10
+ ### Added
11
+ - XYZ versioning convention documented in `AGENTS.md` (X=major, Y=minor, Z=patch)
12
+
13
+ ### Changed
14
+ - Unified version numbers across all project files to `0.1.3`
15
+ - README.md and progress.md version tables updated from `0.1.0` to `0.1.3`
16
+ - `postinstall` script removed from `package.json` (npx-first approach)
17
+
18
+ ## [0.1.2] — 2026-07-25
19
+
20
+ ### Added
21
+ - Gitee download link in README.md (both 中文 and English sections)
22
+ - `repository.url` and `homepage` in `package.json` updated to point to Gitee (`gitee.com/leon0903/systems-thinking`)
23
+
8
24
  ## [0.1.1] — 2026-07-24
9
25
 
10
26
  ### Changed
package/README.md CHANGED
@@ -57,6 +57,13 @@ git clone https://github.com/ShrimpLeon/systems-thinking.git
57
57
  cp -r systems-thinking <agent-skills-dir>/
58
58
  ```
59
59
 
60
+ ### Gitee 下载
61
+
62
+ ```bash
63
+ git clone https://gitee.com/leon0903/systems-thinking.git
64
+ cp -r systems-thinking <agent-skills-dir>/
65
+ ```
66
+
60
67
  ### 符号链接(开发用)
61
68
 
62
69
  ```bash
@@ -217,6 +224,9 @@ npx 安装会自动将 skill 链接到各 agent 的 skill 目录。由于 npm
217
224
 
218
225
  | 版本 | 日期 | 说明 |
219
226
  |---|---|---|
227
+ | 0.1.3 | 2026-07-25 | 统一项目版本号;添加 XYZ 版本约定到 AGENTS.md;移除 postinstall 脚本 |
228
+ | 0.1.2 | 2026-07-25 | 添加 Gitee 下载链接;更新 repository 和 homepage 到 Gitee |
229
+ | 0.1.1 | 2026-07-24 | 修复 repository.url;扩展 keywords;添加 homepage 和 bin 字段 |
220
230
  | 0.1.0 | 2026-07-24 | 首次公开发布 |
221
231
 
222
232
  完整变更记录见 [CHANGELOG.md](CHANGELOG.md)。
@@ -296,6 +306,13 @@ git clone https://github.com/ShrimpLeon/systems-thinking.git
296
306
  cp -r systems-thinking <agent-skills-dir>/
297
307
  ```
298
308
 
309
+ ### Gitee download
310
+
311
+ ```bash
312
+ git clone https://gitee.com/leon0903/systems-thinking.git
313
+ cp -r systems-thinking <agent-skills-dir>/
314
+ ```
315
+
299
316
  ### Symlink (development)
300
317
 
301
318
  ```bash
@@ -457,6 +474,9 @@ This skill follows [Semantic Versioning](https://semver.org/) (`X.Y.Z`).
457
474
 
458
475
  | Version | Date | Notes |
459
476
  |---|---|---|
477
+ | 0.1.3 | 2026-07-25 | Unified version numbers across project; added XYZ version convention to AGENTS.md; removed postinstall script |
478
+ | 0.1.2 | 2026-07-25 | Added Gitee download link; updated repository and homepage to Gitee |
479
+ | 0.1.1 | 2026-07-24 | Fixed repository.url; expanded keywords; added homepage and bin field |
460
480
  | 0.1.0 | 2026-07-24 | Initial public release |
461
481
 
462
482
  Full history: [CHANGELOG.md](CHANGELOG.md).
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "skill-systems-thinking",
3
- "version": "0.1.2",
3
+ "version": "0.1.3",
4
4
  "description": "Control-theoretic thinking scaffold for AI coding agents — identify state, measure, stabilize, close the loop.",
5
5
  "license": "MIT",
6
6
  "main": "SKILL.md",
@@ -41,9 +41,9 @@
41
41
  ],
42
42
  "repository": {
43
43
  "type": "git",
44
- "url": "git+https://github.com/ShrimpLeon/systems-thinking.git"
44
+ "url": "git+https://gitee.com/leon0903/systems-thinking.git"
45
45
  },
46
- "homepage": "https://github.com/ShrimpLeon/systems-thinking#readme",
46
+ "homepage": "https://gitee.com/leon0903/systems-thinking#readme",
47
47
  "os": [
48
48
  "darwin",
49
49
  "linux",