@praveencs/agent 0.9.9 → 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/dist/src/cli/index.js +1 -1
- package/dist/src/cli/repl.js +2 -2
- package/package.json +1 -1
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) => {
|