@a-company/atelier 0.29.0 → 0.36.0
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/chunk-5QQESXI6.js +4432 -0
- package/dist/chunk-5QQESXI6.js.map +1 -0
- package/dist/cli.cjs +2391 -530
- package/dist/cli.cjs.map +1 -1
- package/dist/cli.js +301 -429
- package/dist/cli.js.map +1 -1
- package/dist/index.cjs +2233 -38
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +584 -2
- package/dist/index.d.ts +584 -2
- package/dist/index.js +111 -3
- package/dist/mcp.cjs +1215 -365
- package/dist/mcp.cjs.map +1 -1
- package/dist/mcp.js +1209 -365
- package/dist/mcp.js.map +1 -1
- package/package.json +13 -7
- package/src/web/inline-app.ts +867 -0
- package/src/web/tsconfig.json +9 -0
- package/templates/welcome.atelier +67 -0
- package/dist/chunk-JV7RGETS.js +0 -2292
- package/dist/chunk-JV7RGETS.js.map +0 -1
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
version: "1.0"
|
|
2
|
+
name: Welcome to Atelier
|
|
3
|
+
description: First-run template — drop your own image, edit the handle, export PNG. Replace the background ShapeVisual with an ImageVisual when you have an asset.
|
|
4
|
+
tags: [welcome, template, social-square]
|
|
5
|
+
canvas:
|
|
6
|
+
width: 1080
|
|
7
|
+
height: 1080
|
|
8
|
+
fps: 30
|
|
9
|
+
background: "#0F1115"
|
|
10
|
+
|
|
11
|
+
layers:
|
|
12
|
+
# Background — solid placeholder; swap for an ImageVisual once you have an asset.
|
|
13
|
+
- id: background
|
|
14
|
+
description: Solid placeholder. Replace with an ImageVisual + assets entry to use a photo.
|
|
15
|
+
visual:
|
|
16
|
+
type: shape
|
|
17
|
+
shape: { type: rect }
|
|
18
|
+
fill: { type: solid, color: "#1A1D24" }
|
|
19
|
+
frame: { x: 0, y: 0 }
|
|
20
|
+
bounds: { width: 1080, height: 1080 }
|
|
21
|
+
opacity: 1
|
|
22
|
+
|
|
23
|
+
# @handle overlay — bottom-left, in the "overlay" tag namespace so pipelines
|
|
24
|
+
# (caption regen, silence-trim, etc.) won't touch it on re-run.
|
|
25
|
+
- id: handle
|
|
26
|
+
description: Your handle. Bottom-left overlay.
|
|
27
|
+
tags: [overlay]
|
|
28
|
+
visual:
|
|
29
|
+
type: text
|
|
30
|
+
content: "@username"
|
|
31
|
+
style:
|
|
32
|
+
fontFamily: Inter
|
|
33
|
+
fontSize: 48
|
|
34
|
+
fontWeight: 600
|
|
35
|
+
color: "#F5F5F7"
|
|
36
|
+
textAlign: left
|
|
37
|
+
frame: { x: 48, y: 980 }
|
|
38
|
+
bounds: { width: 600, height: 52 }
|
|
39
|
+
opacity: 0
|
|
40
|
+
|
|
41
|
+
# Page-number overlay — bottom-right, monospaced look (Inter falls back gracefully).
|
|
42
|
+
- id: page-number
|
|
43
|
+
description: Carousel page number. Bottom-right overlay.
|
|
44
|
+
tags: [overlay]
|
|
45
|
+
visual:
|
|
46
|
+
type: text
|
|
47
|
+
content: "01/05"
|
|
48
|
+
style:
|
|
49
|
+
fontFamily: Inter
|
|
50
|
+
fontSize: 24
|
|
51
|
+
fontWeight: 500
|
|
52
|
+
color: "#9CA3AF"
|
|
53
|
+
textAlign: right
|
|
54
|
+
frame: { x: 880, y: 1020 }
|
|
55
|
+
bounds: { width: 152, height: 28 }
|
|
56
|
+
opacity: 1
|
|
57
|
+
|
|
58
|
+
states:
|
|
59
|
+
default:
|
|
60
|
+
duration: 30
|
|
61
|
+
deltas:
|
|
62
|
+
- layer: handle
|
|
63
|
+
property: opacity
|
|
64
|
+
range: [0, 30]
|
|
65
|
+
from: 0
|
|
66
|
+
to: 1
|
|
67
|
+
easing: ease-out
|