infynon 0.2.0 → 0.2.2
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 +161 -2
- package/package.json +33 -34
package/README.md
CHANGED
|
@@ -1,5 +1,164 @@
|
|
|
1
1
|
# infynon
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
INFYNON is a security-first CLI for package intelligence, API flow testing, repository memory, and bounded AI task execution.
|
|
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 four 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
|
+
| Agent task contracts | `infynon task` | Turn vague AI work requests into GCCD task briefs with a goal, context, constraints, and completion criteria. |
|
|
17
|
+
|
|
18
|
+
## Install
|
|
19
|
+
|
|
20
|
+
```bash
|
|
21
|
+
npm install -g infynon
|
|
22
|
+
```
|
|
23
|
+
|
|
24
|
+
The installer downloads the binary for the current platform and makes `infynon` available through npm's global binary directory.
|
|
25
|
+
|
|
26
|
+
## Supported Platforms
|
|
27
|
+
|
|
28
|
+
- Windows x64
|
|
29
|
+
- Linux x64
|
|
30
|
+
- Linux arm64
|
|
31
|
+
- macOS x64
|
|
32
|
+
- macOS arm64
|
|
33
|
+
|
|
34
|
+
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.
|
|
35
|
+
|
|
36
|
+
## Quick Start
|
|
37
|
+
|
|
38
|
+
```bash
|
|
39
|
+
infynon --help
|
|
40
|
+
infynon pkg scan
|
|
41
|
+
infynon pkg audit
|
|
42
|
+
infynon weave flow run checkout
|
|
43
|
+
infynon trace tui
|
|
44
|
+
infynon task create task_001 --mutate --workspace . --prompt "Ship the settings API patch"
|
|
45
|
+
```
|
|
46
|
+
|
|
47
|
+
## Package Intelligence
|
|
48
|
+
|
|
49
|
+
Use `infynon pkg` to inspect dependency risk and package state.
|
|
50
|
+
|
|
51
|
+
```bash
|
|
52
|
+
infynon pkg scan
|
|
53
|
+
infynon pkg audit
|
|
54
|
+
infynon pkg explain serde_json
|
|
55
|
+
```
|
|
56
|
+
|
|
57
|
+
Good fit:
|
|
58
|
+
|
|
59
|
+
- reviewing dependency changes
|
|
60
|
+
- scanning a project before merging
|
|
61
|
+
- understanding why a package exists
|
|
62
|
+
- adding package security checks to local workflows
|
|
63
|
+
|
|
64
|
+
## API Flow Testing
|
|
65
|
+
|
|
66
|
+
Use `infynon weave` when API behavior depends on multiple connected requests.
|
|
67
|
+
|
|
68
|
+
```bash
|
|
69
|
+
infynon weave env set BASE_URL http://localhost:8001
|
|
70
|
+
infynon weave flow run checkout
|
|
71
|
+
```
|
|
72
|
+
|
|
73
|
+
Good fit:
|
|
74
|
+
|
|
75
|
+
- login-then-action API workflows
|
|
76
|
+
- stateful API validation
|
|
77
|
+
- terminal-first flow execution
|
|
78
|
+
- CI-friendly API checks
|
|
79
|
+
|
|
80
|
+
## Repository Memory
|
|
81
|
+
|
|
82
|
+
Use `infynon trace` to preserve context that usually disappears into chat, PR comments, or local notes.
|
|
83
|
+
|
|
84
|
+
```bash
|
|
85
|
+
infynon trace init
|
|
86
|
+
infynon trace note add repo-handoff --title "Auth changed" --body "Refresh moved into middleware"
|
|
87
|
+
infynon trace tui
|
|
88
|
+
```
|
|
89
|
+
|
|
90
|
+
Good fit:
|
|
91
|
+
|
|
92
|
+
- branch handoffs
|
|
93
|
+
- package ownership context
|
|
94
|
+
- team notes
|
|
95
|
+
- AI-assisted coding sessions that need durable memory
|
|
96
|
+
|
|
97
|
+
## Agent Task Contracts
|
|
98
|
+
|
|
99
|
+
Use `infynon task` when AI work needs a contract instead of a loose prompt. INFYNON uses GCCD:
|
|
100
|
+
|
|
101
|
+
- Goal: the outcome the task must produce
|
|
102
|
+
- Context: the project, files, APIs, or decisions the agent needs to know
|
|
103
|
+
- Constraints: boundaries the agent must respect
|
|
104
|
+
- Done When: the checks that prove the task is complete
|
|
105
|
+
|
|
106
|
+
```bash
|
|
107
|
+
infynon task create task_001 \
|
|
108
|
+
--mutate \
|
|
109
|
+
--workspace ./apps/web \
|
|
110
|
+
--agent codex \
|
|
111
|
+
--prompt "Build the settings page using existing UI components. Do not modify auth logic. Typecheck must pass."
|
|
112
|
+
```
|
|
113
|
+
|
|
114
|
+
Good fit:
|
|
115
|
+
|
|
116
|
+
- parent and child agent work
|
|
117
|
+
- scoped implementation tasks
|
|
118
|
+
- reviewable handoffs
|
|
119
|
+
- retries where completion criteria must stay intact
|
|
120
|
+
|
|
121
|
+
## Alternative Install Methods
|
|
122
|
+
|
|
123
|
+
GitHub Releases:
|
|
124
|
+
|
|
125
|
+
```text
|
|
126
|
+
https://github.com/d4rkNinja/infynon-cli/releases
|
|
127
|
+
```
|
|
128
|
+
|
|
129
|
+
macOS and Linux:
|
|
130
|
+
|
|
131
|
+
```bash
|
|
132
|
+
curl -fsSL https://raw.githubusercontent.com/d4rkNinja/infynon-cli/main/install.sh | bash
|
|
133
|
+
```
|
|
134
|
+
|
|
135
|
+
Windows:
|
|
136
|
+
|
|
137
|
+
```powershell
|
|
138
|
+
iwr https://raw.githubusercontent.com/d4rkNinja/infynon-cli/main/install.ps1 -useb | iex
|
|
139
|
+
```
|
|
140
|
+
|
|
141
|
+
Go wrapper:
|
|
142
|
+
|
|
143
|
+
```bash
|
|
144
|
+
go install github.com/d4rkNinja/infynon-cli/go/cmd/infynon@latest
|
|
145
|
+
```
|
|
146
|
+
|
|
147
|
+
## Verification
|
|
148
|
+
|
|
149
|
+
GitHub Releases include `checksums.txt` for SHA-256 verification.
|
|
150
|
+
|
|
151
|
+
```text
|
|
152
|
+
https://github.com/d4rkNinja/infynon-cli/releases
|
|
153
|
+
```
|
|
154
|
+
|
|
155
|
+
## Documentation
|
|
156
|
+
|
|
157
|
+
- Public docs: https://github.com/d4rkNinja/infynon-cli/tree/main/docs
|
|
158
|
+
- GCCD task contracts: https://github.com/d4rkNinja/infynon-cli/blob/main/docs/gccd.md
|
|
159
|
+
- Releases: https://github.com/d4rkNinja/infynon-cli/releases
|
|
160
|
+
- Issues: https://github.com/d4rkNinja/infynon-cli/issues
|
|
161
|
+
|
|
162
|
+
## Source Availability
|
|
163
|
+
|
|
164
|
+
This npm package distributes the INFYNON binary and installer wrapper only. The Rust source code is proprietary and is not bundled in this package.
|
package/package.json
CHANGED
|
@@ -1,36 +1,35 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
2
|
+
"name": "infynon",
|
|
3
|
+
"version": "0.2.2",
|
|
4
|
+
"description": "Thin npm installer for the proprietary INFYNON CLI binary releases.",
|
|
5
|
+
"bin": {
|
|
6
|
+
"infynon": "run.js",
|
|
7
|
+
"infynon-pkg": "run.js"
|
|
8
|
+
},
|
|
9
|
+
"scripts": {
|
|
10
|
+
"postinstall": "node postinstall.js",
|
|
11
|
+
"preuninstall": "node preuninstall.js"
|
|
12
|
+
},
|
|
13
|
+
"files": [
|
|
14
|
+
"LICENSE",
|
|
15
|
+
"run.js",
|
|
16
|
+
"postinstall.js",
|
|
17
|
+
"preuninstall.js"
|
|
18
|
+
],
|
|
19
|
+
"engines": {
|
|
20
|
+
"node": "\u003e=14.14"
|
|
21
|
+
},
|
|
22
|
+
"author": "d4rkNinja",
|
|
23
|
+
"license": "SEE LICENSE IN LICENSE",
|
|
24
|
+
"repository": {
|
|
25
|
+
"type": "git",
|
|
26
|
+
"url": "git+https://github.com/d4rkNinja/infynon-cli.git"
|
|
27
|
+
},
|
|
28
|
+
"bugs": {
|
|
29
|
+
"url": "https://github.com/d4rkNinja/infynon-cli/issues"
|
|
30
|
+
},
|
|
31
|
+
"homepage": "https://github.com/d4rkNinja/infynon-cli#readme",
|
|
32
|
+
"publishConfig": {
|
|
33
|
+
"access": "public"
|
|
34
|
+
}
|
|
35
35
|
}
|
|
36
|
-
|