harveyz-skill 0.2.0 → 0.2.1

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 (2) hide show
  1. package/package.json +2 -1
  2. package/skills-index.json +32 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "harveyz-skill",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
4
4
  "description": "One-click skill installer for Claude Code, Cursor, and Codex",
5
5
  "type": "module",
6
6
  "bin": {
@@ -13,6 +13,7 @@
13
13
  "bin/",
14
14
  "lib/",
15
15
  "bundles.json",
16
+ "skills-index.json",
16
17
  "skills/analysis/skill-analyzer/CHANGELOG.md",
17
18
  "skills/analysis/skill-analyzer/SKILL.md",
18
19
  "skills/harness/diataxis-docs/",
@@ -0,0 +1,32 @@
1
+ {
2
+ "toolBundleMeta": {
3
+ "shell-tools": "终端工具(p-launch 项目启动器)"
4
+ },
5
+ "tools": [
6
+ { "name": "p-launch", "bundle": "shell-tools" }
7
+ ],
8
+ "bundleMeta": {
9
+ "analysis": "分析工具(skill-analyzer)",
10
+ "brainstorming": "设计与规划工具(brainstorming + writing-plans)",
11
+ "dev": "开发工作流(executing-plans + systematic-debugging + using-git-worktrees)",
12
+ "document": "文档工具(diataxis-docs)",
13
+ "harness": "测试工具(full-stack-debug-env)",
14
+ "task": "任务管理(pm-task-dispatch + task-close)",
15
+ "web-fetch": "网页抓取工具(article-fetcher)",
16
+ "writing": "写作工具(mermaid-diagram)"
17
+ },
18
+ "skills": [
19
+ { "path": "analysis/skill-analyzer", "bundle": "analysis", "exclude": ["research/"] },
20
+ { "path": "harness/diataxis-docs", "bundle": "document" },
21
+ { "path": "harness/full-stack-debug-env", "bundle": "harness" },
22
+ { "path": "superpowers-fork/brainstorming", "bundle": "brainstorming" },
23
+ { "path": "superpowers-fork/executing-plans", "bundle": "dev" },
24
+ { "path": "superpowers-fork/systematic-debugging", "bundle": "dev" },
25
+ { "path": "superpowers-fork/using-git-worktrees", "bundle": "dev" },
26
+ { "path": "superpowers-fork/writing-plans", "bundle": "brainstorming" },
27
+ { "path": "task/pm-task-dispatch", "bundle": "task" },
28
+ { "path": "task/task-close", "bundle": "task" },
29
+ { "path": "web-fetch/article-fetcher", "bundle": "web-fetch" },
30
+ { "path": "writing/mermaid-diagram", "bundle": "writing" }
31
+ ]
32
+ }