idea-manager 1.1.2 → 1.1.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.
- package/package.json +1 -1
- package/src/cli.ts +4 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "idea-manager",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.3",
|
|
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
|
@@ -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');
|
|
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');
|
|
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');
|
|
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');
|
|
220
220
|
await syncPull({ backup: opts.backup });
|
|
221
221
|
});
|
|
222
222
|
|