@saccolabs/tars 1.11.1 → 1.12.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 +3 -1
- package/dash/package-lock.json +8169 -0
- package/{stock_apps/dashboard → dash}/package.json +4 -4
- package/{stock_apps/dashboard → dash}/server.js +19 -2
- package/dist/cli/commands/setup.js +48 -18
- package/dist/cli/commands/setup.js.map +1 -1
- package/dist/cli/commands/status.js +23 -3
- package/dist/cli/commands/status.js.map +1 -1
- package/dist/cli/commands/stop.js +9 -6
- package/dist/cli/commands/stop.js.map +1 -1
- package/dist/config/config.d.ts +2 -0
- package/dist/config/config.js +10 -0
- package/dist/config/config.js.map +1 -1
- package/dist/inference/LlamaCppGenerator.d.ts +24 -0
- package/dist/inference/LlamaCppGenerator.js +262 -0
- package/dist/inference/LlamaCppGenerator.js.map +1 -0
- package/dist/supervisor/dashboard-service.js +11 -5
- package/dist/supervisor/dashboard-service.js.map +1 -1
- package/dist/supervisor/gemini-engine.js +10 -1
- package/dist/supervisor/gemini-engine.js.map +1 -1
- package/dist/supervisor/main.js +62 -0
- package/dist/supervisor/main.js.map +1 -1
- package/package.json +3 -3
- package/stock_apps/dashboard/package-lock.json +0 -8581
- /package/{stock_apps/dashboard → dash}/DEPLOY.md +0 -0
- /package/{stock_apps/dashboard → dash}/README.md +0 -0
- /package/{stock_apps/dashboard → dash}/dash.log +0 -0
- /package/{stock_apps/dashboard → dash}/eslint.config.mjs +0 -0
- /package/{stock_apps/dashboard → dash}/next.config.ts +0 -0
- /package/{stock_apps/dashboard → dash}/postcss.config.mjs +0 -0
- /package/{stock_apps/dashboard → dash}/public/file.svg +0 -0
- /package/{stock_apps/dashboard → dash}/public/globe.svg +0 -0
- /package/{stock_apps/dashboard → dash}/public/next.svg +0 -0
- /package/{stock_apps/dashboard → dash}/public/tars-logo.png +0 -0
- /package/{stock_apps/dashboard → dash}/public/vercel.svg +0 -0
- /package/{stock_apps/dashboard → dash}/public/window.svg +0 -0
- /package/{stock_apps/dashboard → dash}/src/app/globals.css +0 -0
- /package/{stock_apps/dashboard → dash}/src/app/icon.png +0 -0
- /package/{stock_apps/dashboard → dash}/src/app/layout.tsx +0 -0
- /package/{stock_apps/dashboard → dash}/src/app/page.tsx +0 -0
- /package/{stock_apps/dashboard → dash}/src/components/FileExplorer.tsx +0 -0
- /package/{stock_apps/dashboard → dash}/src/components/IntelligencePanel.tsx +0 -0
- /package/{stock_apps/dashboard → dash}/src/components/MetricsPanel.tsx +0 -0
- /package/{stock_apps/dashboard → dash}/src/components/SystemActions.tsx +0 -0
- /package/{stock_apps/dashboard → dash}/src/context/SocketContext.tsx +0 -0
- /package/{stock_apps/dashboard → dash}/src/lib/socket.ts +0 -0
- /package/{stock_apps/dashboard → dash}/tsconfig.json +0 -0
package/README.md
CHANGED
|
@@ -38,14 +38,16 @@ Tars is designed for developers who need an assistant that integrates deeply wit
|
|
|
38
38
|
- **Multi-Agent Orchestration**: Delegates specialized tasks (like coding or research) to sub-agents for better accuracy.
|
|
39
39
|
- **Native Gemini Core**: Integrated directly with the `@google/gemini-cli-core` library for high-speed, direct communication without subprocess overhead.
|
|
40
40
|
- **Autonomous Persistence**: A background "Heartbeat" service manages scheduled tasks and system health automatically.
|
|
41
|
+
- **Local Inference Support**: Tars can now be configured to use local models via **LlamaCpp** (or any OpenAI-compatible API) as an alternative to Gemini, providing 100% privacy and offline capability.
|
|
41
42
|
- **Context-Aware Memory**: Utilizes `GEMINI.md` files to maintain long-term awareness of project structures and decisions.
|
|
42
43
|
|
|
43
44
|
---
|
|
44
45
|
|
|
45
46
|
## Documentation
|
|
46
47
|
|
|
47
|
-
Full documentation is available in the `site/` directory
|
|
48
|
+
Full documentation is available at [tars.saccolabs.com](https://tars.saccolabs.com) or in the `site/` directory.
|
|
48
49
|
|
|
50
|
+
- **Website**: [tars.saccolabs.com](https://tars.saccolabs.com)
|
|
49
51
|
- **Development**: `npm run docs:dev`
|
|
50
52
|
- **Build**: `npm run docs:build`
|
|
51
53
|
- **Live Deployment**: `http://<ULTRON_IP>:5252`
|