@datacore-one/cli 1.0.0 → 1.0.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.
Files changed (3) hide show
  1. package/README.md +24 -36
  2. package/dist/index.js +1 -1
  3. package/package.json +2 -2
package/README.md CHANGED
@@ -1,17 +1,17 @@
1
- # @datacore/cli
1
+ # @datacore-one/cli
2
2
 
3
3
  CLI for setting up and managing Datacore installations - an AI-powered second brain built on GTD methodology.
4
4
 
5
5
  ## Installation
6
6
 
7
7
  ```bash
8
- npm install -g @datacore/cli
8
+ npm install -g @datacore-one/cli
9
9
  ```
10
10
 
11
11
  Or run directly with npx:
12
12
 
13
13
  ```bash
14
- npx @datacore/cli init
14
+ npx @datacore-one/cli init
15
15
  ```
16
16
 
17
17
  ## Quick Start
@@ -23,9 +23,8 @@ datacore init
23
23
  # Check system status
24
24
  datacore doctor
25
25
 
26
- # Daily workflow
27
- datacore today
28
- datacore tomorrow
26
+ # Then use Claude Code for daily workflow
27
+ cd ~/Data && claude
29
28
  ```
30
29
 
31
30
  ## Commands
@@ -34,52 +33,41 @@ datacore tomorrow
34
33
 
35
34
  - `datacore init` - Interactive setup wizard
36
35
  - `datacore doctor` - Check dependencies and health
37
- - `datacore tour` - Interactive walkthrough
38
- - `datacore docs` - Open documentation
39
-
40
- ### Daily Use
41
-
42
- - `datacore today` - Generate daily briefing
43
- - `datacore tomorrow` - End-of-day wrap-up
44
- - `datacore gtd <action>` - GTD workflow commands
36
+ - `datacore ingest <path>` - Import files with AI processing
45
37
 
46
- ### Space Management
38
+ ### Admin
47
39
 
48
- - `datacore space create` - Create a new space
40
+ - `datacore space create <name>` - Create a new space
49
41
  - `datacore space list` - List all spaces
50
- - `datacore space audit <name>` - Audit space structure
51
-
52
- ### Module Management
53
-
54
42
  - `datacore module install <name>` - Install a module
55
43
  - `datacore module list` - List modules
56
44
  - `datacore module update` - Update all modules
57
-
58
- ### File Management
59
-
60
- - `datacore ingest <path>` - Import files with AI processing
61
- - `datacore sync` - Git sync all repos
62
-
63
- ### Configuration
64
-
45
+ - `datacore module remove <name>` - Remove a module
65
46
  - `datacore config show` - Show settings
66
47
  - `datacore config get <key>` - Get a setting
67
48
  - `datacore config set <key> <value>` - Set a setting
68
- - `datacore context rebuild` - Rebuild CLAUDE.md files
49
+ - `datacore snapshot create` - Create installation snapshot
50
+ - `datacore snapshot restore` - Restore from snapshot
69
51
 
70
- ### Automation
52
+ ### Automation (for cron/scripts)
71
53
 
72
- - `datacore nightshift status` - Nightshift queue status
54
+ - `datacore sync` - Git sync all repos
55
+ - `datacore today` - Generate daily briefing
56
+ - `datacore tomorrow` - End-of-day wrap-up
57
+ - `datacore nightshift status` - Queue status
58
+ - `datacore nightshift trigger` - Execute queued AI tasks
59
+ - `datacore nightshift queue "task"` - Add task to AI queue
73
60
  - `datacore cron install` - Set up scheduled tasks
74
61
 
75
62
  ## Architecture
76
63
 
77
- The CLI is a thin wrapper that:
78
- 1. Collects parameters interactively
79
- 2. Invokes Datacore agents via Claude Code
80
- 3. Reports results
64
+ The CLI handles **mechanical/admin** tasks:
65
+ - Setup and configuration
66
+ - Git synchronization
67
+ - Cron job management
68
+ - Module installation
81
69
 
82
- Semantic work (file routing, knowledge extraction, task processing) is handled by agents, not the CLI.
70
+ **Semantic work** (file routing, knowledge extraction, task processing) is handled by Datacore agents via Claude Code.
83
71
 
84
72
  ## Development
85
73
 
package/dist/index.js CHANGED
@@ -9199,7 +9199,7 @@ function restoreFromSnapshot(snapshot, options = {}) {
9199
9199
  }
9200
9200
 
9201
9201
  // src/index.ts
9202
- var VERSION = "1.0.0";
9202
+ var VERSION = "1.0.2";
9203
9203
  var args = process.argv.slice(2);
9204
9204
  var parsed = parseArgs(args);
9205
9205
  async function handleMeta(command, cmdArgs, flags, format) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@datacore-one/cli",
3
- "version": "1.0.0",
3
+ "version": "1.0.2",
4
4
  "description": "CLI for setting up and managing Datacore installations",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -50,7 +50,7 @@
50
50
  "dependencies": {
51
51
  "chalk": "^5.3.0",
52
52
  "yaml": "^2.3.4",
53
- "glob": "^10.3.10",
53
+ "glob": "^11.0.0",
54
54
  "simple-git": "^3.22.0",
55
55
  "semver": "^7.5.4"
56
56
  }