@agentage/cli 0.1.1 → 0.1.2

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/cli.test.js CHANGED
@@ -18,7 +18,7 @@ describe('CLI Commands', () => {
18
18
  const output = execSync(`tsx ${CLI_PATH} --version`, {
19
19
  encoding: 'utf-8',
20
20
  });
21
- expect(output.trim()).toBe('0.1.1');
21
+ expect(output.trim()).toBe('0.1.2');
22
22
  });
23
23
  test('CLI shows help', () => {
24
24
  const output = execSync(`tsx ${CLI_PATH} --help`, {
package/dist/index.d.ts CHANGED
@@ -1,3 +1,3 @@
1
- export declare const version = "0.1.1";
1
+ export declare const version = "0.1.2";
2
2
  export declare const greet: () => string;
3
3
  //# sourceMappingURL=index.d.ts.map
package/dist/index.js CHANGED
@@ -1,3 +1,3 @@
1
- export const version = '0.1.1';
1
+ export const version = '0.1.2';
2
2
  export const greet = () => 'Hello from AgentKit CLI!';
3
3
  //# sourceMappingURL=index.js.map
@@ -1,7 +1,7 @@
1
1
  import { greet, version } from './index.js';
2
2
  describe('CLI Package', () => {
3
3
  test('version is defined', () => {
4
- expect(version).toBe('0.1.1');
4
+ expect(version).toBe('0.1.2');
5
5
  });
6
6
  test('greet returns correct message', () => {
7
7
  expect(greet()).toBe('Hello from AgentKit CLI!');
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agentage/cli",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "description": "CLI tool for creating and running AI agents locally",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",