ai-phase-builder 1.0.3 → 1.0.4

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/index.js CHANGED
@@ -15,7 +15,7 @@ const program = new Command();
15
15
  program
16
16
  .name('ai-phases')
17
17
  .description('AI-powered project phase orchestration for Cursor IDE')
18
- .version('1.0.2');
18
+ .version('1.0.3');
19
19
  // Check for first-run setup
20
20
  const isFirstRun = await ensureGlobalConfig();
21
21
  if (isFirstRun && process.argv[2] !== 'config' && process.argv[2] !== '--help' && process.argv[2] !== '-h') {
@@ -52,7 +52,7 @@ export async function saveProjectConfig(config) {
52
52
  }
53
53
  export function getDefaultGlobalConfig() {
54
54
  return {
55
- version: '1.0.2',
55
+ version: '1.0.3',
56
56
  setup_complete: false,
57
57
  cursor: {
58
58
  enabled: true,
@@ -226,7 +226,7 @@ export async function runSetupWizard() {
226
226
  },
227
227
  ]);
228
228
  const config = {
229
- version: '1.0.2',
229
+ version: '1.0.3',
230
230
  setup_complete: true,
231
231
  cursor: {
232
232
  enabled: true,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ai-phase-builder",
3
- "version": "1.0.3",
3
+ "version": "1.0.4",
4
4
  "description": "AI-powered project phase orchestration for Cursor IDE. Transform ideas into structured development phases with intelligent handovers, rollback support, and Context7 integration.",
5
5
  "main": "dist/index.js",
6
6
  "bin": {