hirmos 1.3.2 → 1.3.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.
- package/README.md +1 -1
- package/dist/commands/init.js +10 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -66,7 +66,7 @@ hirmos init --offline
|
|
|
66
66
|
When `hirmos init` runs online, it checks whether a newer published HIRMOS CLI version is available on npm. If a newer version exists, the CLI prints a non-blocking message such as:
|
|
67
67
|
|
|
68
68
|
```text
|
|
69
|
-
A newer HIRMOS CLI is available: 1.3.
|
|
69
|
+
A newer HIRMOS CLI is available: 1.3.3.
|
|
70
70
|
Update with: npm install -g hirmos@latest
|
|
71
71
|
```
|
|
72
72
|
|
package/dist/commands/init.js
CHANGED
|
@@ -58,7 +58,16 @@ function formatInitSummary(first, selected, added, alreadyInstalled, targets, in
|
|
|
58
58
|
for (const target of targets)
|
|
59
59
|
lines.push(`- ${target}`);
|
|
60
60
|
lines.push("", "Next step:");
|
|
61
|
-
lines.push("Open your AI coding tool and
|
|
61
|
+
lines.push("Open your AI coding tool in this project and run a HIRMOS workflow command, for example:");
|
|
62
|
+
lines.push("");
|
|
63
|
+
lines.push("hirmos requirements");
|
|
64
|
+
lines.push("hirmos system-design");
|
|
65
|
+
lines.push("hirmos implementation");
|
|
66
|
+
lines.push("");
|
|
67
|
+
lines.push("Fallback initialization:");
|
|
68
|
+
lines.push("If your tool does not automatically pick up the selected agent/tool integration files, copy and paste this prompt into your agent:");
|
|
69
|
+
lines.push("");
|
|
70
|
+
lines.push("Read and follow the instructions on _hirmos/HIRMOS_CORE.md.");
|
|
62
71
|
lines.push("", "To add more integrations later:");
|
|
63
72
|
lines.push("hirmos init --integration claude,cursor,copilot");
|
|
64
73
|
return `${lines.join("\n")}\n`;
|