@4ort/cli 0.8.1 → 0.8.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.
- package/README.md +3 -0
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -308,7 +308,9 @@ Markdown in, markdown out. Auth: your 4ort.net key (nothing extra to set up).
|
|
|
308
308
|
|
|
309
309
|
```bash
|
|
310
310
|
# pipe an LLM draft straight into a doc
|
|
311
|
+
# pipe any LLM CLI's output straight into a doc (claude -p, llm, gemini, …)
|
|
311
312
|
claude -p "600 words on the James Webb telescope" | 4ort docs create -t "JWST"
|
|
313
|
+
llm "600 words on the James Webb telescope" | 4ort docs create -t "JWST"
|
|
312
314
|
```
|
|
313
315
|
|
|
314
316
|
### `4ort sheets` — spreadsheets on sheets.4ort.net
|
|
@@ -460,6 +462,7 @@ The CLI is designed to chain. Some recipes:
|
|
|
460
462
|
# pipe answer into another LLM
|
|
461
463
|
4ort kg article-context apple-inc \
|
|
462
464
|
| claude -p "draft a 600-word piece based on these facts"
|
|
465
|
+
# (works the same with any LLM CLI — llm, gemini, ollama run, …)
|
|
463
466
|
|
|
464
467
|
# match a list of brand names from a CSV
|
|
465
468
|
xargs -I {} 4ort kg match {} --json < brands.csv \
|
package/dist/index.js
CHANGED
|
@@ -34,7 +34,7 @@ const program = new Command();
|
|
|
34
34
|
program
|
|
35
35
|
.name("4ort")
|
|
36
36
|
.description("Unified CLI for the 4ort ecosystem — hosting, knowledge graph, and more")
|
|
37
|
-
.version("0.8.
|
|
37
|
+
.version("0.8.2");
|
|
38
38
|
// ─────────────────────────────────────────────────────────────────────
|
|
39
39
|
// 4ort.net subdomain hosting
|
|
40
40
|
// ─────────────────────────────────────────────────────────────────────
|