@thallylabs/cli 0.5.7 → 0.7.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 +4 -0
- package/dist/index.js +3 -2
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -30,6 +30,10 @@ stays invisible.
|
|
|
30
30
|
| `thally translate --locale <code>` | Translate content into a locale |
|
|
31
31
|
| `thally mcp` | Start the Model Context Protocol server (stdio) |
|
|
32
32
|
|
|
33
|
+
`thally migrate` asks which platform currently hosts the docs and dispatches to
|
|
34
|
+
the Mintlify or Docusaurus adapter. Non-interactive callers can pass
|
|
35
|
+
`--platform mintlify`, `--platform docusaurus`, or `--platform auto`.
|
|
36
|
+
|
|
33
37
|
Run `thally` with no arguments for the full help.
|
|
34
38
|
|
|
35
39
|
## How it works
|
package/dist/index.js
CHANGED
|
@@ -9,7 +9,7 @@ var COMMANDS = [
|
|
|
9
9
|
{ name: "deploy", summary: "Build and deploy to a live URL", usage: "thally deploy [--prod] [--cloudflare]" },
|
|
10
10
|
{ name: "check", summary: "Lint content + Agent Readiness Score", usage: "thally check [--agents] [--fix] [--ci] [--drift]" },
|
|
11
11
|
{ name: "new", summary: "Create a new page and register it in docs.json", usage: 'thally new <page-id> [--title "..."]' },
|
|
12
|
-
{ name: "migrate", summary: "Migrate docs
|
|
12
|
+
{ name: "migrate", summary: "Migrate a docs repository or public site", usage: "thally migrate <github-or-docs-url> [dir] [--platform <mintlify|docusaurus|auto>]" },
|
|
13
13
|
{ name: "translate", summary: "Translate content into a locale", usage: "thally translate --locale <code>" },
|
|
14
14
|
{ name: "mcp", summary: "Start the Model Context Protocol server (stdio)", usage: "thally mcp" },
|
|
15
15
|
{ name: "agent", summary: "Draft docs from a task (PR, diff, or instruction) as a reviewed PR", usage: 'thally agent "<instruction>" [--diff <ref>] [--from-pr <url>] [--context-file <path>] [--dry-run] [--pr]' },
|
|
@@ -49,8 +49,9 @@ function parseArgs(argv) {
|
|
|
49
49
|
function helpText() {
|
|
50
50
|
const lines = [];
|
|
51
51
|
lines.push("");
|
|
52
|
-
lines.push(" thally \u2014
|
|
52
|
+
lines.push(" thally \u2014 keep customer-facing knowledge in sync with product changes");
|
|
53
53
|
lines.push("");
|
|
54
|
+
lines.push(" Connect product evidence, prepare reviewable updates, and publish one trusted source.");
|
|
54
55
|
lines.push(" You author content/, docs.json, and snippets/.");
|
|
55
56
|
lines.push(" The framework (Next.js) is a hidden runtime \u2014 you never touch src/app/.");
|
|
56
57
|
lines.push("");
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@thallylabs/cli",
|
|
3
|
-
"version": "0.
|
|
4
|
-
"description": "The
|
|
3
|
+
"version": "0.7.0",
|
|
4
|
+
"description": "The Thally CLI for authoring knowledge surfaces, tracing product changes, and keeping documentation checked.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"engines": {
|
|
7
7
|
"node": ">=18"
|
|
@@ -24,8 +24,8 @@
|
|
|
24
24
|
},
|
|
25
25
|
"dependencies": {
|
|
26
26
|
"@anthropic-ai/sdk": "^0.78.0",
|
|
27
|
-
"@thallylabs/mcp": "0.
|
|
28
|
-
"create-thally-docs": "0.
|
|
27
|
+
"@thallylabs/mcp": "0.9.0",
|
|
28
|
+
"create-thally-docs": "0.9.0"
|
|
29
29
|
},
|
|
30
30
|
"devDependencies": {
|
|
31
31
|
"@thallylabs/agent": "*",
|