harveyz-skill 0.8.1 → 0.10.0

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 (59) hide show
  1. package/CHANGELOG.md +43 -0
  2. package/bin/cli.js +399 -113
  3. package/lib/bundles.js +43 -11
  4. package/lib/installer.js +293 -5
  5. package/lib/targets.js +9 -0
  6. package/package.json +10 -2
  7. package/skills/analysis/git-cleanup/SKILL.md +1 -1
  8. package/skills/analysis/skill-analyzer/SKILL.md +1 -1
  9. package/skills/data-extraction/vision-extract/SKILL.md +154 -0
  10. package/skills/design/sync-design-html/SKILL.md +1 -0
  11. package/skills/harness/diataxis-docs/SKILL.md +1 -0
  12. package/skills/harness/dir-manage/SKILL.md +113 -0
  13. package/skills/harness/dir-manage/references/built-in/diataxis.md +88 -0
  14. package/skills/harness/dir-manage/references/built-in/role-based.md +108 -0
  15. package/skills/harness/dir-manage/references/methodology-spec.md +98 -0
  16. package/skills/harness/full-stack-debug-env/SKILL.md +1 -0
  17. package/skills/harness/git-workflow-init/SKILL.md +31 -114
  18. package/skills/harness/git-workflow-init/references/acceptance-test.md +133 -0
  19. package/skills/harness/git-workflow-init/references/conflict-analysis.md +126 -0
  20. package/skills/harness/git-workflow-init/references/hook-templates.md +4 -4
  21. package/skills/harness/migrate-specs/SKILL.md +184 -0
  22. package/skills/meta/contribute-skill/SKILL.md +1 -1
  23. package/skills/meta/npm-release/SKILL.md +178 -0
  24. package/skills/meta/skill-publish/SKILL.md +171 -0
  25. package/skills/superpowers-fork/brainstorming/SKILL.md +1 -1
  26. package/skills/superpowers-fork/executing-plans/SKILL.md +1 -1
  27. package/skills/superpowers-fork/systematic-debugging/SKILL.md +1 -1
  28. package/skills/superpowers-fork/using-git-worktrees/SKILL.md +1 -1
  29. package/skills/superpowers-fork/writing-plans/SKILL.md +1 -1
  30. package/skills/task/pm-task-dispatch/SKILL.md +2 -1
  31. package/skills/task/task-close/SKILL.md +2 -1
  32. package/skills/web-fetch/article-fetcher/SKILL.md +2 -5
  33. package/skills/web-fetch/url-extract/SKILL.md +218 -0
  34. package/skills/web-fetch/url-extract/platforms/SKILL.claude.md +31 -0
  35. package/skills/web-fetch/url-extract/platforms/SKILL.codex.md +17 -0
  36. package/skills/web-fetch/url-extract/platforms/SKILL.hermes.md +17 -0
  37. package/skills/web-fetch/url-extract/references/__pycache__/article_utils.cpython-314.pyc +0 -0
  38. package/skills/web-fetch/url-extract/references/article_utils.py +250 -0
  39. package/skills/web-fetch/url-extract/references/core-flow.md +188 -0
  40. package/skills/web-fetch/url-extract/references/file-format.md +73 -0
  41. package/skills/web-fetch/url-extract/scripts/dedup_check.py +41 -0
  42. package/skills/web-fetch/url-extract/scripts/playwright_web.py +172 -0
  43. package/skills/web-fetch/url-extract/scripts/playwright_xcom.py +221 -0
  44. package/skills/web-fetch/url-extract/scripts/validate_article.py +36 -0
  45. package/skills/web-fetch/url-extract/vars.json +17 -0
  46. package/skills/workflow/add-todo/SKILL.md +205 -0
  47. package/skills/writing/capture-insight/SKILL.md +112 -0
  48. package/skills/writing/mermaid-diagram/SKILL.md +1 -6
  49. package/skills-index.json +18 -6
  50. package/tools/p-launch/__pycache__/p_launch.cpython-314.pyc +0 -0
  51. package/tools/p-launch/p-launch.py +6 -0
  52. package/tools/p-launch/p-launch.sh +25 -291
  53. package/tools/p-launch/p_launch.py +585 -0
  54. package/tools/p-launch/tests/__pycache__/test_p_launch.cpython-314-pytest-9.0.2.pyc +0 -0
  55. package/tools/p-launch/tests/e2e.bats +212 -7
  56. package/tools/p-launch/tests/test_p_launch.py +239 -0
  57. package/tools/p-launch/tests/unit.bats +107 -196
  58. package/tools/p-launch/tool.json +11 -1
  59. package/skills/harness/git-workflow-init/evals/evals.json +0 -104
package/CHANGELOG.md CHANGED
@@ -7,6 +7,49 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [0.10.0] - 2026-06-08
11
+
12
+ ### Added
13
+ - `url-extract` skill(`data-extraction` bundle):跨平台 URL 存档工具,支持 Claude Code / Codex / Hermes,含 Playwright 抓取、SQLite 存储、VAULT_PATH / SKILL_DIR / CHROME_PROFILE 配置
14
+ - `vision-extract` skill(`data-extraction` bundle):从 hermes-skills 贡献的视觉数据提取 skill
15
+ - `skill-publish` skill(`meta` bundle):检查 skill 格式合规性与 skills-index.json 注册状态
16
+ - `npm-release` skill(`meta` bundle):完整 npm 发布工作流(版本号 → CHANGELOG → 分支 → tag → publish)
17
+ - `migrate-specs` skill(`harness` bundle):将旧 spec 文档迁移为 Diataxis 结构
18
+ - `dir-manage` skill(`document` bundle):从 writing-agent 贡献的目录管理 skill
19
+ - `capture-insight` skill(`writing` bundle):从 writing-agent 贡献的洞察捕获 skill
20
+ - `add-todo` skill(`workflow` bundle):从 harveyz-skill workflow 贡献的 TODO 追踪 skill
21
+ - Diataxis 结构文档:cache、config、bundle、info 模块的参考文档与指南
22
+
23
+ ### Changed
24
+ - `hskill` 安装交互优化:改为两步式(先选 target,再选 scope),更符合操作直觉
25
+ - `url-extract`:通用 SKILL.md + 各平台 patch 文件,支持跨平台复用
26
+
27
+ ### Fixed
28
+ - installer:`--force` 时按 `uninstallPaths` 精确清理,支持版本感知 venv 升级
29
+ - `url-extract`:以 `source_url` 为主键,支持存量 DB schema 迁移
30
+ - `url-extract`:命令注入安全加固,usability 改进
31
+ - SKILL.md frontmatter 跨所有 skill 规范化
32
+
33
+ ## [0.9.0] - 2026-05-29
34
+
35
+ ### Added
36
+ - `hskill uninstall <tool>` 命令:清理 binary、Python 模块、tool.json、venv 及 zshrc snippet
37
+ - `hskill uninstall <tool> --yes`:跳过所有确认(含用户配置文件)
38
+ - `hskill uninstall <skill> --scope <s> --target <t>`:卸载已安装的 skill 目录
39
+ - `tool.json` 新增 `uninstallPaths[]` 和 `configPaths[]` 字段,tool 可声明 tool-specific 清理路径
40
+ - fzf 交互界面在选完 item 后新增 Action 选择步骤(安装 / 卸载),支持在同一界面卸载 tool / skill / hook
41
+ - p-launch:迁移至 Python + Textual,新增三栏 TUI 界面
42
+ - p-launch:push/pull 时检测 diverged 分支(本地和远端均有新提交),跳过操作并提示
43
+ - p-launch:首次运行自动创建隔离 venv 并安装 textual,无需手动配置依赖
44
+
45
+ ### Changed
46
+ - p-launch `tool.json` 新增 `uninstallPaths`(`p-launch-venv`)和 `configPaths`(`~/.config/p-launch`)
47
+
48
+ ### Fixed
49
+ - installer:`--force` 重装时根据 `uninstallPaths` 精确清理旧版本文件,避免残留
50
+ - installer:`--force` 重装时正确清理 venv,支持版本感知升级
51
+ - tool 版本对比逻辑:upgrade 前先读取已安装版本,跳过同版本重复安装
52
+
10
53
  ## [0.8.1] - 2026-05-24
11
54
 
12
55
  ### Fixed