@agenit/cli 1.0.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/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Mohamed Eldabaa
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,58 @@
1
+ # agenIT
2
+
3
+ > Profile-driven AI dev co-pilot for embedded engineering — ASPICE-aligned V-Model workflow on top of Gemini CLI.
4
+
5
+ ## Install
6
+
7
+ ```bash
8
+ npm install -g @agenit/cli
9
+ ```
10
+
11
+ Requires Node.js 20+ and the Gemini CLI (`@google/generative-ai-cli`) installed and authenticated.
12
+
13
+ ## Usage
14
+
15
+ Launch the interactive REPL:
16
+
17
+ ```bash
18
+ agenit
19
+ ```
20
+
21
+ Run a single shot:
22
+
23
+ ```bash
24
+ agenit --print "explain the V-Model phases for this project"
25
+ ```
26
+
27
+ Initialize a project:
28
+
29
+ ```bash
30
+ agenit init
31
+ ```
32
+
33
+ Run the full pipeline (Requirements → Architecture → Code → Testing → Audit):
34
+
35
+ ```bash
36
+ agenit run
37
+ ```
38
+
39
+ ## Commands
40
+
41
+ | Command | Description |
42
+ |---|---|
43
+ | `agenit` | Interactive REPL |
44
+ | `agenit init [dir]` | Scaffold project memory and `.agenit_project` marker |
45
+ | `agenit run` | Run the full V-Model pipeline |
46
+ | `agenit audit` | Show traceability registry |
47
+ | `agenit projects` | List all projects in memory |
48
+ | `agenit resume [id]` | Resume a previous REPL session |
49
+ | `agenit sessions` | List recent sessions |
50
+ | `agenit completions <shell>` | Print shell completion script (bash / zsh / fish) |
51
+
52
+ ## Configuration
53
+
54
+ Place a `flow.toml` (or `agenit.toml`) in your project root, or pass `--config <path>`. See the [project documentation](https://github.com/muhammed-eldabea/flow) for the full schema.
55
+
56
+ ## License
57
+
58
+ MIT — see [LICENSE](./LICENSE).
package/bin/agenit.js ADDED
@@ -0,0 +1,5 @@
1
+ #!/usr/bin/env node
2
+ import("../cli.js").catch((err) => {
3
+ console.error(err);
4
+ process.exit(1);
5
+ });