infynon 0.2.1 → 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 +29 -2
- package/package.json +33 -34
package/README.md
CHANGED
|
@@ -1,18 +1,19 @@
|
|
|
1
1
|
# infynon
|
|
2
2
|
|
|
3
|
-
INFYNON is a security-first CLI for package intelligence, API flow testing, and
|
|
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
6
|
|
|
7
7
|
## Why Install INFYNON
|
|
8
8
|
|
|
9
|
-
INFYNON is built for teams that need one terminal tool for
|
|
9
|
+
INFYNON is built for teams that need one terminal tool for four connected workflows:
|
|
10
10
|
|
|
11
11
|
| Workflow | Command Area | Purpose |
|
|
12
12
|
|---|---|---|
|
|
13
13
|
| Package intelligence | `infynon pkg` | Scan dependencies, inspect risk, audit package changes, and support safer install workflows. |
|
|
14
14
|
| API flow testing | `infynon weave` | Run multi-step API flows with context passed between requests. |
|
|
15
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. |
|
|
16
17
|
|
|
17
18
|
## Install
|
|
18
19
|
|
|
@@ -40,6 +41,7 @@ infynon pkg scan
|
|
|
40
41
|
infynon pkg audit
|
|
41
42
|
infynon weave flow run checkout
|
|
42
43
|
infynon trace tui
|
|
44
|
+
infynon task create task_001 --mutate --workspace . --prompt "Ship the settings API patch"
|
|
43
45
|
```
|
|
44
46
|
|
|
45
47
|
## Package Intelligence
|
|
@@ -92,6 +94,30 @@ Good fit:
|
|
|
92
94
|
- team notes
|
|
93
95
|
- AI-assisted coding sessions that need durable memory
|
|
94
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
|
+
|
|
95
121
|
## Alternative Install Methods
|
|
96
122
|
|
|
97
123
|
GitHub Releases:
|
|
@@ -129,6 +155,7 @@ https://github.com/d4rkNinja/infynon-cli/releases
|
|
|
129
155
|
## Documentation
|
|
130
156
|
|
|
131
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
|
|
132
159
|
- Releases: https://github.com/d4rkNinja/infynon-cli/releases
|
|
133
160
|
- Issues: https://github.com/d4rkNinja/infynon-cli/issues
|
|
134
161
|
|
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
|
-
|