figmatk 0.0.8 → 0.0.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.
@@ -3,7 +3,7 @@
3
3
  "name": "figmatk",
4
4
  "description": "FigmaTK — Inspect and modify Figma Slides .deck files",
5
5
  "metadata": {
6
- "description": "FigmaTK — Inspect and modify Figma Slides .deck files natively"
6
+ "description": "FigmaTK — Swiss Army Knife for Figma Files (.deck)"
7
7
  },
8
8
  "owner": {
9
9
  "name": "FigmaTK Contributors",
@@ -12,8 +12,8 @@
12
12
  "plugins": [
13
13
  {
14
14
  "name": "figmatk",
15
- "description": "Inspect and modify Figma Slides .deck files natively",
16
- "version": "0.0.6",
15
+ "description": "Swiss Army Knife for Figma Files (.deck)",
16
+ "version": "0.0.10",
17
17
  "author": {
18
18
  "name": "FigmaTK Contributors"
19
19
  },
@@ -1,11 +1,16 @@
1
1
  {
2
2
  "name": "figmatk",
3
- "version": "0.0.6",
3
+ "version": "0.0.10",
4
4
  "description": "Create and edit Figma Slides .deck files programmatically — no Figma API required",
5
5
  "author": {
6
6
  "name": "FigmaTK Contributors"
7
7
  },
8
8
  "repository": "https://github.com/rcoenen/figmatk",
9
9
  "license": "MIT",
10
- "keywords": ["figma", "deck", "slides", "presentation"]
10
+ "keywords": [
11
+ "figma",
12
+ "deck",
13
+ "slides",
14
+ "presentation"
15
+ ]
11
16
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "figmatk",
3
- "version": "0.0.8",
3
+ "version": "0.0.10",
4
4
  "description": "Figma Toolkit — Swiss-army knife CLI for Figma .deck and .fig files",
5
5
  "type": "module",
6
6
  "bin": {
@@ -1,15 +1,24 @@
1
1
  ---
2
- name: figmatk
2
+ name: figma-slides-creator
3
3
  description: >
4
4
  Create, edit, and inspect Figma Slides .deck files. Use when the user asks to
5
5
  create a presentation, build a slide deck, edit slides, update text or images,
6
6
  clone or remove slides, or produce a .deck file for Figma Slides.
7
+ Powered by FigmaTK under the hood.
7
8
  metadata:
8
- version: "0.0.7"
9
+ version: "0.0.10"
9
10
  ---
10
11
 
11
12
  # FigmaTK Skill
12
13
 
14
+ ## ⚠️ Never open .deck files directly
15
+
16
+ `.deck` files are binary ZIP archives. **Never open, read, or display a `.deck` file** — it will show garbage bytes in the panel. To inspect or modify a `.deck` file, always use the CLI commands or Node.js API shown below.
17
+
18
+ To let the user view the result: tell them to **open the file in Figma Desktop** (`File → Open` or double-click the `.deck` file).
19
+
20
+ ---
21
+
13
22
  ## Quick Reference
14
23
 
15
24
  | Task | Approach |