chiltepin 0.47.5 → 0.47.7
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 -7
- package/dist/bin.js +2 -2
- package/dist/bin.js.map +1 -1
- package/package.json +4 -4
- package/templates/skill/SKILL.md +6 -6
- package/templates/skill/reference/blocks/INDEX.md +1 -1
- package/templates/skill/reference/check.md +1 -1
- package/templates/skill/reference/writing.md +1 -1
package/README.md
CHANGED
|
@@ -34,7 +34,7 @@ Written in Markdown. Drawn by code. Checked in CI.</p>
|
|
|
34
34
|
**Your agent writes the content. Chiltepin handles the layout.** Compose prose and typed YAML blocks in a `.md` file. Get consistent diagrams, a document you can share, and a source diff you can review.
|
|
35
35
|
|
|
36
36
|
```bash
|
|
37
|
-
npx -y chiltepin demo
|
|
37
|
+
npx -y chiltepin@latest demo
|
|
38
38
|
```
|
|
39
39
|
|
|
40
40
|
Explore the built-in examples without creating a project. **Node.js 20+ required.**
|
|
@@ -130,7 +130,7 @@ Every block has a strict schema. Look up its fields and a working example with `
|
|
|
130
130
|
Install the [authoring skill](https://github.com/jdiejim/chiltepin/blob/main/skills/chiltepin/SKILL.md):
|
|
131
131
|
|
|
132
132
|
```bash
|
|
133
|
-
npx skills add jdiejim/chiltepin -
|
|
133
|
+
npx skills add jdiejim/chiltepin -y
|
|
134
134
|
```
|
|
135
135
|
|
|
136
136
|
Then ask your agent:
|
|
@@ -144,10 +144,10 @@ The skill guides block selection, schema lookup, composition, and validation. Yo
|
|
|
144
144
|
Run these commands in your project directory:
|
|
145
145
|
|
|
146
146
|
```bash
|
|
147
|
-
npx -y chiltepin init
|
|
148
|
-
npx -y chiltepin check
|
|
149
|
-
npx -y chiltepin html docs/getting-started.md -p
|
|
150
|
-
npx -y chiltepin studio
|
|
147
|
+
npx -y chiltepin@latest init
|
|
148
|
+
npx -y chiltepin@latest check
|
|
149
|
+
npx -y chiltepin@latest html docs/getting-started.md -p
|
|
150
|
+
npx -y chiltepin@latest studio
|
|
151
151
|
```
|
|
152
152
|
|
|
153
153
|
`init` creates a config and two starter documents, skipping existing files. `html -p` opens the rendered page. `studio` opens the local visual editor.
|
|
@@ -156,7 +156,7 @@ To pin the CLI in your project:
|
|
|
156
156
|
|
|
157
157
|
```bash
|
|
158
158
|
npm install --save-dev chiltepin
|
|
159
|
-
npx chiltepin check
|
|
159
|
+
npx chiltepin@latest check
|
|
160
160
|
```
|
|
161
161
|
|
|
162
162
|
See the [getting started guide](https://github.com/jdiejim/chiltepin/blob/main/docs/guides/getting-started.md) for the full workflow. `chiltepin skill` also prints the guide for tools with a system-prompt field.
|
package/dist/bin.js
CHANGED
|
@@ -2921,7 +2921,7 @@ function examples() {
|
|
|
2921
2921
|
...rows,
|
|
2922
2922
|
"",
|
|
2923
2923
|
` ${cyan("chiltepin <file.md>")} ${dim("renders + opens a doc \u2014 the fastest preview")}`,
|
|
2924
|
-
` ${cyan("npx skills add jdiejim/chiltepin -
|
|
2924
|
+
` ${cyan("npx skills add jdiejim/chiltepin -y")} ${dim("installs the authoring skill into your AI agent")}`,
|
|
2925
2925
|
` ${dim("Docs:")} https://github.com/jdiejim/chiltepin`,
|
|
2926
2926
|
""
|
|
2927
2927
|
].join("\n");
|
|
@@ -3022,7 +3022,7 @@ Created ${result.created.length} file(s), skipped ${result.skipped.length}.`)
|
|
|
3022
3022
|
`Next: ${pc5.cyan("chiltepin check")} ${pc5.dim("\xB7")} ${pc5.cyan("chiltepin docs/getting-started.md")} ${pc5.dim("(render + open)")}`
|
|
3023
3023
|
);
|
|
3024
3024
|
console.log(
|
|
3025
|
-
`AI: ${pc5.cyan("npx skills add jdiejim/chiltepin -
|
|
3025
|
+
`AI: ${pc5.cyan("npx skills add jdiejim/chiltepin -y")} ${pc5.dim("installs the authoring skill into Claude Code, Cursor, Codex, and 70+ agents")}`
|
|
3026
3026
|
);
|
|
3027
3027
|
}
|
|
3028
3028
|
async function main(argv) {
|