@markdy/cli 0.8.9 → 0.8.10

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.
Files changed (2) hide show
  1. package/dist/index.js +5 -3
  2. package/package.json +6 -5
package/dist/index.js CHANGED
@@ -315,8 +315,10 @@ async function docsCommand(parsed, io, runtime) {
315
315
  const links = [
316
316
  "Markdy docs",
317
317
  " Website: https://markdy.com",
318
+ " Docs: https://markdy.com/docs/",
318
319
  " Syntax: https://github.com/HoangYell/markdy-com/blob/main/docs/SYNTAX.md",
319
- " Agent: https://github.com/HoangYell/markdy-com/blob/main/docs/AGENT.md",
320
+ " Agent: https://markdy.com/AGENT.md",
321
+ " LLMs: https://markdy.com/llms.txt",
320
322
  " Tutorial:https://github.com/HoangYell/markdy-com/blob/main/docs/TUTORIAL.md"
321
323
  ];
322
324
  io.stdout(links.join("\n"));
@@ -326,14 +328,14 @@ async function docsCommand(parsed, io, runtime) {
326
328
  return { exitCode: 0 };
327
329
  }
328
330
  async function aiCommand(parsed, io, runtime) {
329
- const agentUrl = "https://github.com/HoangYell/markdy-com/blob/main/docs/AGENT.md";
331
+ const agentUrl = "https://markdy.com/AGENT.md";
330
332
  io.stdout(
331
333
  [
332
334
  "Share this with your AI agent:",
333
335
  agentUrl,
334
336
  "",
335
337
  "Starter prompt:",
336
- "Write a Markdy scene for a short explainer video. Use the AGENT.md grammar exactly and keep the result self-contained."
338
+ "Read the guide above, then write one complete MarkdyScript scene for a short explainer video. Use the current grammar exactly and keep the result self-contained."
337
339
  ].join("\n")
338
340
  );
339
341
  if (hasFlag(parsed, "open")) {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@markdy/cli",
3
- "version": "0.8.9",
4
- "description": "First-party CLI for MarkdyScript diagrams: lint, format, explain, render, and a local playground.",
3
+ "version": "0.8.10",
4
+ "description": "First-party CLI for diagram-native MarkdyScript diagrams: lint, format, explain, render, and preview.",
5
5
  "license": "MIT",
6
6
  "type": "module",
7
7
  "files": [
@@ -23,6 +23,7 @@
23
23
  "keywords": [
24
24
  "markdy",
25
25
  "cli",
26
+ "diagram-native",
26
27
  "diagram-as-code",
27
28
  "architecture-diagram",
28
29
  "dsl"
@@ -41,9 +42,9 @@
41
42
  "access": "public"
42
43
  },
43
44
  "dependencies": {
44
- "@markdy/core": "0.8.9",
45
- "@markdy/renderer-dom": "0.8.9",
46
- "@markdy/stdlib-systems": "0.8.9"
45
+ "@markdy/core": "0.8.10",
46
+ "@markdy/stdlib-systems": "0.8.10",
47
+ "@markdy/renderer-dom": "0.8.10"
47
48
  },
48
49
  "devDependencies": {
49
50
  "@types/node": "^25.9.5",