@jetrabbits/agentic 0.2.0 → 0.3.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/AGENTS.md +13 -15
- package/CHANGELOG.md +24 -0
- package/MEMORY.md +67 -0
- package/Makefile +96 -14
- package/README.md +2 -2
- package/agentic +1269 -99
- package/areas/devops/ci-cd/AGENTS.md +1 -15
- package/areas/devops/database-ops/AGENTS.md +1 -15
- package/areas/devops/devsecops/AGENTS.md +1 -15
- package/areas/devops/infrastructure/AGENTS.md +1 -15
- package/areas/devops/kubernetes/AGENTS.md +1 -15
- package/areas/devops/networking/AGENTS.md +1 -15
- package/areas/devops/observability/AGENTS.md +1 -15
- package/areas/devops/sre/AGENTS.md +1 -15
- package/areas/software/backend/AGENTS.md +1 -16
- package/areas/software/data-engineering/AGENTS.md +1 -16
- package/areas/software/frontend/AGENTS.md +1 -16
- package/areas/software/full-stack/AGENTS.md +1 -16
- package/areas/software/general/AGENTS.md +1 -7
- package/areas/software/mlops/AGENTS.md +1 -16
- package/areas/software/mobile/AGENTS.md +1 -16
- package/areas/software/platform/AGENTS.md +1 -16
- package/areas/software/qa/AGENTS.md +1 -16
- package/areas/software/security/AGENTS.md +1 -16
- package/areas/template/AGENTS.tmpl.md +1 -17
- package/docs/agentic-lifecycle.md +8 -4
- package/docs/agentic-stabilization/README.md +37 -0
- package/docs/agentic-token-minimization/README.md +7 -5
- package/docs/agentic-usage.md +17 -14
- package/docs/opencode_setup.md +8 -4
- package/extensions/opencode/opencode.json +1 -1
- package/extensions/opencode/plugins/agent-model-mapper.ts +117 -0
- package/extensions/opencode/plugins/telegram-notification.ts +30 -20
- package/package.json +2 -1
- package/extensions/opencode/plugins/model-checker.json +0 -13
- package/extensions/opencode/plugins/model-checker.ts +0 -302
package/AGENTS.md
CHANGED
|
@@ -16,12 +16,19 @@ project_dir/
|
|
|
16
16
|
└── prompts/
|
|
17
17
|
```
|
|
18
18
|
|
|
19
|
+
## Guidance chain
|
|
20
|
+
|
|
21
|
+
1. Project `.agent/` baseline
|
|
22
|
+
2. `.agent/rules/*` — load all
|
|
23
|
+
3. `.agent/skills/*/SKILL.md` — load only the skill matching the current task
|
|
24
|
+
4. `.agent/workflows/*` — load the workflow matching the triggered command
|
|
25
|
+
|
|
19
26
|
**Discovery patterns:**
|
|
20
27
|
|
|
21
|
-
-
|
|
22
|
-
-
|
|
23
|
-
-
|
|
24
|
-
-
|
|
28
|
+
- `.agent/rules/*.md`
|
|
29
|
+
- `.agent/skills/*/SKILL.md`
|
|
30
|
+
- `.agent/workflows/*.md`
|
|
31
|
+
- `.agent/prompts/*.md`
|
|
25
32
|
|
|
26
33
|
Prefer relative paths in references inside markdown files.
|
|
27
34
|
|
|
@@ -70,18 +77,9 @@ Cross-cutting practices that apply to every project regardless of area.
|
|
|
70
77
|
- Create or update the relevant `docs/` artifact in the same change set; do not leave behavior changes documented only in workflow outputs, tickets, or PR comments.
|
|
71
78
|
- Apply the `product-owner` role to confirm that docs describe the user-facing behavior, acceptance criteria, and operational constraints of the change.
|
|
72
79
|
|
|
73
|
-
###
|
|
74
|
-
|
|
75
|
-
- Use Context7 for framework, library, SDK, API, and setup documentation before relying on model memory.
|
|
76
|
-
- Resolve the library or framework identity first, then request focused docs for the exact task and version when version matters.
|
|
77
|
-
- If Context7 is unavailable, state that explicitly and fall back to local docs or official project documentation.
|
|
78
|
-
|
|
79
|
-
### MemPalace + Context Strategy
|
|
80
|
+
### MCP Memory Providers
|
|
80
81
|
|
|
81
|
-
|
|
82
|
-
- If Context7 MCP is enabled and available, use it specifically for framework/library/API documentation.
|
|
83
|
-
- If both are available, combine them: MemPalace for project/business knowledge, Context7 for framework-level references.
|
|
84
|
-
- If MCP providers are unavailable, continue with standard local-repo discovery and context-building as fallback.
|
|
82
|
+
See [MEMORY.md](MEMORY.md) for the full protocol: provider roles, Context7 usage, MemPalace session-start queries, fact-writing triggers, tool call examples, and fallback order.
|
|
85
83
|
|
|
86
84
|
### Code Style
|
|
87
85
|
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,29 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## v0.3.1
|
|
4
|
+
|
|
5
|
+
- Added project-level OpenCode plugin settings in `.agentic.json`, including Telegram `botToken` and `chatId` when `telegram-notification` is enabled.
|
|
6
|
+
- Renamed the OpenCode optional plugin menu entry to `telegram-notification` while preserving the old `telegram-opencode-notifier` alias for compatibility.
|
|
7
|
+
- Changed `telegram-notification` runtime credentials to read from the target project's `.agentic.json` instead of Telegram environment variables.
|
|
8
|
+
- Removed Telegram message formatting entirely: notifications are sent as plain text without `parse_mode`, MarkdownV2 escaping, or markdown-to-Telegram conversion.
|
|
9
|
+
- Added interactive Context7 key mode selection with English menu entries for keyless setup or entering `CONTEXT7_API_KEY`.
|
|
10
|
+
- Removed the post-install Context7 "add API key later" path/example guidance because key selection now happens during setup.
|
|
11
|
+
- Extended `agent-model-mapper` model discovery to include active providers from `~/.local/share/opencode/auth.json` and non-deprecated models from `~/.cache/opencode/models.json`.
|
|
12
|
+
- Added a Confirm/Cancel save step after OpenCode role model selection before writing `.opencode/opencode.json`.
|
|
13
|
+
- Preserved OpenCode plugin settings across manifest replay/re-install so automated sync does not prompt again or lose project-level credentials.
|
|
14
|
+
- Updated OpenCode, Context7, Telegram, and lifecycle docs plus deterministic e2e coverage for the new configuration flow.
|
|
15
|
+
|
|
16
|
+
## v0.3.0
|
|
17
|
+
|
|
18
|
+
- Added per-agent doctor timeouts with elapsed-time and exit-status logging while keeping install non-fatal.
|
|
19
|
+
- Replaced the OpenCode model checker with `agent-model-mapper` for explicit role-to-model mapping.
|
|
20
|
+
- Moved `agent-model-mapper` prompts to install time so OpenCode startup stays non-blocking.
|
|
21
|
+
- Removed the interactive Context7 API-key prompt and made OpenCode MemPalace project initialization optional/manual.
|
|
22
|
+
- Changed Telegram notifications to read credentials from environment variables only and avoid logging secrets.
|
|
23
|
+
- Added traced shell coverage tooling with a 90% `agentic` line coverage gate.
|
|
24
|
+
- Added deterministic OpenCode plugin, Telegram, and doctor timeout continuation tests.
|
|
25
|
+
- Added real Codex, OpenCode, and Telegram blackbox scenarios to normal `make test`.
|
|
26
|
+
|
|
3
27
|
## v0.2.0
|
|
4
28
|
|
|
5
29
|
- Added `agentic --version` and version display in CLI/TUI output.
|
package/MEMORY.md
ADDED
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
# MEMORY — MCP context providers
|
|
2
|
+
|
|
3
|
+
Use MCP context only when it improves accuracy. Keep searches narrow.
|
|
4
|
+
|
|
5
|
+
## Context7
|
|
6
|
+
|
|
7
|
+
- Use Context7 for external framework, library, SDK, API, and setup docs.
|
|
8
|
+
- Resolve the exact package/framework first; ask for focused docs only.
|
|
9
|
+
- If Context7 is unavailable, use local `docs/**`, then official upstream docs.
|
|
10
|
+
|
|
11
|
+
## MemPalace
|
|
12
|
+
|
|
13
|
+
MemPalace stores project memory by wing. The current project wing is the sanitized project directory basename. Cross-project Markdown knowledge belongs in `shared_docs`.
|
|
14
|
+
|
|
15
|
+
### Cheap search pattern
|
|
16
|
+
|
|
17
|
+
Do not run broad startup searches. Search only for the task at hand:
|
|
18
|
+
|
|
19
|
+
```json
|
|
20
|
+
mempalace_search({
|
|
21
|
+
"query": "short exact keywords",
|
|
22
|
+
"wing": "<current_project_wing>",
|
|
23
|
+
"limit": 3,
|
|
24
|
+
"max_distance": 0.55
|
|
25
|
+
})
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
Rules:
|
|
29
|
+
|
|
30
|
+
- Keep `query` short; put background in `context` only if needed.
|
|
31
|
+
- Use `wing` whenever you know it.
|
|
32
|
+
- Use `limit: 3` by default; raise it only when evidence is thin.
|
|
33
|
+
- Use `max_distance` around `0.4-0.6` for precise fact lookup.
|
|
34
|
+
- Search `shared_docs` only for reusable docs or cross-project behavior.
|
|
35
|
+
- Call `mempalace_list_wings` or `mempalace_list_rooms` only when the wing or room is unknown.
|
|
36
|
+
- Add `room` only after confirming the room name.
|
|
37
|
+
|
|
38
|
+
### Writing facts
|
|
39
|
+
|
|
40
|
+
Use `mempalace_store` proactively when a durable fact is discovered, decided, or corrected. Do not wait for a later search to make project knowledge persistent.
|
|
41
|
+
|
|
42
|
+
Store only durable, self-contained facts:
|
|
43
|
+
|
|
44
|
+
- architecture decisions and rationale;
|
|
45
|
+
- domain rules and API/data contracts;
|
|
46
|
+
- non-obvious integrations or constraints;
|
|
47
|
+
- known issues, bottlenecks, and mitigations;
|
|
48
|
+
- team conventions not already captured in `docs/**`.
|
|
49
|
+
|
|
50
|
+
Store one fact per call, tagged with project/module/domain nouns. Write project facts to the current project wing. Write to `shared_docs` only when the knowledge is intentionally reusable across projects.
|
|
51
|
+
|
|
52
|
+
```json
|
|
53
|
+
mempalace_store({
|
|
54
|
+
"wing": "<current_project_wing>",
|
|
55
|
+
"room": "<known_room_if_confirmed>",
|
|
56
|
+
"text": "Durable fact stated as a complete sentence with enough context to stand alone.",
|
|
57
|
+
"tags": ["project", "module", "domain"]
|
|
58
|
+
})
|
|
59
|
+
```
|
|
60
|
+
|
|
61
|
+
## Fallback
|
|
62
|
+
|
|
63
|
+
If MCP providers are unavailable, use:
|
|
64
|
+
|
|
65
|
+
1. local `docs/**`;
|
|
66
|
+
2. official upstream documentation;
|
|
67
|
+
3. model knowledge, explicitly marked as fallback.
|
package/Makefile
CHANGED
|
@@ -1,17 +1,45 @@
|
|
|
1
|
-
.PHONY: help install dev test test-cli test-tui test-cross test-doctor test-markers test-real-agent-doctor lint fmt clean build assess-areas
|
|
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
|
|
2
|
+
|
|
3
|
+
define timed_step
|
|
4
|
+
@label='$(1)'; \
|
|
5
|
+
start=$$(date +%s); \
|
|
6
|
+
timestamp=$$(date '+%Y-%m-%d %H:%M:%S'); \
|
|
7
|
+
printf '%s [make-timing] START %s\n' "$$timestamp" "$$label"; \
|
|
8
|
+
$(2); \
|
|
9
|
+
status=$$?; \
|
|
10
|
+
end=$$(date +%s); \
|
|
11
|
+
elapsed=$$((end - start)); \
|
|
12
|
+
timestamp=$$(date '+%Y-%m-%d %H:%M:%S'); \
|
|
13
|
+
if [ "$$status" -eq 0 ]; then \
|
|
14
|
+
printf '%s [make-timing] OK %s elapsed=%ss\n' "$$timestamp" "$$label" "$$elapsed"; \
|
|
15
|
+
else \
|
|
16
|
+
printf '%s [make-timing] FAIL %s elapsed=%ss exit=%s\n' "$$timestamp" "$$label" "$$elapsed" "$$status"; \
|
|
17
|
+
fi; \
|
|
18
|
+
exit "$$status"
|
|
19
|
+
endef
|
|
2
20
|
|
|
3
21
|
help:
|
|
4
22
|
@printf '%s\n' \
|
|
5
23
|
"Available targets:" \
|
|
6
24
|
" install Install local development prerequisites" \
|
|
7
25
|
" dev Show local development entrypoints" \
|
|
8
|
-
" test Run end-to-end tests
|
|
26
|
+
" test Run fast deterministic end-to-end tests" \
|
|
27
|
+
" test-all Run fast tests, real blackbox, and coverage" \
|
|
9
28
|
" test-cli Run CLI end-to-end tests" \
|
|
10
29
|
" test-tui Run TUI end-to-end tests" \
|
|
11
30
|
" test-cross Run cross-mode end-to-end tests" \
|
|
12
31
|
" test-doctor Run deterministic doctor end-to-end tests" \
|
|
13
32
|
" test-markers Run generated marker and idempotency tests" \
|
|
14
|
-
" test-
|
|
33
|
+
" test-opencode-plugins Run OpenCode plugin deterministic tests" \
|
|
34
|
+
" test-telegram-plugin Run Telegram plugin deterministic tests" \
|
|
35
|
+
" test-ubuntu-blackbox Run make test in a clean Docker Ubuntu image" \
|
|
36
|
+
" test-real-agent-doctor Run real agent doctor checks" \
|
|
37
|
+
" test-real-blackbox Run real Codex/OpenCode/Telegram blackbox tests" \
|
|
38
|
+
" test-real-blackbox-codex Run real Codex blackbox test" \
|
|
39
|
+
" test-real-blackbox-opencode Run real OpenCode blackbox test" \
|
|
40
|
+
" test-real-blackbox-telegram Run real OpenCode Telegram blackbox test" \
|
|
41
|
+
" test-real-opencode-mapper Run real OpenCode mapper input blackbox" \
|
|
42
|
+
" test-coverage Run traced e2e coverage for agentic" \
|
|
15
43
|
" lint Run prompt and catalog validation" \
|
|
16
44
|
" fmt Check formatting hooks placeholder" \
|
|
17
45
|
" clean Remove generated reports" \
|
|
@@ -25,29 +53,83 @@ dev:
|
|
|
25
53
|
@printf '%s\n' "Use ./agentic tui or ./agentic install ..."
|
|
26
54
|
|
|
27
55
|
test:
|
|
28
|
-
bash tests/e2e/cli.e2e.sh
|
|
29
|
-
bash tests/e2e/tui.e2e.sh
|
|
30
|
-
bash tests/e2e/cross.e2e.sh
|
|
31
|
-
bash tests/e2e/
|
|
32
|
-
bash tests/e2e/
|
|
56
|
+
$(call timed_step,test-cli,bash tests/e2e/cli.e2e.sh)
|
|
57
|
+
$(call timed_step,test-tui,bash tests/e2e/tui.e2e.sh)
|
|
58
|
+
$(call timed_step,test-cross,bash tests/e2e/cross.e2e.sh)
|
|
59
|
+
$(call timed_step,test-opencode-plugins,bash tests/e2e/opencode_plugins.e2e.sh)
|
|
60
|
+
$(call timed_step,test-telegram-plugin,bash tests/e2e/telegram_plugin.e2e.sh)
|
|
61
|
+
|
|
62
|
+
test-all:
|
|
63
|
+
$(call timed_step,test,$(MAKE) test)
|
|
64
|
+
$(call timed_step,test-doctor,bash tests/e2e/doctor.e2e.sh)
|
|
65
|
+
$(call timed_step,test-markers,bash tests/e2e/markers.e2e.sh)
|
|
66
|
+
$(call timed_step,test-real-blackbox-codex,AGENTIC_REAL_BLACKBOX_ONLY=codex bash tests/e2e/real_agent_blackbox.e2e.sh)
|
|
67
|
+
$(call timed_step,test-real-blackbox-opencode,AGENTIC_REAL_BLACKBOX_ONLY=opencode bash tests/e2e/real_agent_blackbox.e2e.sh)
|
|
68
|
+
$(call timed_step,test-real-opencode-mapper,AGENTIC_REAL_BLACKBOX_ONLY=opencode-mapper bash tests/e2e/real_agent_blackbox.e2e.sh)
|
|
69
|
+
$(call timed_step,test-real-blackbox-telegram,AGENTIC_REAL_BLACKBOX_ONLY=telegram bash tests/e2e/real_agent_blackbox.e2e.sh)
|
|
70
|
+
$(call timed_step,test-coverage,$(MAKE) test-coverage)
|
|
33
71
|
|
|
34
72
|
test-cli:
|
|
35
|
-
bash tests/e2e/cli.e2e.sh
|
|
73
|
+
$(call timed_step,test-cli,bash tests/e2e/cli.e2e.sh)
|
|
36
74
|
|
|
37
75
|
test-tui:
|
|
38
|
-
bash tests/e2e/tui.e2e.sh
|
|
76
|
+
$(call timed_step,test-tui,bash tests/e2e/tui.e2e.sh)
|
|
39
77
|
|
|
40
78
|
test-cross:
|
|
41
|
-
bash tests/e2e/cross.e2e.sh
|
|
79
|
+
$(call timed_step,test-cross,bash tests/e2e/cross.e2e.sh)
|
|
42
80
|
|
|
43
81
|
test-doctor:
|
|
44
|
-
bash tests/e2e/doctor.e2e.sh
|
|
82
|
+
$(call timed_step,test-doctor,bash tests/e2e/doctor.e2e.sh)
|
|
45
83
|
|
|
46
84
|
test-markers:
|
|
47
|
-
bash tests/e2e/markers.e2e.sh
|
|
85
|
+
$(call timed_step,test-markers,bash tests/e2e/markers.e2e.sh)
|
|
86
|
+
|
|
87
|
+
test-opencode-plugins:
|
|
88
|
+
$(call timed_step,test-opencode-plugins,bash tests/e2e/opencode_plugins.e2e.sh)
|
|
89
|
+
|
|
90
|
+
test-telegram-plugin:
|
|
91
|
+
$(call timed_step,test-telegram-plugin,bash tests/e2e/telegram_plugin.e2e.sh)
|
|
92
|
+
|
|
93
|
+
test-ubuntu-blackbox:
|
|
94
|
+
$(call timed_step,test-ubuntu-blackbox,bash tests/e2e/ubuntu_blackbox.e2e.sh)
|
|
48
95
|
|
|
49
96
|
test-real-agent-doctor:
|
|
50
|
-
bash tests/e2e/real_agent_doctor.e2e.sh
|
|
97
|
+
$(call timed_step,test-real-agent-doctor,bash tests/e2e/real_agent_doctor.e2e.sh)
|
|
98
|
+
|
|
99
|
+
test-real-blackbox:
|
|
100
|
+
$(call timed_step,test-real-blackbox-codex,AGENTIC_REAL_BLACKBOX_ONLY=codex bash tests/e2e/real_agent_blackbox.e2e.sh)
|
|
101
|
+
$(call timed_step,test-real-blackbox-opencode,AGENTIC_REAL_BLACKBOX_ONLY=opencode bash tests/e2e/real_agent_blackbox.e2e.sh)
|
|
102
|
+
$(call timed_step,test-real-opencode-mapper,AGENTIC_REAL_BLACKBOX_ONLY=opencode-mapper bash tests/e2e/real_agent_blackbox.e2e.sh)
|
|
103
|
+
$(call timed_step,test-real-blackbox-telegram,AGENTIC_REAL_BLACKBOX_ONLY=telegram bash tests/e2e/real_agent_blackbox.e2e.sh)
|
|
104
|
+
|
|
105
|
+
test-real-blackbox-codex:
|
|
106
|
+
$(call timed_step,test-real-blackbox-codex,AGENTIC_REAL_BLACKBOX_ONLY=codex bash tests/e2e/real_agent_blackbox.e2e.sh)
|
|
107
|
+
|
|
108
|
+
test-real-blackbox-opencode:
|
|
109
|
+
$(call timed_step,test-real-blackbox-opencode,AGENTIC_REAL_BLACKBOX_ONLY=opencode bash tests/e2e/real_agent_blackbox.e2e.sh)
|
|
110
|
+
|
|
111
|
+
test-real-blackbox-telegram:
|
|
112
|
+
$(call timed_step,test-real-blackbox-telegram,AGENTIC_REAL_BLACKBOX_ONLY=telegram bash tests/e2e/real_agent_blackbox.e2e.sh)
|
|
113
|
+
|
|
114
|
+
test-real-opencode-mapper:
|
|
115
|
+
$(call timed_step,test-real-opencode-mapper,AGENTIC_REAL_BLACKBOX_ONLY=opencode-mapper bash tests/e2e/real_agent_blackbox.e2e.sh)
|
|
116
|
+
|
|
117
|
+
test-coverage:
|
|
118
|
+
@if [ -n "$${AGENTIC_COVERAGE_TRACE_FILE:-}" ]; then \
|
|
119
|
+
trace_file="$$AGENTIC_COVERAGE_TRACE_FILE"; \
|
|
120
|
+
else \
|
|
121
|
+
trace_file="$$(mktemp /tmp/agentic-coverage.XXXXXX)"; \
|
|
122
|
+
fi; \
|
|
123
|
+
$(MAKE) _test-coverage-steps AGENTIC_COVERAGE_TRACE_FILE="$$trace_file"
|
|
124
|
+
|
|
125
|
+
_test-coverage-steps:
|
|
126
|
+
$(call timed_step,test-coverage-agentic,AGENTIC_COVERAGE_TRACE_FILE="$(AGENTIC_COVERAGE_TRACE_FILE)" AGENTIC_TEST_CLI="$(CURDIR)/tests/e2e/coverage_shim.sh" bash tests/e2e/agentic.e2e.sh >/tmp/agentic-coverage-agentic.log 2>&1)
|
|
127
|
+
$(call timed_step,test-coverage-tui,AGENTIC_COVERAGE_TRACE_FILE="$(AGENTIC_COVERAGE_TRACE_FILE)" AGENTIC_TEST_CLI="$(CURDIR)/tests/e2e/coverage_shim.sh" bash tests/e2e/tui.e2e.sh >/tmp/agentic-coverage-tui.log 2>&1)
|
|
128
|
+
$(call timed_step,test-coverage-cross,AGENTIC_COVERAGE_TRACE_FILE="$(AGENTIC_COVERAGE_TRACE_FILE)" AGENTIC_TEST_CLI="$(CURDIR)/tests/e2e/coverage_shim.sh" bash tests/e2e/cross.e2e.sh >/tmp/agentic-coverage-cross.log 2>&1)
|
|
129
|
+
$(call timed_step,test-coverage-markers,AGENTIC_COVERAGE_TRACE_FILE="$(AGENTIC_COVERAGE_TRACE_FILE)" AGENTIC_TEST_CLI="$(CURDIR)/tests/e2e/coverage_shim.sh" bash tests/e2e/markers.e2e.sh >/tmp/agentic-coverage-markers.log 2>&1)
|
|
130
|
+
$(call timed_step,test-coverage-cli,AGENTIC_COVERAGE_TRACE_FILE="$(AGENTIC_COVERAGE_TRACE_FILE)" AGENTIC_TEST_CLI="$(CURDIR)/tests/e2e/coverage_shim.sh" bash tests/e2e/cli.e2e.sh >/tmp/agentic-coverage-cli.log 2>&1)
|
|
131
|
+
$(call timed_step,test-coverage-doctor,AGENTIC_COVERAGE_TRACE_FILE="$(AGENTIC_COVERAGE_TRACE_FILE)" AGENTIC_TEST_CLI="$(CURDIR)/tests/e2e/coverage_shim.sh" bash tests/e2e/doctor.e2e.sh >/tmp/agentic-coverage-doctor.log 2>&1)
|
|
132
|
+
$(call timed_step,test-coverage-parse,bash tests/e2e/coverage_parse.sh "$(AGENTIC_COVERAGE_TRACE_FILE)")
|
|
51
133
|
|
|
52
134
|
lint:
|
|
53
135
|
bash -n agentic
|
package/README.md
CHANGED
|
@@ -191,8 +191,8 @@ project/.agent/
|
|
|
191
191
|
|
|
192
192
|
- `telegram-opencode-notifier`: sends Telegram notifications when an OpenCode session becomes idle, including the final
|
|
193
193
|
response or an attachment for long output.
|
|
194
|
-
- `
|
|
195
|
-
|
|
194
|
+
- `agent-model-mapper`: maps `.opencode/agents/*.md` roles to main and fallback OpenCode models during interactive
|
|
195
|
+
`agentic install`/`agentic tui`. OpenCode startup never prompts or writes project files.
|
|
196
196
|
|
|
197
197
|
---
|
|
198
198
|
|