@mc1global/opencode-jarvis 0.8.0 → 0.8.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/README.md +14 -8
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# @mc1global/opencode-jarvis
|
|
2
2
|
|
|
3
|
-
A native [OpenCode](https://opencode.ai) plugin providing multi-agent development infrastructure: session memory, kanban project management, governance guardrails, token
|
|
3
|
+
A native [OpenCode](https://opencode.ai) plugin providing multi-agent development infrastructure: session memory, kanban project management, governance guardrails, automatic token-per-card cost tracking with budget alerts, RAG semantic search, Obsidian vault management, domain map analysis, workspace registry, environment management, CI/CD pipelines, Azure DevOps sync, and structured data tools.
|
|
4
4
|
|
|
5
5
|
Built with **Domain-Driven Design**, **SOLID principles**, and strict TypeScript.
|
|
6
6
|
|
|
@@ -188,13 +188,14 @@ mcp-server:
|
|
|
188
188
|
|
|
189
189
|
## Features
|
|
190
190
|
|
|
191
|
-
###
|
|
191
|
+
### 113 Tools across 14 categories
|
|
192
192
|
|
|
193
193
|
| Category | Count | Key Tools |
|
|
194
194
|
|---|---|---|
|
|
195
195
|
| **Context Memory** | 8 | `context-session-*`, `context-todo-*`, `context-note-*`, `context-search` |
|
|
196
196
|
| **Kanban Cards** | 12 | `kanban-card-create/move/list/get/assign/estimate/criteria/delete/brief` |
|
|
197
197
|
| **Kanban Board** | 15 | `kanban-sprint-*`, `kanban-epic-*`, `kanban-board-*`, `kanban-wip-check` |
|
|
198
|
+
| **Kanban Grooming** | 4 | `kanban-grooming-validate`, `kanban-card-scope-doc/criteria/estimate`, `kanban-card-gate` |
|
|
198
199
|
| **Governance** | 2 | `governance-validate`, `governance-policies` |
|
|
199
200
|
| **Token Metrics** | 7 | `metrics-record/history/agent-report/card-report/sprint-report/summary/estimate` |
|
|
200
201
|
| **RAG** | 8 | `rag-search/index/snippet/update/delete/status/oracle-search/oracle-index` |
|
|
@@ -204,9 +205,9 @@ mcp-server:
|
|
|
204
205
|
| **Domain Map** | 2 | `domain-map-analyze`, `domain-map-view` |
|
|
205
206
|
| **Workspace** | 4 | `workspace-info/list/update/link` |
|
|
206
207
|
| **Environment** | 6 | `env-init/create/list/status/merge/delete` |
|
|
207
|
-
| **Pipeline** |
|
|
208
|
+
| **Pipeline** | 10 | `pipeline-init/activate/cancel/retry/run/gate/status/list/template/scaffold` |
|
|
208
209
|
| **Azure Sync** | 10 | `azure-sync-*`, `azure-pr-*` |
|
|
209
|
-
| **Bootstrap** |
|
|
210
|
+
| **Bootstrap** | 3 | `jarvis-bootstrap`, `jarvis-healthcheck`, `jarvis-terminal-commands` |
|
|
210
211
|
|
|
211
212
|
### 5 Hooks
|
|
212
213
|
|
|
@@ -249,6 +250,11 @@ kanban:
|
|
|
249
250
|
minTransitionIntervalSecs: 30
|
|
250
251
|
gateTasks: # Per-phase gate definitions
|
|
251
252
|
|
|
253
|
+
# Token metrics & cost tracking
|
|
254
|
+
token-metrics:
|
|
255
|
+
sprintBudgetUsd: null # Set a USD budget per sprint (e.g. 50.0)
|
|
256
|
+
budgetAlertThreshold: 0.8 # Alert when utilization exceeds 80%
|
|
257
|
+
|
|
252
258
|
# MCP server settings
|
|
253
259
|
mcp-server:
|
|
254
260
|
transport: "stdio"
|
|
@@ -271,7 +277,7 @@ jarvis-plugin/
|
|
|
271
277
|
context-memory/ # Session, Todo, Note entities + services
|
|
272
278
|
kanban/ # Card state machine, Sprint, Epic, Grooming
|
|
273
279
|
governance/ # 13 policy rules, validation service
|
|
274
|
-
token-metrics/ # Token usage tracking
|
|
280
|
+
token-metrics/ # Token usage tracking, cost-per-card/sprint, budget alerts
|
|
275
281
|
rag/ # RAG value objects, domain services
|
|
276
282
|
vault/ # Vault document, section, table entities
|
|
277
283
|
domain-map/ # Bounded context detection, domain analysis
|
|
@@ -282,9 +288,9 @@ jarvis-plugin/
|
|
|
282
288
|
config/ # Configuration value objects + defaults
|
|
283
289
|
application/ # Use cases with DTOs (11 bounded contexts)
|
|
284
290
|
infrastructure/ # SQLite repos, Vectra, Ollama, FS adapters
|
|
285
|
-
tools/ #
|
|
291
|
+
tools/ # 20 tool modules (113 tools total)
|
|
286
292
|
hooks/ # 5 hooks (guardrails, compacting, first-run, events, shell-env)
|
|
287
|
-
tests/ #
|
|
293
|
+
tests/ # 2,520+ tests across 85 test suites
|
|
288
294
|
obsidian-vault/ # Structured documentation
|
|
289
295
|
config/ # jarvis.yaml configuration
|
|
290
296
|
```
|
|
@@ -379,7 +385,7 @@ npx tsx scripts/rag-index.ts --clear
|
|
|
379
385
|
|
|
380
386
|
## Test Coverage
|
|
381
387
|
|
|
382
|
-
- **2,
|
|
388
|
+
- **2,520+ tests** across 85 test suites
|
|
383
389
|
- Domain, application, infrastructure, and tools layers tested
|
|
384
390
|
- In-memory SQLite for fast, isolated integration tests
|
|
385
391
|
- `tsc --noEmit` zero errors with all strict flags
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mc1global/opencode-jarvis",
|
|
3
|
-
"version": "0.8.
|
|
3
|
+
"version": "0.8.1",
|
|
4
4
|
"description": "JARVIS Framework - OpenCode native plugin for multi-agent development with DDD architecture",
|
|
5
5
|
"author": "Julio Fabio de O. Chagas <julio.fabio@mc1global.com>",
|
|
6
6
|
"license": "SEE LICENSE IN LICENSE",
|