infynon 0.2.0-beta.8.4 → 0.2.0-beta.9

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/README.md +18 -0
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -17,12 +17,22 @@ Claude Code companion: [d4rkNinja/code-guardian](https://github.com/d4rkNinja/co
17
17
 
18
18
  ## Install
19
19
 
20
+ ### npm (recommended)
21
+
20
22
  ```bash
21
23
  npm install -g infynon
22
24
  ```
23
25
 
24
26
  This package downloads the matching native binary for your OS and architecture.
25
27
 
28
+ ### Other install methods
29
+
30
+ ```bash
31
+ cargo install infynon # Rust (crates.io)
32
+ go install github.com/d4rkNinja/infynon-cli/go@latest # Go
33
+ curl -fsSL https://raw.githubusercontent.com/d4rkNinja/infynon-cli/main/scripts/install.sh | bash # Linux/macOS
34
+ ```
35
+
26
36
  ## Good Fit For
27
37
 
28
38
  - teams doing AI-assisted or high-speed coding
@@ -112,6 +122,10 @@ Use this when the problem is repo memory, handoff context, and package provenanc
112
122
  - package notes that identify who introduced a compromised dependency
113
123
  - sync, retrieve, compact, and TUI inspection
114
124
  - designed to pair with the `code-guardian` Claude Code companion
125
+ - branch-wise knowledge graph with auto-build from git history
126
+ - graph queries: path finding, impact analysis, orphan detection, branch diff
127
+ - export to JSON and Graphviz DOT
128
+ - interactive graph TUI with entity/edge editing and branch switching
115
129
 
116
130
  ```bash
117
131
  infynon trace init --owner team --user alien
@@ -119,6 +133,9 @@ infynon trace source add-sql team-db --engine sqlite --url sqlite://.infynon/tra
119
133
  infynon trace note add repo-handoff --title "Auth changed" --body "Refresh moved into middleware"
120
134
  infynon trace sync --direction both
121
135
  infynon trace tui
136
+ infynon trace graph build
137
+ infynon trace graph show --branch main
138
+ infynon trace graph tui
122
139
  ```
123
140
 
124
141
  Claude Code companion:
@@ -167,6 +184,7 @@ Claude Code companion:
167
184
  | Claude Code native integration | ✓ | — | ~ MCP | — | ~ |
168
185
  | Structured retrieval by scope | ✓ | — | — | — | — |
169
186
  | Bidirectional sync via CLI | ✓ | — | ~ | ~ | ✓ |
187
+ | Branch-wise knowledge graph | ✓ | — | — | — | — |
170
188
 
171
189
  `✓` = supported · `~` = partial or limited · `—` = not supported
172
190
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "infynon",
3
- "version": "0.2.0-beta.8.4",
3
+ "version": "0.2.0-beta.9",
4
4
  "description": "Security CLI for developers: scan npm/pip/cargo installs for CVEs before execution, self-hosted reverse proxy WAF with TUI, and API flow security testing across 14 ecosystems.",
5
5
  "bin": {
6
6
  "infynon": "./run.js",