@aivorynet/slaide 1.0.0 → 1.0.1

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/CHANGELOG.md CHANGED
@@ -6,6 +6,14 @@ All notable changes to slaide are recorded here. The format follows
6
6
 
7
7
  ## [Unreleased]
8
8
 
9
+ ## [1.0.1] - 2026-06-29
10
+
11
+ ### Changed
12
+
13
+ - README leads with the positioning: slaide is a native presentation file format built for AI.
14
+ - The CLI install uses a global install (`npm install -g @aivorynet/slaide`).
15
+ - Package, skill, and docs use the scoped name `@aivorynet/slaide` (the `slaide` command is unchanged).
16
+
9
17
  ## [1.0.0] - 2026-06-29
10
18
 
11
19
  First public release.
@@ -22,5 +30,6 @@ First public release.
22
30
  - `.slaidec` packing and unpacking, and the `compare` fidelity tool.
23
31
  - The bundled `aurora` theme.
24
32
 
25
- [Unreleased]: https://github.com/aivorynet/slaide/compare/v1.0.0...HEAD
33
+ [Unreleased]: https://github.com/aivorynet/slaide/compare/v1.0.1...HEAD
34
+ [1.0.1]: https://github.com/aivorynet/slaide/releases/tag/v1.0.1
26
35
  [1.0.0]: https://github.com/aivorynet/slaide/releases/tag/v1.0.0
package/README.md CHANGED
@@ -1,12 +1,12 @@
1
1
  # slaide
2
2
 
3
- Plain text in. A real presentation out.
3
+ A new presentation file format, built for AI.
4
4
 
5
5
  ![The free slaide viewer rendering a deck](https://raw.githubusercontent.com/aivorynet/slaide/main/docs/assets/viewer.png)
6
6
 
7
- One `.slaide` file is Markdown plus a small YAML theme. It renders to a navigable web deck, a high-fidelity PDF, and editable PowerPoint. A reusable theme carries the design, so nobody hand-places pixels.
7
+ `.slaide` is a native, plain-text format for presentations: Markdown plus a small YAML theme. PowerPoint's `.pptx` is bulky XML that language models get wrong. A `.slaide` file is a few kilobytes of text an AI writes correctly, every time. One file renders to a navigable web deck, a high-fidelity PDF, and editable PowerPoint. A reusable theme carries the design, so nobody hand-places pixels.
8
8
 
9
- AI writes it well, because it is just text. AI designs it well too, because the theme does the design. You bring the idea.
9
+ AI writes it because it is just text. AI designs it because the theme does the design. You bring the idea.
10
10
 
11
11
  Most of slaide is free and open source. The language, the renderer, the native viewer, export, import, the MCP server, and the agent skill all live in this repo under Apache-2.0. You can use it today, for anything.
12
12
 
@@ -18,10 +18,10 @@ Nothing to set up:
18
18
  npx @aivorynet/slaide new talk.slaide
19
19
  ```
20
20
 
21
- Or add it to a project:
21
+ Or install the command globally:
22
22
 
23
23
  ```bash
24
- npm install @aivorynet/slaide
24
+ npm install -g @aivorynet/slaide
25
25
  npx playwright install chromium # only for PDF, PPTX, and image export
26
26
  ```
27
27
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aivorynet/slaide",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "An AI-authorable slide language with beautiful web + PDF output",
5
5
  "type": "module",
6
6
  "license": "Apache-2.0",