@harness-forge/cli 1.2.1 → 1.2.3

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/.agents/skills/hforge-analyze/SKILL.md +35 -0
  2. package/.agents/skills/hforge-decide/SKILL.md +29 -0
  3. package/.agents/skills/hforge-init/SKILL.md +34 -0
  4. package/.agents/skills/hforge-refresh/SKILL.md +28 -0
  5. package/.agents/skills/hforge-review/SKILL.md +29 -0
  6. package/AGENTS.md +8 -1
  7. package/README.md +19 -0
  8. package/commands/hforge-analyze.md +55 -0
  9. package/commands/hforge-cartograph.md +35 -0
  10. package/commands/hforge-commands.md +34 -0
  11. package/commands/hforge-decide.md +35 -0
  12. package/commands/hforge-init.md +37 -0
  13. package/commands/hforge-recommend.md +34 -0
  14. package/commands/hforge-recursive.md +34 -0
  15. package/commands/hforge-refresh.md +35 -0
  16. package/commands/hforge-review.md +36 -0
  17. package/commands/hforge-status.md +34 -0
  18. package/commands/hforge-task.md +35 -0
  19. package/commands/hforge-update.md +34 -0
  20. package/dist/application/install/agent-manifest.d.ts +8 -0
  21. package/dist/application/install/agent-manifest.d.ts.map +1 -1
  22. package/dist/application/install/agent-manifest.js +7 -0
  23. package/dist/application/install/agent-manifest.js.map +1 -1
  24. package/dist/application/recommendations/recommend-bundles.d.ts.map +1 -1
  25. package/dist/application/recommendations/recommend-bundles.js +41 -2
  26. package/dist/application/recommendations/recommend-bundles.js.map +1 -1
  27. package/dist/application/runtime/command-catalog.d.ts +7 -0
  28. package/dist/application/runtime/command-catalog.d.ts.map +1 -1
  29. package/dist/application/runtime/command-catalog.js +101 -0
  30. package/dist/application/runtime/command-catalog.js.map +1 -1
  31. package/dist/cli/commands/commands.d.ts.map +1 -1
  32. package/dist/cli/commands/commands.js +5 -1
  33. package/dist/cli/commands/commands.js.map +1 -1
  34. package/dist/domain/intelligence/repo-intelligence.js +1 -1
  35. package/dist/domain/intelligence/repo-intelligence.js.map +1 -1
  36. package/docs/agent-usage-playbook.md +206 -0
  37. package/docs/agents.md +2 -0
  38. package/docs/commands.md +27 -0
  39. package/manifests/bundles/core.json +13 -1
  40. package/manifests/catalog/compatibility-matrix.json +171 -1
  41. package/manifests/catalog/package-surface.json +48 -0
  42. package/package.json +1 -1
  43. package/scripts/intelligence/shared.mjs +243 -58
  44. package/skills/hforge-analyze/SKILL.md +40 -0
  45. package/skills/hforge-analyze/references/analysis-order.md +15 -0
  46. package/skills/hforge-analyze/references/decision-promotion.md +9 -0
  47. package/skills/hforge-analyze/references/output-contract.md +7 -0
  48. package/skills/hforge-decide/SKILL.md +58 -0
  49. package/skills/hforge-decide/references/decision-rubric.md +18 -0
  50. package/skills/hforge-decide/references/output-contract.md +7 -0
  51. package/skills/hforge-init/SKILL.md +58 -0
  52. package/skills/hforge-init/references/bootstrap-order.md +7 -0
  53. package/skills/hforge-init/references/output-contract.md +7 -0
  54. package/skills/hforge-refresh/SKILL.md +52 -0
  55. package/skills/hforge-refresh/references/output-contract.md +7 -0
  56. package/skills/hforge-refresh/references/refresh-order.md +5 -0
  57. package/skills/hforge-review/SKILL.md +57 -0
  58. package/skills/hforge-review/references/output-contract.md +7 -0
  59. package/skills/hforge-review/references/review-order.md +7 -0
@@ -0,0 +1,206 @@
1
+ # Agent Usage Playbook
2
+
3
+ Harness Forge is most useful when the agent treats it as an explicit operating
4
+ layer rather than passive repo decoration.
5
+
6
+ This playbook shows how to promote actual usage in installed workspaces, how to
7
+ run commands even when bare `hforge` is not on `PATH`, and what prompts to give
8
+ Claude Code or Codex so they use the installed runtime instead of falling back
9
+ to ad-hoc repo exploration.
10
+
11
+ ## Command resolution rule
12
+
13
+ Inside an installed workspace, agents should resolve Harness Forge commands in
14
+ this order:
15
+
16
+ 1. `.hforge/generated/bin/hforge.cmd` or `.ps1` on Windows, or `./.hforge/generated/bin/hforge` on POSIX
17
+ 2. bare `hforge`
18
+ 3. `npx @harness-forge/cli`
19
+
20
+ That means a global install is optional. Agents can still run the package
21
+ reliably through the workspace-local launcher.
22
+
23
+ ## Slash-style command trigger
24
+
25
+ In runtimes that support markdown command entrypoints, Harness Forge can also
26
+ be promoted through `/hforge-init`, `/hforge-analyze`, `/hforge-review`,
27
+ `/hforge-refresh`, `/hforge-decide`, `/hforge-status`, `/hforge-commands`,
28
+ `/hforge-recommend`, `/hforge-cartograph`, `/hforge-task`,
29
+ `/hforge-recursive`, and `/hforge-update`.
30
+
31
+ Those commands are backed by `commands/hforge-init.md`,
32
+ `commands/hforge-analyze.md`, `commands/hforge-review.md`,
33
+ `commands/hforge-refresh.md`, `commands/hforge-decide.md`,
34
+ `commands/hforge-status.md`, `commands/hforge-commands.md`,
35
+ `commands/hforge-recommend.md`, `commands/hforge-cartograph.md`,
36
+ `commands/hforge-task.md`, `commands/hforge-recursive.md`, and
37
+ `commands/hforge-update.md`, and are intended to make the agent:
38
+
39
+ - inspect the installed Harness Forge runtime first
40
+ - choose a safe command execution path
41
+ - summarize active guidance, targets, repo intelligence, and next steps before coding
42
+
43
+ ## What usage looks like
44
+
45
+ An agent is usually using Harness Forge well when it does at least some of the
46
+ following:
47
+
48
+ - reads `AGENTS.md`, `CLAUDE.md`, or target bridge files before acting
49
+ - checks `.hforge/agent-manifest.json` or `.hforge/generated/agent-command-catalog.json`
50
+ - uses `status`, `commands`, `recommend`, `review`, `task`, or `recursive` instead of inventing unsupported commands
51
+ - reads `.hforge/runtime/repo/repo-map.json` or `.hforge/runtime/repo/recommendations.json` before making support claims
52
+ - writes durable artifacts only when the workflow actually calls for them
53
+
54
+ ## Important limitation
55
+
56
+ Normal agent work does not automatically populate every Harness Forge runtime
57
+ folder.
58
+
59
+ For example:
60
+
61
+ - `.hforge/runtime/tasks/` only fills when task-runtime flows are used
62
+ - `.hforge/runtime/decisions/` only fills when ASR or ADR style decision records are written
63
+ - `.hforge/runtime/recursive/sessions/` only fills when recursive mode is explicitly used
64
+
65
+ So an empty task or decision folder does not automatically mean the agent is
66
+ ignoring Harness Forge. It often means the agent is using the guidance layer
67
+ but has not yet been asked to persist structured runtime artifacts.
68
+
69
+ ## Recommended first commands
70
+
71
+ These are the best low-friction commands to promote actual package usage:
72
+
73
+ ```bash
74
+ hforge status --root . --json
75
+ hforge commands --json
76
+ hforge recommend . --json
77
+ hforge review --root . --json
78
+ ```
79
+
80
+ If the repo already has meaningful complexity:
81
+
82
+ ```bash
83
+ hforge cartograph . --json
84
+ hforge classify-boundaries . --json
85
+ hforge synthesize-instructions . --target claude-code --json
86
+ ```
87
+
88
+ If the task is hard or multi-hop:
89
+
90
+ ```bash
91
+ hforge recursive plan "investigate the issue" --task-id TASK-001 --root . --json
92
+ hforge recursive capabilities --root . --json
93
+ ```
94
+
95
+ ## Prompt patterns
96
+
97
+ ### 1. Prove that the agent is using Harness Forge
98
+
99
+ Use this when you want the agent to confirm it is reading the installed layer:
100
+
101
+ ```text
102
+ Before making changes, inspect CLAUDE.md, AGENTS.md, and .hforge/agent-manifest.json.
103
+ Tell me which Harness Forge surfaces are active in this repo, which command form
104
+ you will use, and which hidden runtime files you consider authoritative.
105
+ ```
106
+
107
+ ### 2. Force command-aware behavior
108
+
109
+ Use this when the agent tends to improvise commands:
110
+
111
+ ```text
112
+ Use the installed Harness Forge command catalog before inventing commands.
113
+ Resolve execution through .hforge/generated/bin/hforge first, then bare hforge,
114
+ then npx @harness-forge/cli. Show me the command you chose before running it.
115
+ ```
116
+
117
+ ### 3. Force repo-aware guidance before coding
118
+
119
+ Use this when you want the agent to inspect the workspace before implementation:
120
+
121
+ ```text
122
+ Use Harness Forge to inspect this repo before coding. Run status, commands, and
123
+ recommend, then summarize what the installed runtime says about targets, risks,
124
+ and recommended operating surfaces before you edit files.
125
+ ```
126
+
127
+ ### 4. Create durable task artifacts
128
+
129
+ Use this when you want visible runtime evidence for a feature or bug:
130
+
131
+ ```text
132
+ Treat this work as a tracked Harness Forge task. Create a task id, inspect the
133
+ repo using the installed runtime, and persist task-runtime artifacts for file
134
+ interest, impact analysis, and task pack output before implementation.
135
+ ```
136
+
137
+ ### 5. Create decision records
138
+
139
+ Use this when the work changes architecture, workflow, or support posture:
140
+
141
+ ```text
142
+ If this task changes architecture, release posture, workflow contracts, or AI
143
+ runtime behavior, write a Harness Forge decision record under
144
+ .hforge/runtime/decisions and summarize the rationale in the response.
145
+ ```
146
+
147
+ ### 6. Escalate into recursive mode
148
+
149
+ Use this when the work is ambiguous or investigation-heavy:
150
+
151
+ ```text
152
+ This is a hard investigation task. Use Harness Forge recursive mode instead of
153
+ chat-only reasoning. Plan a recursive session, inspect recursive capabilities,
154
+ run one bounded structured analysis step, and return the durable run result.
155
+ ```
156
+
157
+ ### 7. Keep the agent honest about support claims
158
+
159
+ Use this when the task touches target support or language behavior:
160
+
161
+ ```text
162
+ Do not guess target or language support. Use Harness Forge capability surfaces,
163
+ including .hforge/runtime/recursive/language-capabilities.json and target inspect
164
+ output, before claiming that Claude Code, Codex, Cursor, or OpenCode supports a
165
+ behavior.
166
+ ```
167
+
168
+ ## Claude-specific examples
169
+
170
+ ```text
171
+ Use CLAUDE.md as the Claude-native bridge, but keep AGENTS.md as the shared
172
+ cross-agent contract. Before implementing, inspect the installed Harness Forge
173
+ runtime and tell me which launcher or command form you will use.
174
+ ```
175
+
176
+ ```text
177
+ Use Harness Forge as your repo operating layer for this task. Read CLAUDE.md,
178
+ AGENTS.md, and .hforge/generated/agent-command-catalog.json, then use status,
179
+ recommend, and review before you write code.
180
+ ```
181
+
182
+ ## Codex-specific examples
183
+
184
+ ```text
185
+ Use AGENTS.md and the installed Harness Forge command catalog before editing.
186
+ If hforge is not on PATH, use the workspace launcher under .hforge/generated/bin.
187
+ Prefer Harness Forge repo-intelligence commands over blind repo scanning.
188
+ ```
189
+
190
+ ```text
191
+ Use Harness Forge to bootstrap your understanding of this repo: inspect command
192
+ availability, review installed targets, run recommendation and repo-map flows,
193
+ and base your plan on the installed runtime outputs instead of assumptions.
194
+ ```
195
+
196
+ ## Best operator habit
197
+
198
+ If you want agents to use Harness Forge more consistently, make that an explicit
199
+ instruction at the start of important tasks:
200
+
201
+ ```text
202
+ Use the installed Harness Forge runtime for this task, not just the repo files.
203
+ Inspect the active guidance surfaces first, resolve the safest command form, and
204
+ persist structured artifacts when the task crosses into tracked work,
205
+ architecture decisions, or recursive investigation.
206
+ ```
package/docs/agents.md CHANGED
@@ -17,6 +17,8 @@ AI content into the hidden `.hforge/` layer.
17
17
  - `.hforge/runtime/recursive/language-capabilities.json` for the canonical
18
18
  recursive structured-analysis capability map before deeper recursive
19
19
  investigation begins
20
+ - `docs/agent-usage-playbook.md` for copy-ready prompts and examples that make
21
+ agents use the installed Harness Forge runtime more explicitly
20
22
  - `docs/authoring/enhanced-skill-import.md` for curated research and validation provenance behind imported skill upgrades
21
23
  - `RESEARCH-SOURCES.md` and `VALIDATION.md` for optional pack-level provenance detail
22
24
 
package/docs/commands.md CHANGED
@@ -62,6 +62,30 @@ For agents inside an installed workspace, the safest execution order is:
62
62
  2. bare `hforge`
63
63
  3. `npx @harness-forge/cli`
64
64
 
65
+ ## Markdown command entrypoints
66
+
67
+ Some agent runtimes support markdown-backed command triggers in addition to the
68
+ CLI. Harness Forge ships command docs for those environments under `commands/`.
69
+
70
+ Examples:
71
+
72
+ - `/hforge-init` to bootstrap or refresh the project-owned Harness Forge runtime
73
+ - `/hforge-analyze` to force installed-runtime inspection before coding
74
+ - `/hforge-review` to inspect drift, decision coverage, and stale runtime artifacts
75
+ - `/hforge-refresh` to regenerate runtime summaries after install or repo changes
76
+ - `/hforge-decide` to capture durable ASR or ADR records
77
+ - `/hforge-status` to inspect current workspace state before acting
78
+ - `/hforge-commands` to inspect the shipped command catalog before inventing commands
79
+ - `/hforge-recommend` to run repo-intelligence and recommendation flows
80
+ - `/hforge-cartograph` to inspect repo topology, boundaries, and hotspots
81
+ - `/hforge-task` to inspect task-runtime folders and task packs
82
+ - `/hforge-recursive` to escalate difficult work into recursive structured analysis
83
+ - `/hforge-update` to preview or apply a non-destructive package refresh
84
+ - `commands/hforge-init.md`, `commands/hforge-analyze.md`, `commands/hforge-review.md`, `commands/hforge-refresh.md`, `commands/hforge-decide.md`, `commands/hforge-status.md`, `commands/hforge-commands.md`, `commands/hforge-recommend.md`, `commands/hforge-cartograph.md`, `commands/hforge-task.md`, `commands/hforge-recursive.md`, and `commands/hforge-update.md` as the canonical packaged command surfaces
85
+ - `commands/plan.md` and `commands/test.md` for broader planning and validation guidance
86
+
87
+ Treat these as agent-facing prompt entrypoints, not replacements for the CLI.
88
+
65
89
  ```bash
66
90
  npx @harness-forge/cli
67
91
  npx @harness-forge/cli shell setup --yes
@@ -116,6 +140,9 @@ under `.hforge/state/`, and intentionally preserve gathered runtime state such
116
140
  as task artifacts, decision records, recursive sessions, and observability
117
141
  signals.
118
142
 
143
+ For agent-facing examples and prompt patterns that encourage actual runtime
144
+ usage instead of passive installation, see `docs/agent-usage-playbook.md`.
145
+
119
146
  ## Maintainer source-checkout examples
120
147
 
121
148
  When developing Harness Forge itself from a source checkout, the equivalent
@@ -37,6 +37,18 @@
37
37
  "version": 1,
38
38
  "description": "Core command guidance and usage patterns.",
39
39
  "paths": [
40
+ "commands/hforge-analyze.md",
41
+ "commands/hforge-cartograph.md",
42
+ "commands/hforge-commands.md",
43
+ "commands/hforge-decide.md",
44
+ "commands/hforge-init.md",
45
+ "commands/hforge-recommend.md",
46
+ "commands/hforge-recursive.md",
47
+ "commands/hforge-refresh.md",
48
+ "commands/hforge-review.md",
49
+ "commands/hforge-status.md",
50
+ "commands/hforge-task.md",
51
+ "commands/hforge-update.md",
40
52
  "commands/plan.md",
41
53
  "commands/test.md",
42
54
  "contexts/dev.md",
@@ -59,7 +71,7 @@
59
71
  ],
60
72
  "owner": "core",
61
73
  "usageCues": [
62
- "Use when starting, testing, or validating work."
74
+ "Use when starting, testing, validating, or analyzing work."
63
75
  ]
64
76
  },
65
77
  {
@@ -1,5 +1,5 @@
1
1
  {
2
- "generatedAt": "2026-03-28T21:42:25.027Z",
2
+ "generatedAt": "2026-03-28T23:56:45.619Z",
3
3
  "entries": [
4
4
  {
5
5
  "subjectType": "language",
@@ -960,6 +960,46 @@
960
960
  "relatedId": "go-engineering",
961
961
  "supportLevel": "full"
962
962
  },
963
+ {
964
+ "subjectType": "target",
965
+ "subjectId": "claude-code",
966
+ "relationType": "supports",
967
+ "relatedType": "skill",
968
+ "relatedId": "hforge-analyze",
969
+ "supportLevel": "full"
970
+ },
971
+ {
972
+ "subjectType": "target",
973
+ "subjectId": "claude-code",
974
+ "relationType": "supports",
975
+ "relatedType": "skill",
976
+ "relatedId": "hforge-decide",
977
+ "supportLevel": "full"
978
+ },
979
+ {
980
+ "subjectType": "target",
981
+ "subjectId": "claude-code",
982
+ "relationType": "supports",
983
+ "relatedType": "skill",
984
+ "relatedId": "hforge-init",
985
+ "supportLevel": "full"
986
+ },
987
+ {
988
+ "subjectType": "target",
989
+ "subjectId": "claude-code",
990
+ "relationType": "supports",
991
+ "relatedType": "skill",
992
+ "relatedId": "hforge-refresh",
993
+ "supportLevel": "full"
994
+ },
995
+ {
996
+ "subjectType": "target",
997
+ "subjectId": "claude-code",
998
+ "relationType": "supports",
999
+ "relatedType": "skill",
1000
+ "relatedId": "hforge-review",
1001
+ "supportLevel": "full"
1002
+ },
963
1003
  {
964
1004
  "subjectType": "target",
965
1005
  "subjectId": "claude-code",
@@ -1755,6 +1795,46 @@
1755
1795
  "relatedId": "go-engineering",
1756
1796
  "supportLevel": "full"
1757
1797
  },
1798
+ {
1799
+ "subjectType": "target",
1800
+ "subjectId": "codex",
1801
+ "relationType": "supports",
1802
+ "relatedType": "skill",
1803
+ "relatedId": "hforge-analyze",
1804
+ "supportLevel": "full"
1805
+ },
1806
+ {
1807
+ "subjectType": "target",
1808
+ "subjectId": "codex",
1809
+ "relationType": "supports",
1810
+ "relatedType": "skill",
1811
+ "relatedId": "hforge-decide",
1812
+ "supportLevel": "full"
1813
+ },
1814
+ {
1815
+ "subjectType": "target",
1816
+ "subjectId": "codex",
1817
+ "relationType": "supports",
1818
+ "relatedType": "skill",
1819
+ "relatedId": "hforge-init",
1820
+ "supportLevel": "full"
1821
+ },
1822
+ {
1823
+ "subjectType": "target",
1824
+ "subjectId": "codex",
1825
+ "relationType": "supports",
1826
+ "relatedType": "skill",
1827
+ "relatedId": "hforge-refresh",
1828
+ "supportLevel": "full"
1829
+ },
1830
+ {
1831
+ "subjectType": "target",
1832
+ "subjectId": "codex",
1833
+ "relationType": "supports",
1834
+ "relatedType": "skill",
1835
+ "relatedId": "hforge-review",
1836
+ "supportLevel": "full"
1837
+ },
1758
1838
  {
1759
1839
  "subjectType": "target",
1760
1840
  "subjectId": "codex",
@@ -2597,6 +2677,51 @@
2597
2677
  "supportLevel": "partial",
2598
2678
  "notes": "Cursor only provides partial skill support for go-engineering."
2599
2679
  },
2680
+ {
2681
+ "subjectType": "target",
2682
+ "subjectId": "cursor",
2683
+ "relationType": "supports",
2684
+ "relatedType": "skill",
2685
+ "relatedId": "hforge-analyze",
2686
+ "supportLevel": "partial",
2687
+ "notes": "Cursor only provides partial skill support for hforge-analyze."
2688
+ },
2689
+ {
2690
+ "subjectType": "target",
2691
+ "subjectId": "cursor",
2692
+ "relationType": "supports",
2693
+ "relatedType": "skill",
2694
+ "relatedId": "hforge-decide",
2695
+ "supportLevel": "partial",
2696
+ "notes": "Cursor only provides partial skill support for hforge-decide."
2697
+ },
2698
+ {
2699
+ "subjectType": "target",
2700
+ "subjectId": "cursor",
2701
+ "relationType": "supports",
2702
+ "relatedType": "skill",
2703
+ "relatedId": "hforge-init",
2704
+ "supportLevel": "partial",
2705
+ "notes": "Cursor only provides partial skill support for hforge-init."
2706
+ },
2707
+ {
2708
+ "subjectType": "target",
2709
+ "subjectId": "cursor",
2710
+ "relationType": "supports",
2711
+ "relatedType": "skill",
2712
+ "relatedId": "hforge-refresh",
2713
+ "supportLevel": "partial",
2714
+ "notes": "Cursor only provides partial skill support for hforge-refresh."
2715
+ },
2716
+ {
2717
+ "subjectType": "target",
2718
+ "subjectId": "cursor",
2719
+ "relationType": "supports",
2720
+ "relatedType": "skill",
2721
+ "relatedId": "hforge-review",
2722
+ "supportLevel": "partial",
2723
+ "notes": "Cursor only provides partial skill support for hforge-review."
2724
+ },
2600
2725
  {
2601
2726
  "subjectType": "target",
2602
2727
  "subjectId": "cursor",
@@ -3473,6 +3598,51 @@
3473
3598
  "supportLevel": "partial",
3474
3599
  "notes": "OpenCode only provides partial skill support for go-engineering."
3475
3600
  },
3601
+ {
3602
+ "subjectType": "target",
3603
+ "subjectId": "opencode",
3604
+ "relationType": "supports",
3605
+ "relatedType": "skill",
3606
+ "relatedId": "hforge-analyze",
3607
+ "supportLevel": "partial",
3608
+ "notes": "OpenCode only provides partial skill support for hforge-analyze."
3609
+ },
3610
+ {
3611
+ "subjectType": "target",
3612
+ "subjectId": "opencode",
3613
+ "relationType": "supports",
3614
+ "relatedType": "skill",
3615
+ "relatedId": "hforge-decide",
3616
+ "supportLevel": "partial",
3617
+ "notes": "OpenCode only provides partial skill support for hforge-decide."
3618
+ },
3619
+ {
3620
+ "subjectType": "target",
3621
+ "subjectId": "opencode",
3622
+ "relationType": "supports",
3623
+ "relatedType": "skill",
3624
+ "relatedId": "hforge-init",
3625
+ "supportLevel": "partial",
3626
+ "notes": "OpenCode only provides partial skill support for hforge-init."
3627
+ },
3628
+ {
3629
+ "subjectType": "target",
3630
+ "subjectId": "opencode",
3631
+ "relationType": "supports",
3632
+ "relatedType": "skill",
3633
+ "relatedId": "hforge-refresh",
3634
+ "supportLevel": "partial",
3635
+ "notes": "OpenCode only provides partial skill support for hforge-refresh."
3636
+ },
3637
+ {
3638
+ "subjectType": "target",
3639
+ "subjectId": "opencode",
3640
+ "relationType": "supports",
3641
+ "relatedType": "skill",
3642
+ "relatedId": "hforge-review",
3643
+ "supportLevel": "partial",
3644
+ "notes": "OpenCode only provides partial skill support for hforge-review."
3645
+ },
3476
3646
  {
3477
3647
  "subjectType": "target",
3478
3648
  "subjectId": "opencode",
@@ -64,10 +64,34 @@
64
64
  "docs/observability.md",
65
65
  "docs/benchmark-scenarios.md",
66
66
  "docs/release-process.md",
67
+ "commands/hforge-analyze.md",
68
+ "commands/hforge-cartograph.md",
69
+ "commands/hforge-commands.md",
70
+ "commands/hforge-decide.md",
71
+ "commands/hforge-init.md",
72
+ "commands/hforge-recommend.md",
73
+ "commands/hforge-recursive.md",
74
+ "commands/hforge-refresh.md",
75
+ "commands/hforge-review.md",
76
+ "commands/hforge-status.md",
77
+ "commands/hforge-task.md",
78
+ "commands/hforge-update.md",
79
+ "commands/plan.md",
80
+ "commands/test.md",
81
+ ".agents/skills/hforge-analyze/SKILL.md",
82
+ ".agents/skills/hforge-decide/SKILL.md",
83
+ ".agents/skills/hforge-init/SKILL.md",
84
+ ".agents/skills/hforge-refresh/SKILL.md",
85
+ ".agents/skills/hforge-review/SKILL.md",
67
86
  "knowledge-bases/seeded/README.md",
68
87
  "rules/common/README.md",
69
88
  "skills/README.md",
70
89
  "skills/engineering-assistant/SKILL.md",
90
+ "skills/hforge-analyze/SKILL.md",
91
+ "skills/hforge-decide/SKILL.md",
92
+ "skills/hforge-init/SKILL.md",
93
+ "skills/hforge-refresh/SKILL.md",
94
+ "skills/hforge-review/SKILL.md",
71
95
  "skills/typescript-engineering/SKILL.md",
72
96
  "skills/java-engineering/SKILL.md",
73
97
  "skills/dotnet-engineering/SKILL.md",
@@ -222,6 +246,20 @@
222
246
  "docs/benchmark-scenarios.md",
223
247
  "docs/troubleshooting.md",
224
248
  "docs/versioning-and-migration.md",
249
+ "commands/hforge-analyze.md",
250
+ "commands/hforge-cartograph.md",
251
+ "commands/hforge-commands.md",
252
+ "commands/hforge-decide.md",
253
+ "commands/hforge-init.md",
254
+ "commands/hforge-recommend.md",
255
+ "commands/hforge-recursive.md",
256
+ "commands/hforge-refresh.md",
257
+ "commands/hforge-review.md",
258
+ "commands/hforge-status.md",
259
+ "commands/hforge-task.md",
260
+ "commands/hforge-update.md",
261
+ "commands/plan.md",
262
+ "commands/test.md",
225
263
  "hooks",
226
264
  "mcp",
227
265
  "profiles"
@@ -370,6 +408,11 @@
370
408
  ".specify",
371
409
  ".agents/skills",
372
410
  ".agents/skills/repo-onboarding/SKILL.md",
411
+ ".agents/skills/hforge-analyze/SKILL.md",
412
+ ".agents/skills/hforge-decide/SKILL.md",
413
+ ".agents/skills/hforge-init/SKILL.md",
414
+ ".agents/skills/hforge-refresh/SKILL.md",
415
+ ".agents/skills/hforge-review/SKILL.md",
373
416
  ".agents/skills/architecture-decision-records/SKILL.md",
374
417
  ".agents/skills/api-contract-review/SKILL.md",
375
418
  ".agents/skills/db-migration-review/SKILL.md",
@@ -396,6 +439,11 @@
396
439
  ".specify",
397
440
  ".agents/skills",
398
441
  ".agents/skills/repo-onboarding/SKILL.md",
442
+ ".agents/skills/hforge-analyze/SKILL.md",
443
+ ".agents/skills/hforge-decide/SKILL.md",
444
+ ".agents/skills/hforge-init/SKILL.md",
445
+ ".agents/skills/hforge-refresh/SKILL.md",
446
+ ".agents/skills/hforge-review/SKILL.md",
399
447
  ".agents/skills/architecture-decision-records/SKILL.md",
400
448
  ".agents/skills/api-contract-review/SKILL.md",
401
449
  ".agents/skills/db-migration-review/SKILL.md",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@harness-forge/cli",
3
- "version": "1.2.1",
3
+ "version": "1.2.3",
4
4
  "description": "Harness Forge: modular agentic AI workspace installer, catalog, and workflow runtime.",
5
5
  "type": "module",
6
6
  "bin": {