create-thally-docs 0.8.0 → 0.9.0
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 -4
- package/dist/{chunk-5GIGIHI5.js → chunk-BW7J7DJV.js} +259 -334
- package/dist/chunk-JNDRCCJV.js +232 -0
- package/dist/chunk-PJW4JJIT.js +31 -0
- package/dist/{chunk-PZBQS5ZR.js → chunk-YWNWLSZ2.js} +1 -1
- package/dist/customize.d.ts +93 -0
- package/dist/customize.js +37 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +90 -19
- package/dist/migrate/index.d.ts +35 -0
- package/dist/migrate/index.js +4 -2
- package/dist/release.d.ts +58 -0
- package/dist/release.js +9 -0
- package/dist/scaffold.d.ts +38 -0
- package/dist/scaffold.js +16 -3
- package/package.json +11 -4
package/README.md
CHANGED
|
@@ -1,8 +1,10 @@
|
|
|
1
1
|
# create-thally-docs
|
|
2
2
|
|
|
3
|
-
Scaffold
|
|
4
|
-
|
|
5
|
-
|
|
3
|
+
Scaffold the first customer-facing knowledge surface in a
|
|
4
|
+
[Thally](https://github.com/thallylabs/thally) product-knowledge pipeline. The
|
|
5
|
+
result is an open documentation site that serves every page to humans as
|
|
6
|
+
polished HTML and to agents as structured JSON, JSON-LD, and Markdown from the
|
|
7
|
+
same URL.
|
|
6
8
|
|
|
7
9
|
## Quick start
|
|
8
10
|
|
|
@@ -45,9 +47,14 @@ interactive question explicitly.
|
|
|
45
47
|
| `create-thally-docs translate --locale <code>` | Translate content into another locale |
|
|
46
48
|
|
|
47
49
|
Interactive migrations ask whether the source is Mintlify, Docusaurus, or
|
|
48
|
-
another auto-detected platform.
|
|
50
|
+
another auto-detected platform. When automatic detection receives a live
|
|
51
|
+
website URL, the CLI recommends its source GitHub repository and requires
|
|
52
|
+
confirmation before continuing with the less precise website crawl. For
|
|
53
|
+
scripts and CI, pass
|
|
49
54
|
`--platform mintlify`, `--platform docusaurus`, or `--platform auto`; `--yes`
|
|
50
55
|
keeps backward-compatible auto-detection when no platform flag is supplied.
|
|
56
|
+
Explicit `--platform auto` and `--yes` runs print the live-site limitation
|
|
57
|
+
without introducing an interactive prompt.
|
|
51
58
|
|
|
52
59
|
Prefer a single binary? Install [`@thallylabs/cli`](https://www.npmjs.com/package/@thallylabs/cli)
|
|
53
60
|
and use `thally init`, which delegates here.
|