agent-skills-mesh 0.1.0 → 0.1.2

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/README.en.md +9 -9
  2. package/README.md +10 -10
  3. package/package.json +5 -5
package/README.en.md CHANGED
@@ -37,22 +37,22 @@ Agent Skills Mesh (`asm`) splits skill management into three layers — **where
37
37
  ### Installation
38
38
 
39
39
  > [!NOTE]
40
- > Cross-platform standalone packages are being published (macOS ready, Linux/Windows pending CI matrix). For now, install from source.
40
+ > `agent-skills-mesh@0.1.2` has been published to npm. The main package installs the matching standalone platform package via `optionalDependencies` (darwin-arm64 / darwin-x64 / linux-x64 / win32-x64).
41
41
 
42
- **From source (currently available)**
42
+ **npm global install (recommended)**
43
43
 
44
44
  ```bash
45
- git clone https://github.com/<your-org>/agent-skills-mesh.git
46
- cd agent-skills-mesh
47
- bun install # requires Bun 1.3+
48
- bun run src/cli/index.ts --help
45
+ npm i -g agent-skills-mesh
46
+ asm --help
49
47
  ```
50
48
 
51
- **npm global install (once platform packages are published)**
49
+ **From source for development**
52
50
 
53
51
  ```bash
54
- npm i -g agent-skills-mesh
55
- asm --help
52
+ git clone https://github.com/xhl592576605/agent-skills-mesh.git
53
+ cd agent-skills-mesh
54
+ bun install # requires Bun 1.3+
55
+ bun run src/cli/index.ts --help
56
56
  ```
57
57
 
58
58
  ### Quick Start
package/README.md CHANGED
@@ -37,22 +37,22 @@ Agent Skills Mesh(命令名 `asm`)把"技能**从哪来**、**存在哪**、
37
37
  ### 安装
38
38
 
39
39
  > [!NOTE]
40
- > 跨平台 standalone 平台包正在发布中(macOS 已就绪,Linux/Windows CI matrix 实测)。当前推荐从源码安装。
40
+ > `agent-skills-mesh@0.1.2` 已发布到 npm。主包会通过 `optionalDependencies` 自动安装当前平台的 standalone 子包(darwin-arm64 / darwin-x64 / linux-x64 / win32-x64)。
41
41
 
42
- **从源码(当前可用)**
42
+ **npm 全局安装(推荐)**
43
43
 
44
44
  ```bash
45
- git clone https://github.com/<your-org>/agent-skills-mesh.git
46
- cd agent-skills-mesh
47
- bun install # 需 Bun 1.3+
48
- bun run src/cli/index.ts --help
45
+ npm i -g agent-skills-mesh
46
+ asm --help
49
47
  ```
50
48
 
51
- **npm 全局安装(平台包发布后)**
49
+ **从源码开发**
52
50
 
53
51
  ```bash
54
- npm i -g agent-skills-mesh
55
- asm --help
52
+ git clone https://github.com/xhl592576605/agent-skills-mesh.git
53
+ cd agent-skills-mesh
54
+ bun install # 需 Bun 1.3+
55
+ bun run src/cli/index.ts --help
56
56
  ```
57
57
 
58
58
  ### 快速开始
@@ -198,7 +198,7 @@ enabled = true
198
198
 
199
199
 
200
200
  #### 功能
201
- - [ ] npm 跨平台平台包发布(macOS 已就绪,Linux/Windows CI matrix 实测 native 二进制)
201
+ - [x] ~~npm 跨平台平台包发布~~ — 已完成 `0.1.2`:主包 + darwin-arm64 / darwin-x64 / linux-x64 / win32-x64 平台子包已发布
202
202
  - [ ] 补 TUI 集成测试(discover / doctor / install-plan 端到端)
203
203
  - [ ] render-smoke 自动化(CI 下 bun vitest pool + vite-plugin-solid)
204
204
  - [ ] skill 版本 diff 可视化(来源 vs SSOT)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agent-skills-mesh",
3
- "version": "0.1.0",
3
+ "version": "0.1.2",
4
4
  "description": "三层技能管理器:单一可信源 + symlink/junction 分发,统一管理所有 AI agent 的 skills",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -38,10 +38,10 @@
38
38
  "registry": "https://registry.npmjs.org/"
39
39
  },
40
40
  "optionalDependencies": {
41
- "agent-skills-mesh-darwin-arm64": "0.1.0",
42
- "agent-skills-mesh-darwin-x64": "0.1.0",
43
- "agent-skills-mesh-linux-x64": "0.1.0",
44
- "agent-skills-mesh-win32-x64": "0.1.0"
41
+ "agent-skills-mesh-darwin-arm64": "0.1.2",
42
+ "agent-skills-mesh-darwin-x64": "0.1.2",
43
+ "agent-skills-mesh-linux-x64": "0.1.2",
44
+ "agent-skills-mesh-win32-x64": "0.1.2"
45
45
  },
46
46
  "devDependencies": {
47
47
  "@opentui/core": "^0.4.3",