reffy-cli 0.6.0 → 0.6.2

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 CHANGED
@@ -9,7 +9,7 @@ Reffy is intended as an ideation layer for spec-driven development (SDD) in stra
9
9
  ## Install
10
10
 
11
11
  ```bash
12
- npm install -g reffy-cli
12
+ npm install -g reffy-cli@latest
13
13
  ```
14
14
 
15
15
  ## Quickstart (CLI-only)
package/dist/cli.js CHANGED
@@ -378,8 +378,8 @@ async function main() {
378
378
  return 0;
379
379
  }
380
380
  const output = parseOutputMode(rest);
381
- printBanner(output);
382
381
  if (command === "init") {
382
+ printBanner(output);
383
383
  const repoRoot = parseRepoArg(rest);
384
384
  const agents = await initAgents(repoRoot);
385
385
  const payload = { status: "ok", command: "init", ...agents };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "reffy-cli",
3
- "version": "0.6.0",
3
+ "version": "0.6.2",
4
4
  "description": "CLI-first, framework-agnostic references workflow for any repo (TypeScript)",
5
5
  "license": "MIT",
6
6
  "type": "module",