infernoflow 0.10.11 → 0.10.12

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/CHANGELOG.md +26 -0
  2. package/package.json +3 -2
package/CHANGELOG.md ADDED
@@ -0,0 +1,26 @@
1
+ # Changelog — infernoflow
2
+
3
+ ## Unreleased
4
+
5
+ ## 0.10.12 — 2026-04-12
6
+
7
+ ### Added
8
+ - `infernoflow install-cursor-hooks` — Cursor Agent hooks append assistant replies to `inferno/CONTEXT.draft.md`; `infernoflow init --cursor-hooks`.
9
+ - `infernoflow install-vscode-copilot-hooks` — VS Code + GitHub Copilot agent hooks (Preview) via `.github/hooks/`; `infernoflow init --vscode-copilot-hooks`.
10
+ - Shared draft tooling: `scripts/inferno-promote-draft.mjs`, `.gitignore` entry for `inferno/CONTEXT.draft.md`.
11
+ - `lib/draftToolingInstall.mjs` — shared installer logic for promote script and gitignore.
12
+
13
+ ### Changed
14
+ - CLI help widens command column for long names (e.g. `install-vscode-copilot-hooks`).
15
+
16
+ ## 0.1.0 — 2026-02-26
17
+
18
+ ### Added
19
+ - `infernoflow init` — interactive scaffold with prompts
20
+ - `infernoflow check` — full validation with clear error messages
21
+ - `infernoflow status` — at-a-glance dashboard
22
+ - `infernoflow doc-gate` — CI hook for keeping docs in sync
23
+ - Zero npm dependencies — works with Node.js 18+ out of the box
24
+ - `--json` flag on check for CI pipelines
25
+ - Auto-detect project name from package.json
26
+ - Auto-add npm scripts to package.json on init
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "infernoflow",
3
- "version": "0.10.11",
3
+ "version": "0.10.12",
4
4
  "description": "The forge for liquid code — keep capabilities, contracts, and docs in sync.",
5
5
  "type": "module",
6
6
  "bin": {
@@ -13,7 +13,8 @@
13
13
  "bin",
14
14
  "lib",
15
15
  "templates",
16
- "README.md"
16
+ "README.md",
17
+ "CHANGELOG.md"
17
18
  ],
18
19
  "scripts": {
19
20
  "test": "node scripts/smoke.mjs && node scripts/json-smoke.mjs && node scripts/json-negative-smoke.mjs && node scripts/implement-smoke.mjs && node scripts/adopt-smoke.mjs && node scripts/pr-impact-smoke.mjs && node scripts/sync-smoke.mjs && node scripts/run-smoke.mjs",