agent-nuvira 1.17.0 → 1.18.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/README.md
CHANGED
|
@@ -15,7 +15,7 @@ agent-nuvira config list
|
|
|
15
15
|
|
|
16
16
|
## Features
|
|
17
17
|
|
|
18
|
-
- **Unified interface** across
|
|
18
|
+
- **Unified interface** across 17+ providers: 5 built-in (local/Ollama, Groq, NVIDIA NIM, Google Gemini, OpenRouter) + 12 configurable via environment variables (OpenAI, Anthropic, Mistral, Cohere, Together, DeepInfra, Fireworks, Perplexity, Azure, LM Studio, Anyscale, vLLM)
|
|
19
19
|
- **Model discovery** — `agent-nuvira models` lists available models from any configured provider, with search/filter support
|
|
20
20
|
- **Interactive chat** with conversation history, file context, and session commands
|
|
21
21
|
- **AI-assisted file editing** with dry-run mode for safe previews
|
|
@@ -27,7 +27,7 @@ agent-nuvira config list
|
|
|
27
27
|
- **Context-preserving model switching** — `agent-nuvira model switch` changes providers mid-session without losing agent state
|
|
28
28
|
- **Skill compiler** — automatically extracts reusable patterns from successful agent runs into executable skills (`agent-nuvira skill run`)
|
|
29
29
|
- **Context-window memory pruner** — prevents long multi-agent chains from exceeding model token limits
|
|
30
|
-
- **Complete streaming support** — all
|
|
30
|
+
- **Complete streaming support** — all 17+ providers support real-time token-by-token output
|
|
31
31
|
- **Cost tracking** — per-provider/session/monthly costs with `agent-nuvira stats cost`
|
|
32
32
|
- **Prompt history search** — keyword and semantic search across past conversations (`/search`, `buff history`)
|
|
33
33
|
- **Native embedding support** — 3-tier embedder with `@huggingface/transformers` for 10x faster semantic search
|
|
@@ -53,6 +53,7 @@ agent-nuvira config list
|
|
|
53
53
|
- **A2A (Agent-to-Agent) Protocol** — inter-agent communication standard for multi-machine collaboration
|
|
54
54
|
- **CI/CD headless mode** — `buff ci` for automated pipelines with GitHub Actions integration
|
|
55
55
|
- **npm publishing & one-line install** — `npx agent-nuvira` and `npx buff` for zero-setup onboarding
|
|
56
|
+
- **Marketing website** — `website/` directory with a full landing page, SEO meta tags, and Netlify-ready deployment config
|
|
56
57
|
- **Interactive development mode** — `buff execute` without a goal launches a guided interactive loop with session save/resume, follow-up suggestions, and failure analysis
|
|
57
58
|
- **Session persistence** — save and resume development sessions across CLI restarts with full history
|
|
58
59
|
- **Failure analysis** — automatic diagnosis of agent failures with specific recovery options per agent type
|
|
@@ -1012,6 +1013,21 @@ Adapter Adapter Adapter Adapter Adapter
|
|
|
1012
1013
|
└──────────────────────────────┘
|
|
1013
1014
|
```
|
|
1014
1015
|
|
|
1016
|
+
### Website (Marketing Site)
|
|
1017
|
+
|
|
1018
|
+
The `website/` directory contains a complete static landing page for Agent-Nuvira (`agent-nuvira.com`):
|
|
1019
|
+
|
|
1020
|
+
| File | Purpose |
|
|
1021
|
+
|---|---|
|
|
1022
|
+
| `index.html` | Full marketing landing page with hero, features, pipeline visualization, provider cards, quickstart guide, extensions, and comparison table |
|
|
1023
|
+
| `styles.css` | Complete styling with gradient text, animated particles, responsive grid, and dark theme |
|
|
1024
|
+
| `script.js` | Interactive elements: scroll animations, copy-to-clipboard, mobile nav toggle, particle system |
|
|
1025
|
+
| `_redirects` | Netlify/Cloudflare Page redirect rules |
|
|
1026
|
+
| `_headers` | Custom HTTP security and cache headers |
|
|
1027
|
+
| `assets/` | Hero images, screenshots, and OG meta assets |
|
|
1028
|
+
|
|
1029
|
+
The site is pre-configured for Netlify deployment with zero-configuration.
|
|
1030
|
+
|
|
1015
1031
|
### Key Modules
|
|
1016
1032
|
|
|
1017
1033
|
| Module | Path | Purpose |
|
|
@@ -1323,11 +1339,13 @@ npx tsc --noEmit
|
|
|
1323
1339
|
|
|
1324
1340
|
**Phases 1–3 (25 phases) are complete.** Phase 4 (Industry Standards & Autonomous Polish) is in progress. See [UPGRADE_ROADMAP.md](./UPGRADE_ROADMAP.md) for the full implementation journey.
|
|
1325
1341
|
|
|
1342
|
+
> 📊 **Product strategy and pitch materials:** [PRODUCT_STRATEGY.md](./PRODUCT_STRATEGY.md) — Competitive landscape, positioning map, OKR framework, and risk register. [PITCH_DECK.md](./PITCH_DECK.md) — 10-slide investor presentation outline with talking points and data.
|
|
1343
|
+
|
|
1326
1344
|
| Phase | Feature | Status |
|
|
1327
1345
|
|---|---|---|
|
|
1328
1346
|
| **Phase 1: Quick Wins** | | |
|
|
1329
1347
|
| 1.1 | Auto-discovery plugin loader — drop `.js` into `~/.buff/plugins/` | ✅ Complete |
|
|
1330
|
-
| 1.2 | Complete streaming support — all
|
|
1348
|
+
| 1.2 | Complete streaming support — all 17+ providers | ✅ Complete |
|
|
1331
1349
|
| 1.3 | Cost tracking — per-provider/session/monthly | ✅ Complete |
|
|
1332
1350
|
| 1.4 | `buff init` — interactive project scaffolding | ✅ Complete |
|
|
1333
1351
|
| 1.5 | Prompt history search — keyword + semantic | ✅ Complete |
|
|
@@ -1373,7 +1391,7 @@ npx tsc --noEmit
|
|
|
1373
1391
|
|
|
1374
1392
|
| Version | Date | Key Changes |
|
|
1375
1393
|
|---------|------|-------------|
|
|
1376
|
-
| **v1.0.0** | Apr 2026 | Initial release — Core CLI with chat, 5 providers, config, models |
|
|
1394
|
+
| **v1.0.0** | Apr 2026 | Initial release — Core CLI with chat, 5 built-in providers (expandable to 17+ via plugins), config, models |
|
|
1377
1395
|
| **v1.1.0** | Apr 2026 | Model discovery with search/filter |
|
|
1378
1396
|
| **v1.2.0** | Apr 2026 | AI-assisted file editing (edit command) |
|
|
1379
1397
|
| **v1.3.0** | May 2026 | Implementation plans (plan command) |
|
|
@@ -1406,10 +1424,10 @@ npx tsc --noEmit
|
|
|
1406
1424
|
### Phase 0: Foundation — Core CLI & Provider Layer
|
|
1407
1425
|
| Feature | Description |
|
|
1408
1426
|
|---------|-------------|
|
|
1409
|
-
| **
|
|
1427
|
+
| **17+ Inference Providers** | 5 built-in (Groq, NVIDIA NIM, Google Gemini, OpenRouter, Local) + 12 configurable via env vars (OpenAI, Anthropic, Mistral, Cohere, Together, DeepInfra, Fireworks, Perplexity, Azure, LM Studio, Anyscale, vLLM) |
|
|
1410
1428
|
| **Unified CLI** | 25+ commands via Commander.js with shared options |
|
|
1411
1429
|
| **Config System** | JSON config file + env vars + CLI flags priority chain |
|
|
1412
|
-
| **Streaming** | Real-time token-by-token output for all
|
|
1430
|
+
| **Streaming** | Real-time token-by-token output for all 17+ providers |
|
|
1413
1431
|
| **Response Caching** | SQLite-backed cache with configurable TTL |
|
|
1414
1432
|
| **Chat Interface** | Interactive chat with conversation history and `/` commands |
|
|
1415
1433
|
| **File Editing** | AI-assisted file editing with dry-run mode |
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"factory.d.ts","sourceRoot":"","sources":["../../src/inference/factory.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,iBAAiB,EAAE,MAAM,gBAAgB,CAAC;AAMnD,OAAO,EAAE,YAAY,EAAE,cAAc,EAAE,MAAM,oBAAoB,CAAC;AAGlE;;;;;;GAMG;AACH,qBAAa,eAAe;IAC1B;;;;;;OAMG;IACH,MAAM,CAAC,cAAc,CAAC,IAAI,EAAE,YAAY,GAAG,MAAM,EAAE,MAAM,EAAE,cAAc,GAAG,iBAAiB;
|
|
1
|
+
{"version":3,"file":"factory.d.ts","sourceRoot":"","sources":["../../src/inference/factory.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,iBAAiB,EAAE,MAAM,gBAAgB,CAAC;AAMnD,OAAO,EAAE,YAAY,EAAE,cAAc,EAAE,MAAM,oBAAoB,CAAC;AAGlE;;;;;;GAMG;AACH,qBAAa,eAAe;IAC1B;;;;;;OAMG;IACH,MAAM,CAAC,cAAc,CAAC,IAAI,EAAE,YAAY,GAAG,MAAM,EAAE,MAAM,EAAE,cAAc,GAAG,iBAAiB;CA0B9F"}
|
|
@@ -38,7 +38,8 @@ export class ProviderFactory {
|
|
|
38
38
|
return registry.createProviderFromPlugin(type, config);
|
|
39
39
|
}
|
|
40
40
|
throw new Error(`Unknown provider type: '${type}'. Available built-in: nim, gemini, openrouter, groq, local. ` +
|
|
41
|
-
`Check ~/.buff/plugins/ for auto-discovered plugins
|
|
41
|
+
`Check ~/.buff/plugins/ for auto-discovered plugins. ` +
|
|
42
|
+
`Supports 17+ total providers via env vars and plugin system (OpenAI, Anthropic, Mistral, Cohere, Together, DeepInfra, Fireworks, Perplexity, Azure, LM Studio, Anyscale, vLLM and more).`);
|
|
42
43
|
}
|
|
43
44
|
}
|
|
44
45
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"factory.js","sourceRoot":"","sources":["../../src/inference/factory.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,UAAU,EAAE,MAAM,kBAAkB,CAAC;AAC9C,OAAO,EAAE,aAAa,EAAE,MAAM,qBAAqB,CAAC;AACpD,OAAO,EAAE,iBAAiB,EAAE,MAAM,yBAAyB,CAAC;AAC5D,OAAO,EAAE,WAAW,EAAE,MAAM,mBAAmB,CAAC;AAChD,OAAO,EAAE,YAAY,EAAE,MAAM,oBAAoB,CAAC;AAElD,OAAO,EAAE,iBAAiB,EAAE,MAAM,wBAAwB,CAAC;AAE3D;;;;;;GAMG;AACH,MAAM,OAAO,eAAe;IAC1B;;;;;;OAMG;IACH,MAAM,CAAC,cAAc,CAAC,IAA2B,EAAE,MAAsB;QACvE,QAAQ,IAAI,EAAE,CAAC;YACb,KAAK,KAAK;gBACR,OAAO,IAAI,UAAU,CAAC,MAAM,CAAC,CAAC;YAChC,KAAK,QAAQ;gBACX,OAAO,IAAI,aAAa,CAAC,MAAM,CAAC,CAAC;YACnC,KAAK,YAAY;gBACf,OAAO,IAAI,iBAAiB,CAAC,MAAM,CAAC,CAAC;YACvC,KAAK,MAAM;gBACT,OAAO,IAAI,WAAW,CAAC,MAAM,CAAC,CAAC;YACjC,KAAK,OAAO;gBACV,OAAO,IAAI,YAAY,CAAC,MAAM,CAAC,CAAC;YAClC,OAAO,CAAC,CAAC,CAAC;gBACR,sDAAsD;gBACtD,MAAM,QAAQ,GAAG,iBAAiB,EAAE,CAAC;gBACrC,IAAI,QAAQ,CAAC,SAAS,CAAC,IAAI,CAAC,EAAE,CAAC;oBAC7B,OAAO,QAAQ,CAAC,wBAAwB,CAAC,IAAI,EAAE,MAAM,CAAC,CAAC;gBACzD,CAAC;gBACD,MAAM,IAAI,KAAK,CACb,2BAA2B,IAAI,+DAA+D;oBAC9F,
|
|
1
|
+
{"version":3,"file":"factory.js","sourceRoot":"","sources":["../../src/inference/factory.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,UAAU,EAAE,MAAM,kBAAkB,CAAC;AAC9C,OAAO,EAAE,aAAa,EAAE,MAAM,qBAAqB,CAAC;AACpD,OAAO,EAAE,iBAAiB,EAAE,MAAM,yBAAyB,CAAC;AAC5D,OAAO,EAAE,WAAW,EAAE,MAAM,mBAAmB,CAAC;AAChD,OAAO,EAAE,YAAY,EAAE,MAAM,oBAAoB,CAAC;AAElD,OAAO,EAAE,iBAAiB,EAAE,MAAM,wBAAwB,CAAC;AAE3D;;;;;;GAMG;AACH,MAAM,OAAO,eAAe;IAC1B;;;;;;OAMG;IACH,MAAM,CAAC,cAAc,CAAC,IAA2B,EAAE,MAAsB;QACvE,QAAQ,IAAI,EAAE,CAAC;YACb,KAAK,KAAK;gBACR,OAAO,IAAI,UAAU,CAAC,MAAM,CAAC,CAAC;YAChC,KAAK,QAAQ;gBACX,OAAO,IAAI,aAAa,CAAC,MAAM,CAAC,CAAC;YACnC,KAAK,YAAY;gBACf,OAAO,IAAI,iBAAiB,CAAC,MAAM,CAAC,CAAC;YACvC,KAAK,MAAM;gBACT,OAAO,IAAI,WAAW,CAAC,MAAM,CAAC,CAAC;YACjC,KAAK,OAAO;gBACV,OAAO,IAAI,YAAY,CAAC,MAAM,CAAC,CAAC;YAClC,OAAO,CAAC,CAAC,CAAC;gBACR,sDAAsD;gBACtD,MAAM,QAAQ,GAAG,iBAAiB,EAAE,CAAC;gBACrC,IAAI,QAAQ,CAAC,SAAS,CAAC,IAAI,CAAC,EAAE,CAAC;oBAC7B,OAAO,QAAQ,CAAC,wBAAwB,CAAC,IAAI,EAAE,MAAM,CAAC,CAAC;gBACzD,CAAC;gBACD,MAAM,IAAI,KAAK,CACb,2BAA2B,IAAI,+DAA+D;oBAC9F,sDAAsD;oBACtD,0LAA0L,CAC3L,CAAC;YACJ,CAAC;QACH,CAAC;IACH,CAAC;CACF"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "agent-nuvira",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.18.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",
|