idea-manager 1.1.2 → 1.1.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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/cli.ts +5 -5
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "idea-manager",
3
- "version": "1.1.2",
3
+ "version": "1.1.4",
4
4
  "description": "Turn free-form brainstorming into structured task trees with AI-generated prompts. Built-in MCP Server for autonomous AI agent execution. Local-first with SQLite, cross-PC sync via Git.",
5
5
  "keywords": [
6
6
  "brainstorm",
package/src/cli.ts CHANGED
@@ -100,7 +100,7 @@ program
100
100
  .option('--timeout <minutes>', 'Per-task timeout in minutes', '10')
101
101
  .option('--dry-run', 'Show what would be executed without running')
102
102
  .action(async (opts) => {
103
- const { startWatcher } = await import('./lib/watcher');
103
+ const { startWatcher } = await import('./lib/watcher.ts');
104
104
  await startWatcher({
105
105
  projectId: opts.project,
106
106
  intervalMs: parseInt(opts.interval) * 1000,
@@ -190,7 +190,7 @@ const syncCmd = program
190
190
  .command('sync')
191
191
  .description('Sync data via GitHub repository')
192
192
  .action(async () => {
193
- const { syncStatus } = await import('./lib/sync');
193
+ const { syncStatus } = await import('./lib/sync/index.ts');
194
194
  await syncStatus();
195
195
  });
196
196
 
@@ -198,7 +198,7 @@ syncCmd
198
198
  .command('init')
199
199
  .description('Initialize sync with a GitHub repository')
200
200
  .action(async () => {
201
- const { syncInit } = await import('./lib/sync');
201
+ const { syncInit } = await import('./lib/sync/index.ts');
202
202
  await syncInit();
203
203
  });
204
204
 
@@ -207,7 +207,7 @@ syncCmd
207
207
  .description('Export data and push to GitHub')
208
208
  .option('-m, --message <msg>', 'Custom commit message')
209
209
  .action(async (opts) => {
210
- const { syncPush } = await import('./lib/sync');
210
+ const { syncPush } = await import('./lib/sync/index.ts');
211
211
  await syncPush(opts.message);
212
212
  });
213
213
 
@@ -216,7 +216,7 @@ syncCmd
216
216
  .description('Pull from GitHub and import data')
217
217
  .option('--no-backup', 'Skip database backup before import')
218
218
  .action(async (opts) => {
219
- const { syncPull } = await import('./lib/sync');
219
+ const { syncPull } = await import('./lib/sync/index.ts');
220
220
  await syncPull({ backup: opts.backup });
221
221
  });
222
222