@agenit/cli 1.0.4 → 1.1.0

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 (4) hide show
  1. package/CHANGELOG.md +267 -0
  2. package/README.md +10 -2
  3. package/cli.js +37639 -33411
  4. package/package.json +2 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agenit/cli",
3
- "version": "1.0.4",
3
+ "version": "1.1.0",
4
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
5
  "keywords": [
6
6
  "agenit",
@@ -63,5 +63,5 @@
63
63
  "react": "^18.3.1",
64
64
  "yargs": "^17.7.2"
65
65
  },
66
- "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"
66
+ "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 + `.gemini/` assets + `.agenit_project` marker. Verifies Gemini-CLI can see the seeded skills before returning. Pass `--no-verify` to skip. |\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\nSelected REPL slash commands (full list in `/help`):\n\n| Command | Description |\n| --- | --- |\n| `/goal <objective>` | Codex-style autonomous loop. `/goal start` runs ticks back-to-back; the right-rail card shows turn budget + last decision live. |\n| `/jobs` | List active background jobs (goal runner, soul-keeper, scanners). Useful when the terminal is too narrow for the right-rail. |\n| `/init` | Re-seed `.gemini/` skills + settings; verifies Gemini-CLI can see the result. |\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"
67
67
  }