infernoflow 0.34.1 → 0.35.4
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/dist/bin/infernoflow.mjs +50 -5
- package/dist/lib/commands/cloud.mjs +261 -9
- package/dist/lib/commands/feedback.mjs +168 -0
- package/dist/lib/commands/log.mjs +32 -12
- package/dist/lib/commands/setup.mjs +1 -1
- package/dist/lib/commands/switch.mjs +200 -32
- package/dist/lib/commands/uninstall.mjs +51 -20
- package/dist/lib/telemetry.mjs +194 -0
- package/dist/templates/git-hooks/post-commit +22 -2
- package/dist/templates/git-hooks/pre-stash +23 -0
- package/package.json +21 -9
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
#!/usr/bin/env sh
|
|
2
|
+
# infernoflow pre-stash hook
|
|
3
|
+
# Auto-logs a stash as an attempt entry in session memory.
|
|
4
|
+
# Runs silently — never blocks your workflow.
|
|
5
|
+
#
|
|
6
|
+
# Managed by infernoflow. Re-run `infernoflow setup` to regenerate.
|
|
7
|
+
# Note: pre-stash requires git 2.32+
|
|
8
|
+
|
|
9
|
+
# Bail silently if infernoflow isn't installed
|
|
10
|
+
command -v npx >/dev/null 2>&1 || exit 0
|
|
11
|
+
|
|
12
|
+
# Only run inside an inferno-enabled project
|
|
13
|
+
[ -d "$(git rev-parse --show-toplevel)/inferno" ] || exit 0
|
|
14
|
+
|
|
15
|
+
TOPLEVEL="$(git rev-parse --show-toplevel)"
|
|
16
|
+
STASH_MSG="${1:-stash}"
|
|
17
|
+
|
|
18
|
+
(
|
|
19
|
+
cd "$TOPLEVEL" || exit 0
|
|
20
|
+
npx infernoflow log "stashed: $STASH_MSG" --type attempt --auto --quiet --source git-hook >/dev/null 2>&1
|
|
21
|
+
) &
|
|
22
|
+
|
|
23
|
+
exit 0
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "infernoflow",
|
|
3
|
-
"version": "0.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "0.35.4",
|
|
4
|
+
"description": "Persistent memory for AI coding sessions — captures what agents can't infer from code alone. Works with Copilot, Cursor, Claude, and Windsurf.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
7
7
|
"infernoflow": "dist/bin/infernoflow.mjs"
|
|
@@ -25,14 +25,26 @@
|
|
|
25
25
|
"inferno:promote-draft": "node scripts/inferno-promote-draft.mjs"
|
|
26
26
|
},
|
|
27
27
|
"keywords": [
|
|
28
|
-
"cli",
|
|
29
|
-
"capabilities",
|
|
30
|
-
"contract",
|
|
31
|
-
"documentation",
|
|
32
28
|
"ai",
|
|
33
|
-
"
|
|
34
|
-
"
|
|
35
|
-
"
|
|
29
|
+
"ai-memory",
|
|
30
|
+
"ai-context",
|
|
31
|
+
"ai-coding",
|
|
32
|
+
"session-memory",
|
|
33
|
+
"persistent-memory",
|
|
34
|
+
"agent-memory",
|
|
35
|
+
"agent-handoff",
|
|
36
|
+
"copilot",
|
|
37
|
+
"cursor",
|
|
38
|
+
"claude",
|
|
39
|
+
"windsurf",
|
|
40
|
+
"mcp",
|
|
41
|
+
"mcp-server",
|
|
42
|
+
"context-switching",
|
|
43
|
+
"developer-tools",
|
|
44
|
+
"cli",
|
|
45
|
+
"infernoflow",
|
|
46
|
+
"gotchas",
|
|
47
|
+
"coding-assistant"
|
|
36
48
|
],
|
|
37
49
|
"author": "infernoflow",
|
|
38
50
|
"license": "MIT",
|