@agenit/cli 1.0.1 → 1.0.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.
Files changed (1) hide show
  1. package/package.json +24 -3
package/package.json CHANGED
@@ -1,7 +1,27 @@
1
1
  {
2
2
  "name": "@agenit/cli",
3
- "version": "1.0.1",
4
- "description": "agenIT — Profile-driven AI dev co-pilot CLI (TypeScript / Ink)",
3
+ "version": "1.0.2",
4
+ "description": "agenIT — Profile-driven AI dev co-pilot CLI (TypeScript / Ink). ASPICE-aligned V-Model workflow on top of Gemini CLI for embedded engineering teams.",
5
+ "keywords": [
6
+ "agenit",
7
+ "cli",
8
+ "ai",
9
+ "gemini",
10
+ "co-pilot",
11
+ "aspice",
12
+ "v-model",
13
+ "embedded",
14
+ "automotive",
15
+ "developer-tools",
16
+ "repl",
17
+ "ink",
18
+ "typescript"
19
+ ],
20
+ "author": "Mohamed Eldabaa <mohamed.eldabaa@yahoo.com>",
21
+ "homepage": "https://github.com/muhammed-eldabea/flow#readme",
22
+ "bugs": {
23
+ "url": "https://github.com/muhammed-eldabea/flow/issues"
24
+ },
5
25
  "license": "MIT",
6
26
  "repository": {
7
27
  "type": "git",
@@ -41,5 +61,6 @@
41
61
  "ink-text-input": "^6.0.0",
42
62
  "react": "^18.3.1",
43
63
  "yargs": "^17.7.2"
44
- }
64
+ },
65
+ "readme": "# agenIT\n\n> Profile-driven AI dev co-pilot for embedded engineering — ASPICE-aligned V-Model workflow on top of Gemini CLI.\n\n## Install\n\n```bash\nnpm install -g @agenit/cli\n```\n\nRequires Node.js 20+ and the Gemini CLI (`@google/generative-ai-cli`) installed and authenticated.\n\n## Usage\n\nLaunch the interactive REPL:\n\n```bash\nagenit\n```\n\nRun a single shot:\n\n```bash\nagenit --print \"explain the V-Model phases for this project\"\n```\n\nInitialize a project:\n\n```bash\nagenit init\n```\n\nRun the full pipeline (Requirements → Architecture → Code → Testing → Audit):\n\n```bash\nagenit run\n```\n\n## Commands\n\n| Command | Description |\n|---|---|\n| `agenit` | Interactive REPL |\n| `agenit init [dir]` | Scaffold project memory and `.agenit_project` marker |\n| `agenit run` | Run the full V-Model pipeline |\n| `agenit audit` | Show traceability registry |\n| `agenit projects` | List all projects in memory |\n| `agenit resume [id]` | Resume a previous REPL session |\n| `agenit sessions` | List recent sessions |\n| `agenit completions <shell>` | Print shell completion script (bash / zsh / fish) |\n\n## Configuration\n\nPlace 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.\n\n## License\n\nMIT — see [LICENSE](./LICENSE).\n"
45
66
  }