@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 +10 -1
- package/README.md +5 -5
- package/package.json +1 -1
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.
|
|
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
|
-
|
|
3
|
+
A new presentation file format, built for AI.
|
|
4
4
|
|
|
5
5
|

|
|
6
6
|
|
|
7
|
-
|
|
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
|
|
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
|
|
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
|
|