@heylemon/lemonade 0.1.6 → 0.1.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/dist/build-info.json +3 -3
- package/dist/canvas-host/a2ui/.bundle.hash +1 -1
- package/package.json +1 -1
- package/skills/docx/SKILL.md +595 -22
- package/skills/docx/references/templates.md +669 -33
- package/skills/docx/scripts/create_doc.py +289 -52
- package/skills/docx/scripts/validate.py +237 -0
- package/skills/docx/scripts/validate_doc.py +103 -22
- package/skills/pptx/SKILL.md +169 -12
- package/skills/pptx/editing.md +270 -0
- package/skills/pptx/pptxgenjs.md +624 -0
- package/skills/pptx/references/spec-format.md +106 -31
- package/skills/pptx/scripts/create_pptx.js +419 -186
- package/skills/xlsx/SKILL.md +502 -14
- package/skills/xlsx/references/spec-format.md +238 -40
- package/skills/xlsx/scripts/create_xlsx.py +130 -54
- package/skills/xlsx/scripts/recalc.py +157 -147
- package/skills/xlsx/scripts/validate_xlsx.py +31 -6
|
@@ -4,51 +4,126 @@
|
|
|
4
4
|
|
|
5
5
|
```json
|
|
6
6
|
{
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
7
|
+
"title": "Presentation Title",
|
|
8
|
+
"author": "Author Name",
|
|
9
|
+
"theme": { },
|
|
10
|
+
"slides": [ ]
|
|
11
11
|
}
|
|
12
12
|
```
|
|
13
13
|
|
|
14
|
-
## Theme
|
|
14
|
+
## Theme (optional — defaults to Midnight Executive)
|
|
15
15
|
|
|
16
16
|
```json
|
|
17
17
|
"theme": {
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
18
|
+
"primary": "1E2761",
|
|
19
|
+
"secondary": "CADCFC",
|
|
20
|
+
"accent": "F5A623",
|
|
21
|
+
"text_dark": "1E293B",
|
|
22
|
+
"text_light": "FFFFFF",
|
|
23
|
+
"text_muted": "64748B",
|
|
24
|
+
"bg_light": "F8FAFC",
|
|
25
|
+
"bg_dark": "1E2761",
|
|
26
|
+
"font_heading": "Arial Black",
|
|
27
|
+
"font_body": "Arial",
|
|
28
|
+
"chart_colors": ["2E86AB", "F5A623", "E74C3C", "2ECC71", "9B59B6"]
|
|
29
29
|
}
|
|
30
30
|
```
|
|
31
31
|
|
|
32
|
+
### Pre-built Palettes
|
|
33
|
+
|
|
34
|
+
| Name | primary | secondary | accent | Best for |
|
|
35
|
+
|------|---------|-----------|--------|----------|
|
|
36
|
+
| Midnight Executive | 1E2761 | CADCFC | F5A623 | Board decks, investor pitches |
|
|
37
|
+
| Forest & Moss | 2C5F2D | 97BC62 | F5F5F5 | Sustainability, growth |
|
|
38
|
+
| Coral Energy | F96167 | F9E795 | 2F3C7E | Marketing, launches |
|
|
39
|
+
| Warm Terracotta | B85042 | E7E8D1 | A7BEAE | Culture, HR, team |
|
|
40
|
+
| Ocean Gradient | 065A82 | 1C7293 | 21295C | Tech, product |
|
|
41
|
+
| Charcoal Minimal | 36454F | F2F2F2 | 212121 | Design, minimal |
|
|
42
|
+
| Teal Trust | 028090 | 00A896 | 02C39A | Healthcare, finance |
|
|
43
|
+
| Cherry Bold | 990011 | FCF6F5 | 2F3C7E | Sales, urgency |
|
|
44
|
+
|
|
32
45
|
## Slide Types
|
|
33
46
|
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
47
|
+
### title
|
|
48
|
+
Opening slide with dark background.
|
|
49
|
+
```json
|
|
50
|
+
{"type": "title", "title": "...", "subtitle": "...", "author": "...", "date": "..."}
|
|
51
|
+
```
|
|
52
|
+
|
|
53
|
+
### section
|
|
54
|
+
Section divider with dark background.
|
|
55
|
+
```json
|
|
56
|
+
{"type": "section", "title": "Section Name", "subtitle": "Brief context"}
|
|
57
|
+
```
|
|
58
|
+
|
|
59
|
+
### content
|
|
60
|
+
Standard content slide. Can include any combination of text, bullets, and tables.
|
|
61
|
+
```json
|
|
62
|
+
{
|
|
63
|
+
"type": "content",
|
|
64
|
+
"title": "Slide Title (should be a complete assertion, not a topic)",
|
|
65
|
+
"content": "Body paragraph text",
|
|
66
|
+
"items": ["Bullet 1", "Bullet 2", "Bullet 3"],
|
|
67
|
+
"table": {"headers": ["A", "B"], "rows": [["1", "2"]]},
|
|
68
|
+
"notes": "Speaker notes"
|
|
69
|
+
}
|
|
70
|
+
```
|
|
71
|
+
|
|
72
|
+
### two_column
|
|
73
|
+
Two-column layout for comparisons or parallel content.
|
|
74
|
+
```json
|
|
75
|
+
{
|
|
76
|
+
"type": "two_column",
|
|
77
|
+
"title": "Slide Title",
|
|
78
|
+
"left": ["Left bullet 1", "Left bullet 2"],
|
|
79
|
+
"right": ["Right bullet 1", "Right bullet 2"],
|
|
80
|
+
"left_bullets": true,
|
|
81
|
+
"right_bullets": true,
|
|
82
|
+
"notes": "Speaker notes"
|
|
83
|
+
}
|
|
84
|
+
```
|
|
41
85
|
|
|
42
|
-
|
|
86
|
+
### stats
|
|
87
|
+
Big-number stat cards. Best with 2-4 stats.
|
|
88
|
+
```json
|
|
89
|
+
{
|
|
90
|
+
"type": "stats",
|
|
91
|
+
"title": "Key Metrics",
|
|
92
|
+
"stats": [
|
|
93
|
+
{"value": "3x", "label": "User Growth"},
|
|
94
|
+
{"value": "$156K", "label": "Monthly Revenue"},
|
|
95
|
+
{"value": "70+", "label": "NPS Score"}
|
|
96
|
+
]
|
|
97
|
+
}
|
|
98
|
+
```
|
|
43
99
|
|
|
100
|
+
### comparison
|
|
101
|
+
Side-by-side option comparison in cards.
|
|
44
102
|
```json
|
|
45
103
|
{
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
]
|
|
104
|
+
"type": "comparison",
|
|
105
|
+
"title": "Build vs. Buy",
|
|
106
|
+
"option_a_title": "Build In-House",
|
|
107
|
+
"option_a": ["Full control", "6-month timeline", "$400K cost"],
|
|
108
|
+
"option_b_title": "Buy Solution",
|
|
109
|
+
"option_b": ["Faster deployment", "2-month timeline", "$120K/year"]
|
|
53
110
|
}
|
|
54
111
|
```
|
|
112
|
+
|
|
113
|
+
### closing
|
|
114
|
+
Final slide with dark background.
|
|
115
|
+
```json
|
|
116
|
+
{"type": "closing", "title": "Thank You", "subtitle": "Questions?", "contact": "email@company.com"}
|
|
117
|
+
```
|
|
118
|
+
|
|
119
|
+
## Choosing Slide Types
|
|
120
|
+
|
|
121
|
+
| Content need | Slide type |
|
|
122
|
+
|---|---|
|
|
123
|
+
| Opening / cover | title |
|
|
124
|
+
| New section divider | section |
|
|
125
|
+
| Standard content with text/bullets | content |
|
|
126
|
+
| Side-by-side items | two_column |
|
|
127
|
+
| Key numbers / KPIs | stats |
|
|
128
|
+
| Pros/cons, before/after, A vs B | comparison |
|
|
129
|
+
| End slide | closing |
|