@fractary/codex-cli 0.10.15 → 0.10.19
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 +11 -15
- package/dist/cli.cjs +632 -1811
- package/dist/cli.cjs.map +1 -1
- package/dist/cli.js +626 -1804
- package/dist/cli.js.map +1 -1
- package/package.json +2 -2
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
|
|
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
|
|
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
|
-
| `
|
|
32
|
-
| `fetch <uri>` | Fetch documents by codex:// URI |
|
|
33
|
-
| `cache
|
|
34
|
-
| `cache
|
|
35
|
-
| `cache
|
|
36
|
-
| `
|
|
37
|
-
| `sync
|
|
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
|
|