@fractary/faber-cli 1.3.0 → 1.3.1

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.
@@ -80,7 +80,7 @@ logs/session-*.md
80
80
  */
81
81
  function createDefaultConfig(preset) {
82
82
  const baseConfig = {
83
- version: '1.0.0',
83
+ version: '1.3.1',
84
84
  preset,
85
85
  // Work tracking configuration
86
86
  work: {
package/dist/index.js CHANGED
@@ -14,7 +14,7 @@ import { createSpecCommand } from './commands/spec/index.js';
14
14
  import { createLogsCommand } from './commands/logs/index.js';
15
15
  import { createInitCommand } from './commands/init.js';
16
16
  import { createPlanCommand } from './commands/plan/index.js';
17
- const version = '1.0.0';
17
+ const version = '1.3.1';
18
18
  /**
19
19
  * Create and configure the main CLI program
20
20
  */
@@ -100,7 +100,7 @@ export class AnthropicClient {
100
100
  ...planJson,
101
101
  plan_id: planId,
102
102
  created_by: 'cli',
103
- cli_version: '1.0.0',
103
+ cli_version: '1.3.1',
104
104
  created_at: new Date().toISOString(),
105
105
  issue: {
106
106
  source: 'github',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fractary/faber-cli",
3
- "version": "1.3.0",
3
+ "version": "1.3.1",
4
4
  "description": "FABER CLI - Command-line interface for FABER development toolkit",
5
5
  "main": "dist/index.js",
6
6
  "bin": {
@@ -37,7 +37,7 @@
37
37
  },
38
38
  "dependencies": {
39
39
  "@fractary/core": "^0.2.0",
40
- "@fractary/faber": "*",
40
+ "@fractary/faber": "^2.1.1",
41
41
  "chalk": "^5.0.0",
42
42
  "commander": "^12.0.0"
43
43
  },