@praveencs/agent 0.9.8 → 0.9.10
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 +52 -2
- package/dist/src/cli/index.js +1 -1
- package/dist/src/cli/repl.js +2 -2
- package/dist/src/server/app.d.ts.map +1 -1
- package/dist/src/server/app.js +535 -31
- package/dist/src/server/app.js.map +1 -1
- package/docs/API.md +304 -0
- package/docs/CONFIGURATION.md +189 -0
- package/docs/articles/09-agent-studio.md +154 -0
- package/docs/articles/10-llm-providers.md +118 -0
- package/docs/articles/11-policy-approvals.md +118 -0
- package/docs/articles/12-daemon-automation.md +123 -0
- package/docs/studio-screenshot-1.png +0 -0
- package/docs/studio-screenshot-agent-console-2.png +0 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
$ agent
|
|
10
10
|
|
|
11
11
|
╭────────────────────────────────────────────────╮
|
|
12
|
-
│ 🤖 Agent Runtime v0.8
|
|
12
|
+
│ 🤖 Agent Runtime v0.9.8 │
|
|
13
13
|
│ Project: my-app │
|
|
14
14
|
│ Model: gpt-4o │ 3 skills │ 2 commands │
|
|
15
15
|
╰────────────────────────────────────────────────╯
|
|
@@ -391,6 +391,46 @@ agent memory add "Staging server is at 10.0.0.5" --category fact
|
|
|
391
391
|
|
|
392
392
|
---
|
|
393
393
|
|
|
394
|
+
### 11. Agent Studio
|
|
395
|
+
|
|
396
|
+
The web-based management console for all agent subsystems:
|
|
397
|
+
|
|
398
|
+
```bash
|
|
399
|
+
agent studio
|
|
400
|
+
# → Agent Studio running at http://localhost:3333
|
|
401
|
+
```
|
|
402
|
+
|
|
403
|
+

|
|
404
|
+
|
|
405
|
+
Studio provides:
|
|
406
|
+
- **Dashboard** — View all active agent instances (REPL + daemon)
|
|
407
|
+
- **Console** — Real-time terminal with command relay and approval flow
|
|
408
|
+
- **Goals & Plans** — Create goals, view tasks, track progress
|
|
409
|
+
- **Skills Manager** — CRUD for skill definitions (skill.json + prompt.md)
|
|
410
|
+
- **Commands** — Create/delete lightweight command templates
|
|
411
|
+
- **Scripts** — Create/delete local automation scripts
|
|
412
|
+
- **Plugins** — View and remove installed plugin bundles
|
|
413
|
+
- **Daemon Control** — Start/stop background worker, view logs
|
|
414
|
+
- **Memory Explorer** — Search, add, and browse persistent memories
|
|
415
|
+
|
|
416
|
+

|
|
417
|
+
|
|
418
|
+
---
|
|
419
|
+
|
|
420
|
+
### 12. Auto-Update
|
|
421
|
+
|
|
422
|
+
The CLI automatically checks for updates on startup:
|
|
423
|
+
|
|
424
|
+
```bash
|
|
425
|
+
# Manual update
|
|
426
|
+
agent update
|
|
427
|
+
```
|
|
428
|
+
|
|
429
|
+
On every launch, the agent fetches the latest npm version, compares semver,
|
|
430
|
+
and installs updates in the background without blocking your session.
|
|
431
|
+
|
|
432
|
+
---
|
|
433
|
+
|
|
394
434
|
## 🤖 Full CLI Reference
|
|
395
435
|
|
|
396
436
|
### Core
|
|
@@ -402,6 +442,8 @@ agent memory add "Staging server is at 10.0.0.5" --category fact
|
|
|
402
442
|
| `agent init` | Initialize project configuration |
|
|
403
443
|
| `agent config --init` | Set up global config |
|
|
404
444
|
| `agent doctor` | System health check |
|
|
445
|
+
| `agent update` | Update CLI to latest version |
|
|
446
|
+
| `agent studio` | Launch web-based management console |
|
|
405
447
|
|
|
406
448
|
### Skills
|
|
407
449
|
|
|
@@ -505,7 +547,7 @@ agent memory add "Staging server is at 10.0.0.5" --category fact
|
|
|
505
547
|
|
|
506
548
|
## 📚 Learning Series
|
|
507
549
|
|
|
508
|
-
Understand the agent architecture with our
|
|
550
|
+
Understand the agent architecture with our 12-part deep-dive:
|
|
509
551
|
|
|
510
552
|
1. [**Vision & Architecture**](docs/articles/01-vision-architecture.md) — The high-level design
|
|
511
553
|
2. [**The Brain (Planner)**](docs/articles/02-goal-decomposition.md) — Goal decomposition
|
|
@@ -515,6 +557,14 @@ Understand the agent architecture with our 7-part deep-dive:
|
|
|
515
557
|
6. [**Plugin Ecosystem**](docs/articles/06-plugin-ecosystem.md) — Hooks, commands, multi-CLI
|
|
516
558
|
7. [**Interactive CLI**](docs/articles/07-interactive-cli.md) — The conversational experience
|
|
517
559
|
8. [**Scripts System**](docs/articles/08-scripts-system.md) — Non-LLM deterministic automation
|
|
560
|
+
9. [**Agent Studio**](docs/articles/09-agent-studio.md) — Web management console
|
|
561
|
+
10. [**LLM Providers**](docs/articles/10-llm-providers.md) — Provider configuration & routing
|
|
562
|
+
11. [**Policy & Approvals**](docs/articles/11-policy-approvals.md) — Permission-gated execution
|
|
563
|
+
12. [**Daemon & Automation**](docs/articles/12-daemon-automation.md) — Background task processing
|
|
564
|
+
|
|
565
|
+
### Reference
|
|
566
|
+
- [**REST API Reference**](docs/API.md) — Complete Studio API docs
|
|
567
|
+
- [**Configuration Reference**](docs/CONFIGURATION.md) — All config options
|
|
518
568
|
|
|
519
569
|
### Comparisons
|
|
520
570
|
- [**vs OpenClaw**](docs/comparisons/openclaw.md) — How we differ from AI OS projects
|
package/dist/src/cli/index.js
CHANGED
|
@@ -24,7 +24,7 @@ export function createCLI() {
|
|
|
24
24
|
program
|
|
25
25
|
.name('agent')
|
|
26
26
|
.description('Agent Runtime — autonomous, goal-oriented AI agent with skills, plans, memory, and permissioned tools')
|
|
27
|
-
.version('0.9.
|
|
27
|
+
.version('0.9.9')
|
|
28
28
|
.option('--verbose', 'Enable verbose output')
|
|
29
29
|
.option('--no-color', 'Disable colored output')
|
|
30
30
|
.option('--config <path>', 'Path to config file');
|
package/dist/src/cli/repl.js
CHANGED
|
@@ -66,7 +66,7 @@ export async function startREPL() {
|
|
|
66
66
|
const providerConfig = config.models.providers[defaultProvider];
|
|
67
67
|
const modelName = providerConfig?.model ?? defaultProvider;
|
|
68
68
|
renderBanner(config, {
|
|
69
|
-
version: '0.9.
|
|
69
|
+
version: '0.9.9',
|
|
70
70
|
project: projectName,
|
|
71
71
|
skillCount: skillLoader.list().length,
|
|
72
72
|
commandCount: commandLoader.list().length,
|
|
@@ -74,7 +74,7 @@ export async function startREPL() {
|
|
|
74
74
|
provider: modelName,
|
|
75
75
|
});
|
|
76
76
|
// ─── Auto-update check (non-blocking) ───
|
|
77
|
-
await checkForUpdates('0.9.
|
|
77
|
+
await checkForUpdates('0.9.9');
|
|
78
78
|
// ─── Prepare tool definitions for LLM ───
|
|
79
79
|
const allTools = registry.list();
|
|
80
80
|
const toolDefs = allTools.map((t) => {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"app.d.ts","sourceRoot":"","sources":["../../../src/server/app.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"app.d.ts","sourceRoot":"","sources":["../../../src/server/app.ts"],"names":[],"mappings":"AAiBA,wBAAgB,kBAAkB,uGAqmBjC"}
|