chiltepin 0.47.2 → 0.47.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/package.json +3 -3
- package/templates/skill/SKILL.md +5 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "chiltepin",
|
|
3
|
-
"version": "0.47.
|
|
3
|
+
"version": "0.47.3",
|
|
4
4
|
"description": "Documentation-as-code CLI: write Markdown with typed YAML blocks for API docs, architecture & system design (C4, ERDs, sequence diagrams), frontend & design systems, ADRs and decision records, planning, and slide presentations. Validate like code with `chiltepin check`, export to HTML, slides, or PDF. AI-native — one-command agent skill (npx skills add jdiejim/chiltepin -g -y) and a visual Studio.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -26,8 +26,8 @@
|
|
|
26
26
|
"react": "^18.3.1",
|
|
27
27
|
"yaml": "^2.6.1",
|
|
28
28
|
"chiltepin-core": "0.24.0",
|
|
29
|
-
"chiltepin-
|
|
30
|
-
"chiltepin-
|
|
29
|
+
"chiltepin-studio": "0.16.0",
|
|
30
|
+
"chiltepin-render": "0.33.0"
|
|
31
31
|
},
|
|
32
32
|
"optionalDependencies": {
|
|
33
33
|
"playwright": "^1.49.0"
|
package/templates/skill/SKILL.md
CHANGED
|
@@ -57,10 +57,12 @@ at the end explains which reference each task needs.
|
|
|
57
57
|
Warnings do not fail the check by default; review them and report relevant ones.
|
|
58
58
|
A non-zero exit is never "done". If the CLI is unavailable, report validation
|
|
59
59
|
as unverified. Never invent a successful check.
|
|
60
|
-
5. **Render
|
|
61
|
-
`
|
|
60
|
+
5. **Render**: after a clean check, `npx -y chiltepin html <file>` writes
|
|
61
|
+
`<file>.html` next to the source, so the reader gets the page as well as
|
|
62
|
+
the Markdown. Add `-p` to open it. For a deck, `slides <file>` instead.
|
|
62
63
|
|
|
63
|
-
Handoff: the
|
|
64
|
+
Handoff: the `.md` and `.html` paths, the actual check result, and any
|
|
65
|
+
unresolved diagnostics.
|
|
64
66
|
Explain block selection only when the user asks or a tradeoff needs explanation.
|
|
65
67
|
|
|
66
68
|
Editing an existing doc: read it whole first. Change the one block, and
|