infernoflow 0.33.1 → 0.34.1
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 +208 -120
- package/dist/bin/infernoflow.mjs +273 -85
- package/dist/lib/adopters/angular.mjs +128 -1
- package/dist/lib/adopters/css.mjs +111 -1
- package/dist/lib/adopters/react.mjs +104 -1
- package/dist/lib/ai/ideDetection.mjs +31 -1
- package/dist/lib/ai/localProvider.mjs +88 -1
- package/dist/lib/ai/providerRouter.mjs +295 -2
- package/dist/lib/commands/adopt.mjs +869 -20
- package/dist/lib/commands/adoptWizard.mjs +320 -9
- package/dist/lib/commands/agent.mjs +191 -5
- package/dist/lib/commands/ai.mjs +407 -2
- package/dist/lib/commands/ask.mjs +299 -0
- package/dist/lib/commands/audit.mjs +300 -13
- package/dist/lib/commands/changelog.mjs +594 -26
- package/dist/lib/commands/check.mjs +184 -3
- package/dist/lib/commands/ci.mjs +208 -3
- package/dist/lib/commands/claudeMd.mjs +139 -28
- package/dist/lib/commands/cloud.mjs +521 -5
- package/dist/lib/commands/context.mjs +346 -34
- package/dist/lib/commands/coverage.mjs +282 -2
- package/dist/lib/commands/dashboard.mjs +635 -123
- package/dist/lib/commands/demo.mjs +465 -8
- package/dist/lib/commands/diff.mjs +274 -5
- package/dist/lib/commands/docGate.mjs +81 -2
- package/dist/lib/commands/doctor.mjs +321 -3
- package/dist/lib/commands/explain.mjs +438 -8
- package/dist/lib/commands/export.mjs +239 -10
- package/dist/lib/commands/generateSkills.mjs +163 -38
- package/dist/lib/commands/graph.mjs +378 -11
- package/dist/lib/commands/health.mjs +309 -2
- package/dist/lib/commands/impact.mjs +325 -2
- package/dist/lib/commands/implement.mjs +103 -7
- package/dist/lib/commands/init.mjs +545 -23
- package/dist/lib/commands/installCursorHooks.mjs +36 -1
- package/dist/lib/commands/installVsCodeCopilotHooks.mjs +37 -1
- package/dist/lib/commands/link.mjs +342 -2
- package/dist/lib/commands/log.mjs +164 -16
- package/dist/lib/commands/monorepo.mjs +428 -4
- package/dist/lib/commands/notify.mjs +258 -4
- package/dist/lib/commands/onboard.mjs +296 -4
- package/dist/lib/commands/prComment.mjs +361 -2
- package/dist/lib/commands/prImpact.mjs +157 -2
- package/dist/lib/commands/publish.mjs +316 -15
- package/dist/lib/commands/recap.mjs +359 -0
- package/dist/lib/commands/report.mjs +272 -28
- package/dist/lib/commands/review.mjs +223 -9
- package/dist/lib/commands/run.mjs +336 -8
- package/dist/lib/commands/scaffold.mjs +419 -54
- package/dist/lib/commands/scan.mjs +1118 -5
- package/dist/lib/commands/scout.mjs +291 -2
- package/dist/lib/commands/setup.mjs +310 -5
- package/dist/lib/commands/share.mjs +196 -13
- package/dist/lib/commands/snapshot.mjs +383 -3
- package/dist/lib/commands/stability.mjs +293 -2
- package/dist/lib/commands/stats.mjs +402 -0
- package/dist/lib/commands/status.mjs +172 -4
- package/dist/lib/commands/suggest.mjs +563 -21
- package/dist/lib/commands/switch.mjs +310 -9
- package/dist/lib/commands/syncAuto.mjs +96 -1
- package/dist/lib/commands/synthesize.mjs +228 -10
- package/dist/lib/commands/teamSync.mjs +388 -2
- package/dist/lib/commands/test.mjs +363 -6
- package/dist/lib/commands/theme.mjs +195 -18
- package/dist/lib/commands/uninstall.mjs +375 -0
- package/dist/lib/commands/upgrade.mjs +153 -0
- package/dist/lib/commands/version.mjs +282 -2
- package/dist/lib/commands/vibe.mjs +357 -7
- package/dist/lib/commands/watch.mjs +203 -4
- package/dist/lib/commands/why.mjs +358 -4
- package/dist/lib/cursorHooksInstall.mjs +60 -1
- package/dist/lib/draftToolingInstall.mjs +68 -7
- package/dist/lib/git/detect-drift.mjs +208 -4
- package/dist/lib/learning/adapt.mjs +101 -6
- package/dist/lib/learning/observe.mjs +119 -1
- package/dist/lib/learning/patternDetector.mjs +298 -1
- package/dist/lib/learning/profile.mjs +279 -2
- package/dist/lib/learning/skillSynthesizer.mjs +145 -24
- package/dist/lib/templates/index.mjs +131 -1
- package/dist/lib/theme/scanner.mjs +343 -4
- package/dist/lib/ui/errors.mjs +142 -1
- package/dist/lib/ui/output.mjs +72 -6
- package/dist/lib/ui/prompts.mjs +147 -6
- package/dist/lib/vsCodeCopilotHooksInstall.mjs +42 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,11 +1,37 @@
|
|
|
1
1
|
# 🔥 infernoflow
|
|
2
|
-
>
|
|
2
|
+
> Persistent memory for AI coding sessions — captures what agents can't infer from code alone.
|
|
3
3
|
|
|
4
|
-
|
|
4
|
+
AI agents forget everything between sessions. They repeat mistakes you already fixed, ignore decisions you already made, and miss landmines that burned you last week. infernoflow gives every agent a memory that persists.
|
|
5
5
|
|
|
6
|
-
|
|
6
|
+
Works standalone in any terminal, as a VS Code extension, and as an MCP server inside Claude Code, Cursor, and GitHub Copilot — silently and automatically.
|
|
7
7
|
|
|
8
|
-
|
|
8
|
+
---
|
|
9
|
+
|
|
10
|
+
## The problem
|
|
11
|
+
|
|
12
|
+
Every time you start a new AI session, the agent starts cold. It doesn't know:
|
|
13
|
+
- The gotcha you discovered last Tuesday (don't use X, it breaks Y)
|
|
14
|
+
- The approach you tried and abandoned (3 hours down the drain)
|
|
15
|
+
- The design decisions your team made (we use Tailwind, never inline styles)
|
|
16
|
+
- What you were working on when you handed off to a different agent
|
|
17
|
+
|
|
18
|
+
So you tell it again. And again. And it still misses things.
|
|
19
|
+
|
|
20
|
+
## The solution
|
|
21
|
+
|
|
22
|
+
infernoflow keeps a memory file — `inferno/sessions.jsonl` — that travels with the project. It captures gotchas, decisions, failed attempts, and preferences in real time. Every AI agent that opens this project reads the memory first.
|
|
23
|
+
|
|
24
|
+
```bash
|
|
25
|
+
infernoflow log "don't use bcrypt v3 — breaks on Windows" --type gotcha
|
|
26
|
+
infernoflow log "decided to use server actions over API routes" --type decision
|
|
27
|
+
infernoflow log "tried react-query for this, performance was worse" --type attempt --result failed
|
|
28
|
+
```
|
|
29
|
+
|
|
30
|
+
When you switch agents or start a new session, `infernoflow switch` generates a handoff summary — all the gotchas, decisions, and failed attempts for this session — formatted for pasting at the start of the next chat.
|
|
31
|
+
|
|
32
|
+
When you're wrapping up, `infernoflow recap` shows your session health score: what you captured, what git changes weren't logged, and a nudge to capture the last landmines before you go.
|
|
33
|
+
|
|
34
|
+
---
|
|
9
35
|
|
|
10
36
|
## Install
|
|
11
37
|
|
|
@@ -19,78 +45,158 @@ npm install -g infernoflow
|
|
|
19
45
|
# Initialize infernoflow in your project
|
|
20
46
|
infernoflow init
|
|
21
47
|
|
|
22
|
-
#
|
|
23
|
-
infernoflow
|
|
48
|
+
# Log something you just discovered
|
|
49
|
+
infernoflow log "auth token expires in 15 min, not 1h — caught us off-guard" --type gotcha
|
|
24
50
|
|
|
25
|
-
#
|
|
26
|
-
infernoflow
|
|
51
|
+
# Query what's in memory before starting work
|
|
52
|
+
infernoflow ask "auth"
|
|
53
|
+
|
|
54
|
+
# At end of session — see what's captured and what isn't
|
|
55
|
+
infernoflow recap
|
|
27
56
|
|
|
28
|
-
#
|
|
29
|
-
infernoflow
|
|
57
|
+
# Hand off to a new agent — generates a briefing to paste at session start
|
|
58
|
+
infernoflow switch
|
|
59
|
+
|
|
60
|
+
# Set up MCP server (Cursor / Claude Code) for automatic memory use
|
|
61
|
+
infernoflow setup --yes
|
|
30
62
|
```
|
|
31
63
|
|
|
32
64
|
---
|
|
33
65
|
|
|
34
|
-
##
|
|
66
|
+
## Session memory commands
|
|
35
67
|
|
|
36
|
-
|
|
68
|
+
| Command | What it does |
|
|
69
|
+
|---|---|
|
|
70
|
+
| `infernoflow log "..." --type gotcha` | Log a landmine — things that will burn the next agent |
|
|
71
|
+
| `infernoflow log "..." --type decision` | Record a design decision and why |
|
|
72
|
+
| `infernoflow log "..." --type attempt --result failed` | "Don't repeat this" |
|
|
73
|
+
| `infernoflow log "..." --type preference` | Developer habits the agent should match |
|
|
74
|
+
| `infernoflow ask "keyword"` | Search memory — gotchas surface first |
|
|
75
|
+
| `infernoflow ask --recent` | What was logged in the last session |
|
|
76
|
+
| `infernoflow recap` | Session summary + health score + unlogged git changes |
|
|
77
|
+
| `infernoflow switch` | Handoff briefing for the next AI agent |
|
|
78
|
+
| `infernoflow stats` | Value dashboard — entries, token savings, coverage |
|
|
79
|
+
|
|
80
|
+
### Log types
|
|
81
|
+
|
|
82
|
+
| Type | Icon | Purpose | Token value |
|
|
83
|
+
|---|---|---|---|
|
|
84
|
+
| `gotcha` | ⚠ | Landmines, unexpected behavior, "don't do X" | Highest |
|
|
85
|
+
| `decision` | ✓ | Architecture and design choices made | High |
|
|
86
|
+
| `attempt` | ↺ | Approaches tried — especially failures | Medium |
|
|
87
|
+
| `preference` | ♦ | Code style, tools, naming conventions | Medium |
|
|
88
|
+
| `theme` | ◈ | Design system changes — colors, fonts, tokens | Medium |
|
|
89
|
+
| `note` | · | General notes | Low |
|
|
90
|
+
|
|
91
|
+
---
|
|
92
|
+
|
|
93
|
+
## MCP integration — fully automatic memory
|
|
94
|
+
|
|
95
|
+
After `infernoflow setup --yes`, infernoflow runs as an MCP server inside Claude Code and Cursor. Agents call infernoflow tools automatically — the developer never has to think about it.
|
|
37
96
|
|
|
38
97
|
```bash
|
|
39
|
-
infernoflow
|
|
40
|
-
infernoflow
|
|
41
|
-
infernoflow
|
|
42
|
-
infernoflow ai clear # remove a provider's key
|
|
98
|
+
infernoflow setup --yes # Claude Code / Cursor
|
|
99
|
+
infernoflow install-cursor-hooks # Cursor only
|
|
100
|
+
infernoflow install-vscode-copilot-hooks # VS Code + Copilot
|
|
43
101
|
```
|
|
44
102
|
|
|
45
|
-
|
|
103
|
+
### How it works in practice
|
|
46
104
|
|
|
47
|
-
|
|
105
|
+
```
|
|
106
|
+
You: "add search to the task list"
|
|
107
|
+
Claude: [calls infernoflow_ask "search" — finds gotcha: "avoid full-text search on tasks table, perf issues"]
|
|
108
|
+
Claude: "One note before I start — previous attempt at full-text search hit perf issues. I'll use..."
|
|
109
|
+
Claude: [writes code, calls infernoflow_suggest → contract updated silently]
|
|
110
|
+
```
|
|
111
|
+
|
|
112
|
+
### MCP tools
|
|
113
|
+
|
|
114
|
+
| Tool | When it fires | What it does |
|
|
48
115
|
|---|---|---|
|
|
49
|
-
|
|
|
50
|
-
|
|
|
51
|
-
|
|
|
52
|
-
|
|
|
53
|
-
|
|
|
116
|
+
| `infernoflow_status` | Session start | Contract health snapshot |
|
|
117
|
+
| `infernoflow_context` | Session start | Load full project state into AI context |
|
|
118
|
+
| `infernoflow_ask` | Before any implementation | Search memory for gotchas, decisions, failed attempts |
|
|
119
|
+
| `infernoflow_implement` | Before writing code | Generate structured implementation plan |
|
|
120
|
+
| `infernoflow_suggest` | After code changes | Update capability contract silently |
|
|
121
|
+
| `infernoflow_check` | Session end | Validate contract sync |
|
|
122
|
+
| `infernoflow_recap` | Session end | Show unlogged topics, nudge for gotchas |
|
|
123
|
+
| `infernoflow_review` | Pre-push / PR | Check capability drift risk |
|
|
124
|
+
| `infernoflow_synthesize` | Every ~5 sessions | Detect repeating workflows, suggest agents |
|
|
125
|
+
| `infernoflow_log` | Anytime | Log a memory entry directly from chat |
|
|
126
|
+
| `infernoflow_switch` | Agent handoff | Generate handoff briefing |
|
|
127
|
+
| `infernoflow_scan` | On request | Deep code scan — route discovery, entry points |
|
|
128
|
+
| `infernoflow_stats` | On request | Memory + value dashboard |
|
|
54
129
|
|
|
55
|
-
|
|
130
|
+
---
|
|
131
|
+
|
|
132
|
+
## Session recap
|
|
133
|
+
|
|
134
|
+
`infernoflow recap` gives you a D-to-A session health score at the end of every session.
|
|
135
|
+
|
|
136
|
+
```
|
|
137
|
+
🔥 infernoflow recap
|
|
138
|
+
Session since: 27 Apr, 09:15
|
|
139
|
+
|
|
140
|
+
Captured this session
|
|
141
|
+
|
|
142
|
+
⚠ gotcha (2h ago)
|
|
143
|
+
don't use bcrypt v3 — breaks on Windows ARM
|
|
144
|
+
|
|
145
|
+
✓ decision (1h ago)
|
|
146
|
+
using server actions over API routes — simpler auth context
|
|
147
|
+
|
|
148
|
+
─────────────────────────────────────────────────
|
|
149
|
+
|
|
150
|
+
Changed but not logged (git diff since session start)
|
|
151
|
+
|
|
152
|
+
? database
|
|
153
|
+
prisma/migrations/20260427_add_tokens.sql
|
|
154
|
+
src/lib/db.ts
|
|
155
|
+
|
|
156
|
+
Any gotchas or decisions from these areas worth capturing?
|
|
157
|
+
|
|
158
|
+
─────────────────────────────────────────────────
|
|
159
|
+
|
|
160
|
+
Session health
|
|
161
|
+
|
|
162
|
+
B 72/100
|
|
163
|
+
|
|
164
|
+
✔ 2 entries logged
|
|
165
|
+
✔ gotchas captured
|
|
166
|
+
· no decisions recorded
|
|
167
|
+
```
|
|
56
168
|
|
|
57
169
|
---
|
|
58
170
|
|
|
59
|
-
##
|
|
171
|
+
## Handoff between agents
|
|
60
172
|
|
|
61
|
-
|
|
173
|
+
`infernoflow switch` builds a handoff briefing — all gotchas, decisions, and failed attempts from the current session — formatted to paste at the start of the next AI chat.
|
|
62
174
|
|
|
63
175
|
```bash
|
|
64
|
-
infernoflow
|
|
65
|
-
infernoflow
|
|
66
|
-
infernoflow
|
|
176
|
+
infernoflow switch # generate inferno/HANDOFF.md
|
|
177
|
+
infernoflow switch --copy # copy to clipboard
|
|
178
|
+
infernoflow switch --to cursor # label it for the next agent
|
|
179
|
+
infernoflow switch --all # include all-time memory, not just this session
|
|
67
180
|
```
|
|
68
181
|
|
|
69
|
-
|
|
182
|
+
The generated briefing puts gotchas first — the most critical things the next agent needs to know — before any capability context or design system info.
|
|
70
183
|
|
|
71
|
-
|
|
72
|
-
|---|---|
|
|
73
|
-
| `infernoflow_status` | Contract health snapshot |
|
|
74
|
-
| `infernoflow_context` | Load full project state into AI context |
|
|
75
|
-
| `infernoflow_suggest` | Update capability contract from a description |
|
|
76
|
-
| `infernoflow_apply` | Apply a JSON suggestion — updates contract + CHANGELOG |
|
|
77
|
-
| `infernoflow_check` | Validate contract sync |
|
|
78
|
-
| `infernoflow_implement` | Generate a structured implementation plan |
|
|
79
|
-
| `infernoflow_review` | Check for capability drift risk |
|
|
80
|
-
| `infernoflow_synthesize` | Detect repeating workflows and turn them into agents |
|
|
81
|
-
| `infernoflow_version` | Recommend semver bump based on capability changes |
|
|
82
|
-
| `infernoflow_git_drift` | Detect drift between git commits and contract |
|
|
83
|
-
|
|
84
|
-
### How it works in Claude Code
|
|
184
|
+
---
|
|
85
185
|
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
186
|
+
## Capability contract (what was here before)
|
|
187
|
+
|
|
188
|
+
infernoflow also tracks your project's capabilities — what the system actually does — and keeps contracts, changelogs, and docs in sync automatically as code changes. This is the original infernoflow feature.
|
|
189
|
+
|
|
190
|
+
```bash
|
|
191
|
+
infernoflow check # validate contract + capabilities
|
|
192
|
+
infernoflow scan # detect capabilities from source code
|
|
193
|
+
infernoflow suggest # AI-powered contract update
|
|
194
|
+
infernoflow status # contract health at a glance
|
|
195
|
+
infernoflow diff # what changed since last tag
|
|
92
196
|
```
|
|
93
197
|
|
|
198
|
+
The memory layer (log, ask, recap, switch) and the capability layer (check, scan, suggest, contract) work together — scan detects what you built, memory records the gotchas you hit while building it.
|
|
199
|
+
|
|
94
200
|
---
|
|
95
201
|
|
|
96
202
|
## VS Code Extension
|
|
@@ -98,78 +204,92 @@ Claude: [calls infernoflow_suggest → contract updated silently]
|
|
|
98
204
|
Install `infernoflow-X.X.X.vsix` from the `vscode-extension/` folder in the repo.
|
|
99
205
|
|
|
100
206
|
**What the extension does:**
|
|
101
|
-
- **Status bar** — permanent `🔥 infernoflow: 12 caps ✓` badge
|
|
102
|
-
- **Save-triggered sync** — when you save a source file
|
|
103
|
-
- **Drift notification** — if check finds issues after a save, a one-time warning appears
|
|
104
|
-
- **
|
|
105
|
-
- **
|
|
106
|
-
|
|
107
|
-
|
|
207
|
+
- **Status bar** — permanent `🔥 infernoflow: 12 caps ✓` badge with quick actions menu
|
|
208
|
+
- **Save-triggered sync** — when you save a mapped source file, infernoflow runs `suggest` + `check` in the background (3s debounce). Zero manual steps.
|
|
209
|
+
- **Drift notification** — if check finds issues after a save, a one-time warning appears
|
|
210
|
+
- **Sidebar panels** — Capabilities, Scenarios, Changelog, Agents tree views
|
|
211
|
+
- **AI review** — uses Claude Code / Copilot model directly, no extra key needed
|
|
212
|
+
|
|
213
|
+
---
|
|
214
|
+
|
|
215
|
+
## AI Provider Setup
|
|
216
|
+
|
|
217
|
+
infernoflow uses AI for `explain`, `why`, `review`, `changelog ai`, and auto contract sync.
|
|
218
|
+
|
|
219
|
+
```bash
|
|
220
|
+
infernoflow ai setup # interactive numbered menu
|
|
221
|
+
infernoflow ai status # show configured providers
|
|
222
|
+
infernoflow ai test # test AI connection
|
|
223
|
+
```
|
|
224
|
+
|
|
225
|
+
Supported providers — no API key needed for Ollama:
|
|
226
|
+
|
|
227
|
+
| Provider | Env variable | Default model |
|
|
228
|
+
|---|---|---|
|
|
229
|
+
| Anthropic (Claude) | `ANTHROPIC_API_KEY` | claude-sonnet-4-6 |
|
|
230
|
+
| OpenAI (GPT) | `OPENAI_API_KEY` | gpt-4o |
|
|
231
|
+
| Google Gemini | `GOOGLE_AI_API_KEY` | gemini-2.0-flash |
|
|
232
|
+
| OpenRouter | `OPENROUTER_API_KEY` | any model |
|
|
233
|
+
| Ollama (local) | — | llama3.2 |
|
|
234
|
+
|
|
235
|
+
If you have **Claude Code for VS Code** or **GitHub Copilot**, infernoflow picks up the active model automatically — no API key required.
|
|
108
236
|
|
|
109
237
|
---
|
|
110
238
|
|
|
111
|
-
##
|
|
239
|
+
## All commands
|
|
112
240
|
|
|
113
|
-
###
|
|
241
|
+
### Memory
|
|
242
|
+
| Command | Description |
|
|
243
|
+
|---|---|
|
|
244
|
+
| `infernoflow log "..." --type <type>` | Append to session memory |
|
|
245
|
+
| `infernoflow ask "keyword"` | Search memory by topic — gotchas first |
|
|
246
|
+
| `infernoflow recap` | End-of-session summary + health score |
|
|
247
|
+
| `infernoflow switch` | Handoff briefing for the next AI agent |
|
|
248
|
+
| `infernoflow stats` | Memory value dashboard |
|
|
249
|
+
| `infernoflow theme` | Scan + record design system (colors, fonts, tokens) |
|
|
250
|
+
|
|
251
|
+
### Contract
|
|
114
252
|
| Command | Description |
|
|
115
253
|
|---|---|
|
|
116
254
|
| `infernoflow init` | Scaffold `inferno/` in your project |
|
|
117
255
|
| `infernoflow status` | Contract health at a glance |
|
|
118
256
|
| `infernoflow check` | Full contract validation |
|
|
119
|
-
| `infernoflow
|
|
120
|
-
| `infernoflow
|
|
257
|
+
| `infernoflow suggest "what changed"` | AI-powered contract update |
|
|
258
|
+
| `infernoflow scan` | AST scan — detect capabilities from code |
|
|
259
|
+
| `infernoflow diff` | Capability changes since last tag |
|
|
260
|
+
| `infernoflow stability` | Frozen / stable / experimental markers |
|
|
121
261
|
|
|
122
|
-
###
|
|
262
|
+
### Intelligence
|
|
123
263
|
| Command | Description |
|
|
124
264
|
|---|---|
|
|
125
|
-
| `infernoflow ai setup` | Interactive AI provider setup |
|
|
126
|
-
| `infernoflow ai status` | Show configured providers |
|
|
127
|
-
| `infernoflow ai test` | Test AI connection |
|
|
128
|
-
| `infernoflow suggest "what changed"` | AI-powered contract update |
|
|
129
265
|
| `infernoflow explain src/auth.ts` | Explain a file's capabilities |
|
|
130
|
-
| `infernoflow why src/auth.ts` | Map file
|
|
266
|
+
| `infernoflow why src/auth.ts` | Map file → contract capabilities |
|
|
131
267
|
| `infernoflow review` | AI review of staged changes |
|
|
132
|
-
| `infernoflow changelog ai` | AI-generated changelog entry |
|
|
133
|
-
|
|
134
|
-
### Code Intelligence
|
|
135
|
-
| Command | Description |
|
|
136
|
-
|---|---|
|
|
137
|
-
| `infernoflow scan` | AST scan — detect capabilities from code |
|
|
138
268
|
| `infernoflow graph` | Capability dependency graph |
|
|
139
269
|
| `infernoflow impact` | Blast radius of a change |
|
|
140
270
|
| `infernoflow coverage` | Map test files to capabilities |
|
|
141
|
-
| `infernoflow stability` | Show frozen/stable/experimental capabilities |
|
|
142
|
-
| `infernoflow freeze <cap>` | Lock a capability (prevents accidental changes) |
|
|
143
271
|
|
|
144
272
|
### Workflow
|
|
145
273
|
| Command | Description |
|
|
146
274
|
|---|---|
|
|
147
|
-
| `infernoflow watch` | Auto-run suggest on every file save |
|
|
148
|
-
| `infernoflow run` | One-command detect → propose → apply flow |
|
|
149
275
|
| `infernoflow implement "task"` | Generate a structured coding plan |
|
|
150
276
|
| `infernoflow context` | Build AI session context file |
|
|
151
|
-
| `infernoflow
|
|
277
|
+
| `infernoflow watch` | Auto-run suggest on every file save |
|
|
278
|
+
| `infernoflow synthesize` | Detect repeating workflows → auto-agents |
|
|
152
279
|
| `infernoflow version` | Recommend semver bump |
|
|
153
280
|
| `infernoflow changelog update` | Draft Unreleased section from commits |
|
|
154
281
|
|
|
155
282
|
### Ops
|
|
156
283
|
| Command | Description |
|
|
157
284
|
|---|---|
|
|
285
|
+
| `infernoflow doctor` | Full diagnostic with auto-fix suggestions |
|
|
286
|
+
| `infernoflow setup --yes` | Install MCP server, CLAUDE.md, git hooks |
|
|
158
287
|
| `infernoflow ci` | CI/CD integration helper |
|
|
159
|
-
| `infernoflow report` | Generate capability report |
|
|
160
|
-
| `infernoflow snapshot save <name>` | Save a contract snapshot |
|
|
161
|
-
| `infernoflow export` | Export contract to various formats |
|
|
162
288
|
| `infernoflow audit` | Security audit of capabilities |
|
|
163
289
|
| `infernoflow health` | Health score (0–100) |
|
|
290
|
+
| `infernoflow export` | Export contract to OpenAPI / CSV / Markdown |
|
|
164
291
|
| `infernoflow demo` | Narrated 7-step walkthrough |
|
|
165
292
|
|
|
166
|
-
### Agents
|
|
167
|
-
| Command | Description |
|
|
168
|
-
|---|---|
|
|
169
|
-
| `infernoflow synthesize` | Detect repeating workflows → auto-agents |
|
|
170
|
-
| `infernoflow agent run <name>` | Run a synthesized agent |
|
|
171
|
-
| `infernoflow test` | Run capability scenario tests |
|
|
172
|
-
|
|
173
293
|
---
|
|
174
294
|
|
|
175
295
|
## CI Integration
|
|
@@ -184,34 +304,6 @@ Install `infernoflow-X.X.X.vsix` from the `vscode-extension/` folder in the repo
|
|
|
184
304
|
|
|
185
305
|
---
|
|
186
306
|
|
|
187
|
-
## Watch Mode
|
|
188
|
-
|
|
189
|
-
Zero-effort contract sync while you code:
|
|
190
|
-
|
|
191
|
-
```bash
|
|
192
|
-
infernoflow watch # watches src/ (auto-detected)
|
|
193
|
-
infernoflow watch src lib # watch specific directories
|
|
194
|
-
infernoflow watch --interval 5 # 5s debounce
|
|
195
|
-
```
|
|
196
|
-
|
|
197
|
-
On every source file save, infernoflow checks if the file is mapped to any capabilities, runs `suggest` silently, and logs any issues to `inferno/WATCH.log`.
|
|
198
|
-
|
|
199
|
-
---
|
|
200
|
-
|
|
201
|
-
## Stability Markers
|
|
202
|
-
|
|
203
|
-
Tag capabilities as frozen, stable, or experimental:
|
|
204
|
-
|
|
205
|
-
```bash
|
|
206
|
-
infernoflow freeze auth-login # lock — no changes allowed
|
|
207
|
-
infernoflow thaw auth-login # unlock
|
|
208
|
-
infernoflow stability # view all markers
|
|
209
|
-
```
|
|
210
|
-
|
|
211
|
-
Frozen capabilities are protected from accidental contract changes.
|
|
212
|
-
|
|
213
|
-
---
|
|
214
|
-
|
|
215
307
|
## Troubleshooting
|
|
216
308
|
|
|
217
309
|
| Problem | Fix |
|
|
@@ -225,9 +317,5 @@ Frozen capabilities are protected from accidental contract changes.
|
|
|
225
317
|
|
|
226
318
|
---
|
|
227
319
|
|
|
228
|
-
## Why infernoflow?
|
|
229
|
-
|
|
230
|
-
AI-assisted development moves fast. Code changes daily. But what does the system *actually do*? infernoflow keeps the answer current — automatically, invisibly, without interrupting the developer.
|
|
231
|
-
|
|
232
320
|
## License
|
|
233
321
|
MIT
|