@jetrabbits/agentic 0.1.0 → 0.2.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.
@@ -111,4 +111,4 @@ When MemPalace MCP is enabled during interactive install, `agentic` now reports
111
111
  3. `pip install mempalace`
112
112
  4. Project initialization (`mempalace init` and `mempalace mine`)
113
113
 
114
- After setup, runtime validation uses `mempalace-mcp --help` (the MCP entrypoint) instead of validating only the Python module import path. This avoids false warnings where the package is installed successfully but a pre-install runtime probe ran too early.
114
+ After setup, install checks that `mempalace-mcp` is present and leaves runtime startup/tool validation to the post-install doctor smoke check. Generated MCP configs invoke `mempalace-mcp` without arguments for all supported agent targets.
@@ -30,6 +30,23 @@ Default behavior:
30
30
  - In non-interactive mode (CI/pipe): prints usage and exits with code `1`
31
31
  - For CI one-off execution, prefer `npx @jetrabbits/agentic@latest <command>`
32
32
 
33
+ ## Requirements
34
+
35
+ `agentic install` and `agentic tui` fail fast when required local tools are missing:
36
+
37
+ - Bash 3.2+.
38
+ - Python 3 as `python3`.
39
+ - pip as `pip3`, `pip`, or `python3 -m pip`.
40
+ - `shasum` or `sha256sum` for managed-file hashes.
41
+ - Git when installed mode needs to bootstrap or upgrade `~/.local/share/agentic/repo`.
42
+
43
+ Optional tools:
44
+
45
+ - `fzf` for interactive picker UI; index-based menus are used when it is unavailable.
46
+ - Node.js/npm only for the `npx @jetrabbits/agentic@latest` entrypoint.
47
+ - `curl` only for the bootstrap installer.
48
+ - Real agent binaries only for selected target recommendations and doctor checks.
49
+
33
50
  Install the standalone binary:
34
51
 
35
52
  ```bash
@@ -75,6 +92,26 @@ agentic install \
75
92
 
76
93
  After install, `agentic` writes `.agentic.json` in the target project. It records copied/generated files and their hashes. A later install rerun updates only manifest-managed files and skips files changed by the user. Generated guidance is written to root `AGENTS.md` for most agents and to `.opencode/AGENTS.md` when OpenCode is selected; multi-target installs that include OpenCode and another agent write both files.
77
94
 
95
+ After the project files are generated, `agentic` starts timestamped operational logging and mirrors install output to a temporary log file such as:
96
+
97
+ ```text
98
+ /tmp/agentic-20260512-114203.ABC123
99
+ ```
100
+
101
+ The final install line prints the exact path:
102
+
103
+ ```text
104
+ Agentic log file: /tmp/agentic-20260512-114203.ABC123
105
+ ```
106
+
107
+ `agentic` also runs a final doctor smoke check for selected real agent targets (`codex`, `opencode`, `claude`, `gemini`). The doctor runs `/develop-feature напиши hello world python` in a temporary copy of the project and prints one status row per selected agent. Doctor failures are reported but do not roll back or fail the install. Disable doctor for CI or cheap checks with:
108
+
109
+ ```bash
110
+ AGENTIC_DOCTOR=0 agentic install ...
111
+ # or
112
+ agentic install ... --no-doctor
113
+ ```
114
+
78
115
  List available options:
79
116
 
80
117
  ```bash
@@ -148,9 +185,17 @@ For `opencode`, `codex`, `claude`, `cursor`, `gemini`, and `antigravity`, MemPal
148
185
  pip install mempalace
149
186
  ```
150
187
 
151
- Generated configs run `mempalace-mcp --palace .mempalace` (or equivalent `command`/`args` format per IDE) so each project uses its local `.mempalace` directory.
188
+ Generated configs run `mempalace-mcp` without arguments for all supported agent targets. Runtime startup and MCP tool errors are checked by the post-install doctor stage.
152
189
 
153
- During install, if MemPalace is enabled, `agentic` also runs a runtime check using `python3 -m mempalace --help`. For OpenCode installs, `agentic` creates `<project>/.mempalace` and runs `mempalace init "<project>/.mempalace" --yes --auto-mine`. If checks fail (for example, package not installed yet), install continues and agents fall back to standard context discovery.
190
+ During install, if MemPalace is enabled, `agentic` checks whether `mempalace-mcp` is available. For OpenCode installs, `agentic` creates `<project>` and runs `mempalace init "<project>" --yes --auto-mine`. If checks fail (for example, package not installed yet), install continues and agents fall back to standard context discovery.
191
+
192
+ ## Real agent doctor E2E
193
+
194
+ The deterministic e2e suite uses fake agent binaries and does not call models. Real agent doctor checks are opt-in because they may use network access, credentials, and model credits:
195
+
196
+ ```bash
197
+ AGENTIC_RUN_REAL_AGENT_E2E=1 make test-real-agent-doctor
198
+ ```
154
199
 
155
200
  ## Deprecated wrapper
156
201
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jetrabbits/agentic",
3
- "version": "0.1.0",
3
+ "version": "0.2.0",
4
4
  "description": "Agent Intelligence Configuration CLI",
5
5
  "bin": {
6
6
  "agentic": "bin/agentic.js"
@@ -11,6 +11,7 @@
11
11
  },
12
12
  "files": [
13
13
  "AGENTS.md",
14
+ "CHANGELOG.md",
14
15
  "UPGRADE.md",
15
16
  "LICENSE",
16
17
  "Makefile",