create-thally-docs 0.7.1 → 0.7.3
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 +7 -1
- package/dist/{chunk-YAG5BZEM.js → chunk-PGTE4X3G.js} +1 -1
- package/dist/chunk-WMVWYKAB.js +789 -0
- package/dist/index.js +46 -16
- package/dist/migrate/index.js +2 -2
- package/dist/scaffold.js +1 -1
- package/package.json +1 -1
- package/dist/chunk-6HO6ECUE.js +0 -454
package/README.md
CHANGED
|
@@ -9,10 +9,12 @@ AI agents as structured JSON, JSON-LD, and Markdown from the same URL.
|
|
|
9
9
|
```bash
|
|
10
10
|
npx create-thally-docs my-docs
|
|
11
11
|
cd my-docs
|
|
12
|
+
npm install
|
|
12
13
|
npm run dev
|
|
13
14
|
```
|
|
14
15
|
|
|
15
|
-
|
|
16
|
+
The dev server starts at [http://localhost:3040](http://localhost:3040) and
|
|
17
|
+
automatically uses the next available port when needed. A freshly scaffolded
|
|
16
18
|
site is agent-ready out of the box and scores 100/A on the built-in
|
|
17
19
|
[Agent Readiness Score](https://github.com/thallylabs/thally).
|
|
18
20
|
|
|
@@ -22,6 +24,10 @@ Run non-interactively with smart defaults:
|
|
|
22
24
|
npx create-thally-docs my-docs --yes
|
|
23
25
|
```
|
|
24
26
|
|
|
27
|
+
Dependency installation is deliberately opt-in so the scaffold finishes in
|
|
28
|
+
seconds. Pass `--install` to run it immediately, or `--no-install` to skip the
|
|
29
|
+
interactive question explicitly.
|
|
30
|
+
|
|
25
31
|
## What you get
|
|
26
32
|
|
|
27
33
|
- **MDX content** in `src/content/`, navigation in `docs.json`
|
|
@@ -3,7 +3,7 @@ import {
|
|
|
3
3
|
initGit,
|
|
4
4
|
installDeps,
|
|
5
5
|
scaffold
|
|
6
|
-
} from "./chunk-
|
|
6
|
+
} from "./chunk-WMVWYKAB.js";
|
|
7
7
|
|
|
8
8
|
// src/migrate/index.ts
|
|
9
9
|
import { mkdirSync as mkdirSync2, copyFileSync as copyFileSync2, readFileSync as readFileSync3, writeFileSync, existsSync as existsSync3, mkdtempSync, rmSync } from "fs";
|