skill-flow 1.3.5 → 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 +4 -4
- package/README.zh.md +5 -5
- package/dist/cli.js +22 -8
- package/dist/cli.js.map +2 -2
- package/package.json +1 -1
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
|
|
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
|
|
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.
|
|
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.
|
|
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",
|
|
@@ -56,13 +56,13 @@ var package_default = {
|
|
|
56
56
|
node: ">=20"
|
|
57
57
|
},
|
|
58
58
|
dependencies: {
|
|
59
|
-
"@skill-flow/core-engine": "1.3.
|
|
60
|
-
"@skill-flow/domain": "1.3.
|
|
61
|
-
"@skill-flow/integration": "1.3.
|
|
62
|
-
"@skill-flow/query": "1.3.
|
|
63
|
-
"@skill-flow/shared-types": "1.3.
|
|
64
|
-
"@skill-flow/storage": "1.3.
|
|
65
|
-
"@skill-flow/tui": "1.3.
|
|
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",
|
|
66
66
|
commander: "^14.0.3",
|
|
67
67
|
ink: "^6.8.0",
|
|
68
68
|
react: "^19.2.0"
|
|
@@ -99,6 +99,7 @@ var TARGET_ORDER = [
|
|
|
99
99
|
"gemini-cli",
|
|
100
100
|
"opencode",
|
|
101
101
|
"openclaw",
|
|
102
|
+
"hermes-agent",
|
|
102
103
|
"pi",
|
|
103
104
|
"trae",
|
|
104
105
|
"windsurf",
|
|
@@ -204,6 +205,18 @@ var TARGET_DEFINITIONS = {
|
|
|
204
205
|
documentedGlobalPath: "~/.openclaw/skills/",
|
|
205
206
|
iconAssetName: "clawdbot.svg"
|
|
206
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
|
+
},
|
|
207
220
|
pi: {
|
|
208
221
|
label: "Pi",
|
|
209
222
|
strategy: "symlink",
|
|
@@ -3595,6 +3608,7 @@ var InventoryService = class _InventoryService {
|
|
|
3595
3608
|
".continue/skills",
|
|
3596
3609
|
".github/skills",
|
|
3597
3610
|
".goose/skills",
|
|
3611
|
+
".hermes/skills",
|
|
3598
3612
|
".iflow/skills",
|
|
3599
3613
|
".junie/skills",
|
|
3600
3614
|
".kilocode/skills",
|