skill-flow 1.3.4 → 1.3.7

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/README.md CHANGED
@@ -35,7 +35,7 @@ Installing skills one by one breaks down at scale:
35
35
  ## What You Get
36
36
 
37
37
  - **Grouped source management**: local, Git, and skills.sh sources all flow through the same import model.
38
- - **Multi-agent deployment**: deploy one selected skill set to Claude Code, Codex, Cursor, Gemini CLI, OpenCode, OpenClaw, Trae, Windsurf, and more.
38
+ - **Multi-agent deployment**: deploy one selected skill set to Claude Code, Codex, Cursor, Gemini CLI, OpenCode, OpenClaw, Hermes Agent, Trae, Windsurf, and more.
39
39
  - **Interactive config flow**: Ink-based TUI for add/config flows, selection state, review, and repair.
40
40
  - **Desktop app on macOS 15+**: SwiftUI main window, import view, detail panel, settings, and menu bar quick config.
41
41
  - **Explicit state**: `manifest.json` stores intent, `lock.json` stores resolved inventory and deployments.
@@ -69,13 +69,12 @@ npx skill-flow --help
69
69
 
70
70
  ### Desktop prerequisites
71
71
 
72
- Skill Flow Desktop currently relies on a few external command-line tools on the target Mac:
72
+ Skill Flow Desktop release builds include a bundled Node.js runtime for the desktop helper, so double-click launch does not depend on shell-managed `node` paths from tools like `asdf` or `nvm`.
73
73
 
74
- - `node` 20 or newer is required to launch the bundled desktop helper
75
74
  - `git` is required for non-GitHub Git sources
76
75
  - `npx` is required for skills.sh imports
77
76
 
78
- If the desktop app detects a missing dependency, it will surface an actionable error and point back to this section.
77
+ Development builds and damaged release bundles can still fall back to a system `node` 20 or newer. If the desktop app detects a missing dependency, it will surface an actionable error and point back to this section.
79
78
 
80
79
  ### Typical flow
81
80
 
@@ -144,6 +143,7 @@ Current built-in targets:
144
143
  - Gemini CLI
145
144
  - OpenCode
146
145
  - OpenClaw
146
+ - Hermes Agent
147
147
  - Pi
148
148
  - Trae
149
149
  - Windsurf
package/README.zh.md CHANGED
@@ -35,7 +35,7 @@
35
35
  ## 当前能力
36
36
 
37
37
  - **分组化 source 管理**:本地、Git、skills.sh 统一走同一套导入模型。
38
- - **多 agent 部署**:把同一组选中的 skill 部署到 Claude Code、Codex、Cursor、Gemini CLI、OpenCode、OpenClaw、Trae、Windsurf 等目标。
38
+ - **多 agent 部署**:把同一组选中的 skill 部署到 Claude Code、Codex、Cursor、Gemini CLI、OpenCode、OpenClaw、Hermes Agent、Trae、Windsurf 等目标。
39
39
  - **交互式配置流程**:基于 Ink 的 add/config/find TUI,覆盖选择、审阅和修复流程。
40
40
  - **macOS 15+ 桌面应用**:SwiftUI 主窗口、导入页、详情页、设置页和菜单栏快速配置。
41
41
  - **显式状态**:`manifest.json` 记录意图,`lock.json` 记录实际 inventory 与 deployment。
@@ -69,13 +69,12 @@ npx skill-flow --help
69
69
 
70
70
  ### 桌面端前置依赖
71
71
 
72
- Skill Flow Desktop 目前在目标 Mac 上仍依赖少量外部命令行工具:
72
+ Skill Flow Desktop release 构建会内置用于 desktop helper 的 Node.js runtime,因此双击启动不再依赖 `asdf` 或 `nvm` 写入 shell 的 `node` 路径。
73
73
 
74
- - 启动内置 desktop helper 需要 `node` 20 或更高版本
75
74
  - 导入非 GitHub Git source 需要 `git`
76
75
  - 导入 skills.sh source 需要 `npx`
77
76
 
78
- 如果桌面应用检测到依赖缺失,会直接提示可执行的错误信息,并引导回本节处理。
77
+ 开发构建和损坏的 release bundle 仍会 fallback 到系统 `node` 20 或更高版本。如果桌面应用检测到依赖缺失,会直接提示可执行的错误信息,并引导回本节处理。
79
78
 
80
79
  ### 常见使用流程
81
80
 
@@ -144,6 +143,7 @@ skill-flow add clawhub:example/skill-pack@1.2.3
144
143
  - Gemini CLI
145
144
  - OpenCode
146
145
  - OpenClaw
146
+ - Hermes Agent
147
147
  - Pi
148
148
  - Trae
149
149
  - Windsurf
@@ -232,7 +232,7 @@ export SKILL_FLOW_DESKTOP_HELPER_OVERRIDE=/absolute/path/to/apps/cli/dist/cli.js
232
232
  - [文档索引](./docs/README.md)
233
233
  - [CLI 参考](./docs/references/REF_00_cli-commands.md)
234
234
  - [桌面打包参考](./docs/references/REF_09_desktop-packaging.md)
235
- - [v1.3.4 发布说明](./releases/RELEASE_v1.3.4.md)
235
+ - [v1.3.7 发布说明](./releases/RELEASE_v1.3.7.md)
236
236
 
237
237
  ## 许可证
238
238
 
package/dist/cli.js CHANGED
@@ -7,7 +7,7 @@ import { render } from "ink";
7
7
  // package.json
8
8
  var package_default = {
9
9
  name: "skill-flow",
10
- version: "1.3.4",
10
+ version: "1.3.7",
11
11
  description: "Workflow-first management for AI agent skills. Group, project, and sync skills across multiple agents with explicit state tracking.",
12
12
  type: "module",
13
13
  main: "dist/cli.js",
@@ -24,7 +24,9 @@ var package_default = {
24
24
  build: "node ../../scripts/release/build-cli-package.mjs",
25
25
  dev: "tsx src/cli.tsx",
26
26
  prepack: "node ../../scripts/release/sync-cli-package-files.mjs prepare",
27
+ prepublishOnly: "node ../../scripts/release/guard-cli-publish.mjs",
27
28
  postpack: "node ../../scripts/release/sync-cli-package-files.mjs restore",
29
+ "publish:release": "node ../../scripts/release/publish-cli-package.mjs",
28
30
  test: "vitest run",
29
31
  "test:watch": "vitest"
30
32
  },
@@ -54,13 +56,13 @@ var package_default = {
54
56
  node: ">=20"
55
57
  },
56
58
  dependencies: {
57
- "@skill-flow/core-engine": "1.3.4",
58
- "@skill-flow/domain": "1.3.4",
59
- "@skill-flow/integration": "1.3.4",
60
- "@skill-flow/query": "1.3.4",
61
- "@skill-flow/shared-types": "1.3.4",
62
- "@skill-flow/storage": "1.3.4",
63
- "@skill-flow/tui": "1.3.4",
59
+ "@skill-flow/core-engine": "1.3.7",
60
+ "@skill-flow/domain": "1.3.7",
61
+ "@skill-flow/integration": "1.3.7",
62
+ "@skill-flow/query": "1.3.7",
63
+ "@skill-flow/shared-types": "1.3.7",
64
+ "@skill-flow/storage": "1.3.7",
65
+ "@skill-flow/tui": "1.3.7",
64
66
  commander: "^14.0.3",
65
67
  ink: "^6.8.0",
66
68
  react: "^19.2.0"
@@ -97,6 +99,7 @@ var TARGET_ORDER = [
97
99
  "gemini-cli",
98
100
  "opencode",
99
101
  "openclaw",
102
+ "hermes-agent",
100
103
  "pi",
101
104
  "trae",
102
105
  "windsurf",
@@ -202,6 +205,18 @@ var TARGET_DEFINITIONS = {
202
205
  documentedGlobalPath: "~/.openclaw/skills/",
203
206
  iconAssetName: "clawdbot.svg"
204
207
  },
208
+ "hermes-agent": {
209
+ label: "Hermes Agent",
210
+ strategy: "symlink",
211
+ envVar: "SKILL_FLOW_TARGET_HERMES_AGENT",
212
+ writerKey: "hermes-home",
213
+ writeRootCandidates: [path.join(os.homedir(), ".hermes", "skills")],
214
+ compatReadRootCandidates: [],
215
+ documentedProjectPath: ".hermes/skills/",
216
+ documentedGlobalPath: "~/.hermes/skills/",
217
+ iconAssetName: "hermesagent.svg",
218
+ documentedAgentIds: ["hermes"]
219
+ },
205
220
  pi: {
206
221
  label: "Pi",
207
222
  strategy: "symlink",
@@ -3593,6 +3608,7 @@ var InventoryService = class _InventoryService {
3593
3608
  ".continue/skills",
3594
3609
  ".github/skills",
3595
3610
  ".goose/skills",
3611
+ ".hermes/skills",
3596
3612
  ".iflow/skills",
3597
3613
  ".junie/skills",
3598
3614
  ".kilocode/skills",