@fractary/codex-cli 0.10.15 → 0.10.16

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/README.md CHANGED
@@ -12,33 +12,29 @@ npm install -g @fractary/codex-cli
12
12
 
13
13
  ```bash
14
14
  # Initialize configuration
15
- fractary-codex init
15
+ fractary-codex configure
16
16
 
17
17
  # Fetch a document
18
- fractary-codex fetch codex://myorg/myproject/README.md
18
+ fractary-codex document-fetch codex://myorg/myproject/README.md
19
19
 
20
20
  # Check cache status
21
- fractary-codex cache stats
21
+ fractary-codex cache-stats
22
22
 
23
23
  # Run health check
24
- fractary-codex health
24
+ fractary-codex cache-health
25
25
  ```
26
26
 
27
27
  ## Commands Overview
28
28
 
29
29
  | Command | Description |
30
30
  |---------|-------------|
31
- | `init` | Initialize configuration |
32
- | `fetch <uri>` | Fetch documents by codex:// URI |
33
- | `cache list` | List cached documents |
34
- | `cache clear` | Clear cache entries |
35
- | `cache stats` | Show cache statistics |
36
- | `sync project` | Sync single project |
37
- | `sync org` | Sync entire organization |
38
- | `types list` | List artifact types |
39
- | `types add` | Add custom type |
40
- | `health` | Run diagnostics |
41
- | `migrate` | Migrate v2.x config to v3.0 |
31
+ | `configure` | Initialize configuration |
32
+ | `document-fetch <uri>` | Fetch documents by codex:// URI |
33
+ | `cache-list` | List cached documents |
34
+ | `cache-clear` | Clear cache entries |
35
+ | `cache-stats` | Show cache statistics |
36
+ | `cache-health` | Run diagnostics |
37
+ | `sync` | Sync project with codex repository |
42
38
 
43
39
  ## Documentation
44
40