@jetrabbits/agentic 0.3.3 → 0.4.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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,20 @@
1
1
  # Changelog
2
2
 
3
+ ## v0.4.0
4
+
5
+ - Fixed OpenCode MCP config generation to use top-level `mcp` entries and migrate/remove legacy `mcpServers` from generated OpenCode configs.
6
+ - Added readable OpenCode menu labels for Telegram notifications and agent model mapping while preserving existing internal ids.
7
+ - Added committed OpenCode model profiles for OpenAI and GitHub Copilot under `extensions/opencode/profiles`.
8
+ - Added OpenCode profile choices to the optional OpenCode menu with manifest persistence and MCP-safe config merging.
9
+ - Renamed generated Docker MCP server entries from `MCP_DOCKER` to `docker`.
10
+ - Added non-fatal local prerequisite warnings for selected Kubernetes and Docker MCP integrations.
11
+ - Removed the macOS bash 3.2 warning and added compatibility handling for older bash empty-array behavior.
12
+ - Extended deterministic e2e coverage for all-MCP doctor setup, OpenCode MCP migration, OpenCode profiles, readable menu labels, and bash 3 compatibility.
13
+
14
+ ## v0.3.4
15
+
16
+ - Enabled Codex project memories by generating `.codex/config.toml` with `[features] memories = true` whenever Codex is selected.
17
+
3
18
  ## v0.3.3
4
19
 
5
20
  - Updated MemPalace project initialization to pipe explicit confirmation (`echo "Y" | mempalace init ...`) for non-interactive setup robustness.
package/Makefile CHANGED
@@ -1,4 +1,4 @@
1
- .PHONY: help install dev test test-all test-cli test-tui test-cross test-doctor test-markers test-opencode-plugins test-telegram-plugin test-ubuntu-blackbox test-real-agent-doctor test-real-blackbox test-real-blackbox-codex test-real-blackbox-opencode test-real-blackbox-telegram test-real-opencode-mapper test-coverage _test-coverage-steps lint fmt clean build assess-areas
1
+ .PHONY: help install dev test test-all test-cli test-tui test-mcp test-cross test-doctor test-markers test-opencode-plugins test-telegram-plugin test-ubuntu-blackbox test-real-agent-doctor test-real-blackbox test-real-blackbox-codex test-real-blackbox-opencode test-real-blackbox-telegram test-real-opencode-mapper test-coverage _test-coverage-steps lint fmt clean build assess-areas
2
2
 
3
3
  define timed_step
4
4
  @label='$(1)'; \
@@ -27,6 +27,7 @@ help:
27
27
  " test-all Run fast tests, real blackbox, and coverage" \
28
28
  " test-cli Run CLI end-to-end tests" \
29
29
  " test-tui Run TUI end-to-end tests" \
30
+ " test-mcp Run MCP selection/config end-to-end tests" \
30
31
  " test-cross Run cross-mode end-to-end tests" \
31
32
  " test-doctor Run deterministic doctor end-to-end tests" \
32
33
  " test-markers Run generated marker and idempotency tests" \
@@ -55,6 +56,7 @@ dev:
55
56
  test:
56
57
  $(call timed_step,test-cli,bash tests/e2e/cli.e2e.sh)
57
58
  $(call timed_step,test-tui,bash tests/e2e/tui.e2e.sh)
59
+ $(call timed_step,test-mcp,bash tests/e2e/mcp.e2e.sh)
58
60
  $(call timed_step,test-cross,bash tests/e2e/cross.e2e.sh)
59
61
  $(call timed_step,test-opencode-plugins,bash tests/e2e/opencode_plugins.e2e.sh)
60
62
  $(call timed_step,test-telegram-plugin,bash tests/e2e/telegram_plugin.e2e.sh)
@@ -75,6 +77,9 @@ test-cli:
75
77
  test-tui:
76
78
  $(call timed_step,test-tui,bash tests/e2e/tui.e2e.sh)
77
79
 
80
+ test-mcp:
81
+ $(call timed_step,test-mcp,bash tests/e2e/mcp.e2e.sh)
82
+
78
83
  test-cross:
79
84
  $(call timed_step,test-cross,bash tests/e2e/cross.e2e.sh)
80
85
 
package/README.md CHANGED
@@ -194,8 +194,14 @@ project/.agent/
194
194
 
195
195
  ### MCP
196
196
 
197
- - `context7`: adds a remote MCP server for up-to-date framework, library, SDK, and API documentation.
198
- - `mempalace`: adds a local memory MCP server for project context discovery and reuse.
197
+ - `opencode-docs` (safe): adds OpenCode documentation through a local MCP server.
198
+ - `playwright` (sensitive): adds browser automation through Playwright MCP.
199
+ - `kubernetes` (dangerous): adds Kubernetes cluster access through Kubernetes MCP.
200
+ - `youtube-transcript` (safe): adds YouTube transcript lookup through a local MCP server.
201
+ - `docker-mcp` (dangerous): adds Docker MCP Gateway as the generated `docker` MCP server.
202
+ - `context7` (safe): adds a remote MCP server for up-to-date framework, library, SDK, and API documentation.
203
+ - `mempalace` (sensitive): adds a local memory MCP server for project context discovery and reuse.
204
+ - `anydb` (dangerous): adds database access through AnyDB MCP.
199
205
 
200
206
  ### OpenCode Plugins
201
207