@praveencs/agent 0.8.2 → 0.8.3

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.
@@ -21,7 +21,7 @@ export function createCLI() {
21
21
  program
22
22
  .name('agent')
23
23
  .description('Agent Runtime — autonomous, goal-oriented AI agent with skills, plans, memory, and permissioned tools')
24
- .version('0.8.0')
24
+ .version('0.8.2')
25
25
  .option('--verbose', 'Enable verbose output')
26
26
  .option('--no-color', 'Disable colored output')
27
27
  .option('--config <path>', 'Path to config file');
@@ -48,7 +48,7 @@ export async function startREPL() {
48
48
  const providerConfig = config.models.providers[defaultProvider];
49
49
  const modelName = providerConfig?.model ?? defaultProvider;
50
50
  renderBanner(config, {
51
- version: '0.8.0',
51
+ version: '0.8.2',
52
52
  project: projectName,
53
53
  skillCount: skillLoader.list().length,
54
54
  commandCount: commandLoader.list().length,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@praveencs/agent",
3
- "version": "0.8.2",
3
+ "version": "0.8.3",
4
4
  "files": [
5
5
  "dist",
6
6
  "bin",
@@ -78,4 +78,4 @@
78
78
  "tsx": "^4.19.2",
79
79
  "typescript": "^5.7.3"
80
80
  }
81
- }
81
+ }