@thallylabs/cli 0.5.7 → 0.6.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 +1 -1
- package/package.json +3 -3
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]' },
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@thallylabs/cli",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.6.0",
|
|
4
4
|
"description": "The unified thally CLI — author content + config; the framework stays a hidden runtime",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"engines": {
|
|
@@ -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.8.0",
|
|
28
|
+
"create-thally-docs": "0.8.0"
|
|
29
29
|
},
|
|
30
30
|
"devDependencies": {
|
|
31
31
|
"@thallylabs/agent": "*",
|