agent-nuvira 1.26.0 → 1.28.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 (2) hide show
  1. package/README.md +6 -0
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1393,6 +1393,9 @@ npx tsc --noEmit
1393
1393
  | 6.6 | VerifyModule — security scan + explicit verification pipeline | ✅ Complete (v1.21.0) |
1394
1394
  | 6.7 | PlanModule + EditModule — goal decomposition + file change generation | ✅ Complete (v1.22.0) |
1395
1395
  | 6.8 | ExecuteModule + TestModule — command execution + sandboxed testing | ✅ Complete (v1.23.0) |
1396
+ | **Phase 9: Safe Execution Layer** | | |
1397
+ | 9.1 | SafeExecutionLayer — file validation, Docker sandbox, safe LLM calls, EventBus integration | ✅ Complete (v1.26.0) |
1398
+ | 9.2 | VerifyModule EventBus tests — 9 emission tests for SAFE_EXEC_* events | ✅ Complete (v1.26.0) |
1396
1399
 
1397
1400
  ---
1398
1401
 
@@ -1425,6 +1428,8 @@ npx tsc --noEmit
1425
1428
  | **v1.15.6** | Aug 2026 | Firecrawl integration for web search |
1426
1429
  | **v1.16.0** | Aug 2026 | Comprehensive MCP README docs, SSE header support |
1427
1430
  | **v1.16.1** | Aug 2026 | Interactive dev mode enhancements — failure analysis, follow-up suggestions, /fix command, 35 new unit tests |
1431
+ | **v1.26.0** | Aug 2026 | Phase 9 — SafeExecutionLayer module (file validation, Docker sandbox, safe LLM calls) + 32 new tests (23 SafeExec + 9 Verify Bus) |
1432
+ | **v1.27.0** | Aug 2026 | Website + SVG — Phase 9 SafeExecutionLayer, phase progress 9/9, 2,207 tests |
1428
1433
 
1429
1434
  ---
1430
1435
 
@@ -1514,6 +1519,7 @@ npx tsc --noEmit
1514
1519
  | **EditModule (Phase 7)** | File change generation — AST syntax validation, token-budget-aware file selection, 2-attempt retry loop, model-switch support |
1515
1520
  | **ExecuteModule (Phase 8)** | Command execution — 5-strategy command inference (backtick, Run prefix, npm patterns, file extension), npm test validation |
1516
1521
  | **TestModule (Phase 8)** | Sandboxed test execution — temp directory, multi-framework output parsing (vitest, jest, generic), EventBus events |
1522
+ | **SafeExecutionLayer (Phase 9)** | 3-domain safety system — file validation (size, gitignore, syntax, security scan), Docker sandbox (resource limits, container lifecycle), safe LLM calls (injection guardrail, prompt/response truncation, exponential backoff with circuit breaker) |
1517
1523
 
1518
1524
  ### Agent Catalog — 15 Agent Roles & Management
1519
1525
  | Agent/Component | Type | Description |
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agent-nuvira",
3
- "version": "1.26.0",
3
+ "version": "1.28.0",
4
4
  "description": "Agent-Nuvira: Multi-agent AI coding CLI — plan, write, review, test, and publish code with local models (Ollama) or cloud APIs (Groq, NVIDIA NIM, Google Gemini, OpenRouter)",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",