infynon 0.2.0 → 0.2.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 +134 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,5 +1,137 @@
|
|
|
1
1
|
# infynon
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
INFYNON is a security-first CLI for package intelligence, API flow testing, and repository memory.
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
This npm package is the official installer wrapper for the INFYNON native binary. It does not contain the Rust source code. During installation, it downloads the matching prebuilt binary from the official GitHub Releases page.
|
|
6
|
+
|
|
7
|
+
## Why Install INFYNON
|
|
8
|
+
|
|
9
|
+
INFYNON is built for teams that need one terminal tool for three connected workflows:
|
|
10
|
+
|
|
11
|
+
| Workflow | Command Area | Purpose |
|
|
12
|
+
|---|---|---|
|
|
13
|
+
| Package intelligence | `infynon pkg` | Scan dependencies, inspect risk, audit package changes, and support safer install workflows. |
|
|
14
|
+
| API flow testing | `infynon weave` | Run multi-step API flows with context passed between requests. |
|
|
15
|
+
| Repository memory | `infynon trace` | Preserve structured handoff notes, branch context, package ownership, and repo memory. |
|
|
16
|
+
|
|
17
|
+
## Install
|
|
18
|
+
|
|
19
|
+
```bash
|
|
20
|
+
npm install -g infynon
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
The installer downloads the binary for the current platform and makes `infynon` available through npm's global binary directory.
|
|
24
|
+
|
|
25
|
+
## Supported Platforms
|
|
26
|
+
|
|
27
|
+
- Windows x64
|
|
28
|
+
- Linux x64
|
|
29
|
+
- Linux arm64
|
|
30
|
+
- macOS x64
|
|
31
|
+
- macOS arm64
|
|
32
|
+
|
|
33
|
+
Unsupported platforms can still install the npm wrapper, but the wrapper will not be able to download a native binary until a matching release asset exists.
|
|
34
|
+
|
|
35
|
+
## Quick Start
|
|
36
|
+
|
|
37
|
+
```bash
|
|
38
|
+
infynon --help
|
|
39
|
+
infynon pkg scan
|
|
40
|
+
infynon pkg audit
|
|
41
|
+
infynon weave flow run checkout
|
|
42
|
+
infynon trace tui
|
|
43
|
+
```
|
|
44
|
+
|
|
45
|
+
## Package Intelligence
|
|
46
|
+
|
|
47
|
+
Use `infynon pkg` to inspect dependency risk and package state.
|
|
48
|
+
|
|
49
|
+
```bash
|
|
50
|
+
infynon pkg scan
|
|
51
|
+
infynon pkg audit
|
|
52
|
+
infynon pkg explain serde_json
|
|
53
|
+
```
|
|
54
|
+
|
|
55
|
+
Good fit:
|
|
56
|
+
|
|
57
|
+
- reviewing dependency changes
|
|
58
|
+
- scanning a project before merging
|
|
59
|
+
- understanding why a package exists
|
|
60
|
+
- adding package security checks to local workflows
|
|
61
|
+
|
|
62
|
+
## API Flow Testing
|
|
63
|
+
|
|
64
|
+
Use `infynon weave` when API behavior depends on multiple connected requests.
|
|
65
|
+
|
|
66
|
+
```bash
|
|
67
|
+
infynon weave env set BASE_URL http://localhost:8001
|
|
68
|
+
infynon weave flow run checkout
|
|
69
|
+
```
|
|
70
|
+
|
|
71
|
+
Good fit:
|
|
72
|
+
|
|
73
|
+
- login-then-action API workflows
|
|
74
|
+
- stateful API validation
|
|
75
|
+
- terminal-first flow execution
|
|
76
|
+
- CI-friendly API checks
|
|
77
|
+
|
|
78
|
+
## Repository Memory
|
|
79
|
+
|
|
80
|
+
Use `infynon trace` to preserve context that usually disappears into chat, PR comments, or local notes.
|
|
81
|
+
|
|
82
|
+
```bash
|
|
83
|
+
infynon trace init
|
|
84
|
+
infynon trace note add repo-handoff --title "Auth changed" --body "Refresh moved into middleware"
|
|
85
|
+
infynon trace tui
|
|
86
|
+
```
|
|
87
|
+
|
|
88
|
+
Good fit:
|
|
89
|
+
|
|
90
|
+
- branch handoffs
|
|
91
|
+
- package ownership context
|
|
92
|
+
- team notes
|
|
93
|
+
- AI-assisted coding sessions that need durable memory
|
|
94
|
+
|
|
95
|
+
## Alternative Install Methods
|
|
96
|
+
|
|
97
|
+
GitHub Releases:
|
|
98
|
+
|
|
99
|
+
```text
|
|
100
|
+
https://github.com/d4rkNinja/infynon-cli/releases
|
|
101
|
+
```
|
|
102
|
+
|
|
103
|
+
macOS and Linux:
|
|
104
|
+
|
|
105
|
+
```bash
|
|
106
|
+
curl -fsSL https://raw.githubusercontent.com/d4rkNinja/infynon-cli/main/install.sh | bash
|
|
107
|
+
```
|
|
108
|
+
|
|
109
|
+
Windows:
|
|
110
|
+
|
|
111
|
+
```powershell
|
|
112
|
+
iwr https://raw.githubusercontent.com/d4rkNinja/infynon-cli/main/install.ps1 -useb | iex
|
|
113
|
+
```
|
|
114
|
+
|
|
115
|
+
Go wrapper:
|
|
116
|
+
|
|
117
|
+
```bash
|
|
118
|
+
go install github.com/d4rkNinja/infynon-cli/go/cmd/infynon@latest
|
|
119
|
+
```
|
|
120
|
+
|
|
121
|
+
## Verification
|
|
122
|
+
|
|
123
|
+
GitHub Releases include `checksums.txt` for SHA-256 verification.
|
|
124
|
+
|
|
125
|
+
```text
|
|
126
|
+
https://github.com/d4rkNinja/infynon-cli/releases
|
|
127
|
+
```
|
|
128
|
+
|
|
129
|
+
## Documentation
|
|
130
|
+
|
|
131
|
+
- Public docs: https://github.com/d4rkNinja/infynon-cli/tree/main/docs
|
|
132
|
+
- Releases: https://github.com/d4rkNinja/infynon-cli/releases
|
|
133
|
+
- Issues: https://github.com/d4rkNinja/infynon-cli/issues
|
|
134
|
+
|
|
135
|
+
## Source Availability
|
|
136
|
+
|
|
137
|
+
This npm package distributes the INFYNON binary and installer wrapper only. The Rust source code is proprietary and is not bundled in this package.
|