@floless/app 0.48.0 → 0.48.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.
|
@@ -1,293 +0,0 @@
|
|
|
1
|
-
app: steel-to-tekla
|
|
2
|
-
version: 0.1.0
|
|
3
|
-
display-name: Steel to Tekla
|
|
4
|
-
description: |
|
|
5
|
-
Bake the read steel model straight into a LIVE Tekla model as native parts (columns + beams) via
|
|
6
|
-
the Tekla Open API — the deepest bake-out: real Tekla objects you detail as usual, not an IFC
|
|
7
|
-
import. Companion to steel-from-drawings (the 3D view) and steel-to-ifc (the universal file).
|
|
8
|
-
|
|
9
|
-
How it works: Tekla must be OPEN with a model. Your terminal AI bakes the scene inline
|
|
10
|
-
(read-strategy: bake); a WRITE exec creates a Beam per member (the drawing's profile, falling back
|
|
11
|
-
to a sized rectangular section when your Tekla environment doesn't carry that catalogue profile),
|
|
12
|
-
then commits. A snapshot is taken first, so Tekla's Undo reverts the whole bake in one step. Ships
|
|
13
|
-
an EXAMPLE frame; the floless-app-steel-from-drawings skill bakes your own drawing's scene in.
|
|
14
|
-
exposes-as-agent: false
|
|
15
|
-
inputs:
|
|
16
|
-
# BAKED at compose time: the terminal AI reads this drawing and writes the `scene` block below.
|
|
17
|
-
# read-strategy: bake surfaces "Re-read & re-bake ▸". The deterministic run reads the scene, not the drawing.
|
|
18
|
-
drawing:
|
|
19
|
-
type: image
|
|
20
|
-
widget: file
|
|
21
|
-
accept: [pdf, png, jpg]
|
|
22
|
-
read-strategy: bake
|
|
23
|
-
description: A structural steel drawing — baked into the scene below, then created as native Tekla parts; swap it to re-read & re-bake.
|
|
24
|
-
requires:
|
|
25
|
-
- tekla@0.1.x
|
|
26
|
-
layout: linear
|
|
27
|
-
nodes:
|
|
28
|
-
# WRITE exec: creates real Tekla members (a Beam per scene element) via the Open API, then commits.
|
|
29
|
-
# Needs Tekla OPEN with a model. snapshot: true → one Undo reverts the whole bake. Re-bake — or the
|
|
30
|
-
# floless-app-steel-from-drawings skill — replaces `scene` with YOUR drawing's read.
|
|
31
|
-
- id: bake-tekla
|
|
32
|
-
agent: tekla
|
|
33
|
-
command: bake-scene
|
|
34
|
-
mode: write
|
|
35
|
-
config:
|
|
36
|
-
version: "2026.0"
|
|
37
|
-
scene:
|
|
38
|
-
meta:
|
|
39
|
-
name: "Example \u2014 steel framing (sample, not your drawing)"
|
|
40
|
-
units: mm
|
|
41
|
-
up: z
|
|
42
|
-
groups:
|
|
43
|
-
- key: column
|
|
44
|
-
label: Columns (HSS6x6x3/8)
|
|
45
|
-
color: '#60a5fa'
|
|
46
|
-
- key: beam
|
|
47
|
-
label: Beams (W10x33)
|
|
48
|
-
color: '#94a3b8'
|
|
49
|
-
elements:
|
|
50
|
-
- id: COL-1A
|
|
51
|
-
group: column
|
|
52
|
-
kind: box
|
|
53
|
-
from:
|
|
54
|
-
- 0
|
|
55
|
-
- 0
|
|
56
|
-
- 0
|
|
57
|
-
to:
|
|
58
|
-
- 0
|
|
59
|
-
- 0
|
|
60
|
-
- 4500
|
|
61
|
-
section:
|
|
62
|
-
w: 150
|
|
63
|
-
d: 150
|
|
64
|
-
meta:
|
|
65
|
-
profile: HSS6x6x3/8
|
|
66
|
-
grid: 1-A
|
|
67
|
-
- id: COL-1B
|
|
68
|
-
group: column
|
|
69
|
-
kind: box
|
|
70
|
-
from:
|
|
71
|
-
- 0
|
|
72
|
-
- 6000
|
|
73
|
-
- 0
|
|
74
|
-
to:
|
|
75
|
-
- 0
|
|
76
|
-
- 6000
|
|
77
|
-
- 4500
|
|
78
|
-
section:
|
|
79
|
-
w: 150
|
|
80
|
-
d: 150
|
|
81
|
-
meta:
|
|
82
|
-
profile: HSS6x6x3/8
|
|
83
|
-
grid: 1-B
|
|
84
|
-
- id: COL-2A
|
|
85
|
-
group: column
|
|
86
|
-
kind: box
|
|
87
|
-
from:
|
|
88
|
-
- 6000
|
|
89
|
-
- 0
|
|
90
|
-
- 0
|
|
91
|
-
to:
|
|
92
|
-
- 6000
|
|
93
|
-
- 0
|
|
94
|
-
- 4500
|
|
95
|
-
section:
|
|
96
|
-
w: 150
|
|
97
|
-
d: 150
|
|
98
|
-
meta:
|
|
99
|
-
profile: HSS6x6x3/8
|
|
100
|
-
grid: 2-A
|
|
101
|
-
- id: COL-2B
|
|
102
|
-
group: column
|
|
103
|
-
kind: box
|
|
104
|
-
from:
|
|
105
|
-
- 6000
|
|
106
|
-
- 6000
|
|
107
|
-
- 0
|
|
108
|
-
to:
|
|
109
|
-
- 6000
|
|
110
|
-
- 6000
|
|
111
|
-
- 4500
|
|
112
|
-
section:
|
|
113
|
-
w: 150
|
|
114
|
-
d: 150
|
|
115
|
-
meta:
|
|
116
|
-
profile: HSS6x6x3/8
|
|
117
|
-
grid: 2-B
|
|
118
|
-
- id: COL-3A
|
|
119
|
-
group: column
|
|
120
|
-
kind: box
|
|
121
|
-
from:
|
|
122
|
-
- 12000
|
|
123
|
-
- 0
|
|
124
|
-
- 0
|
|
125
|
-
to:
|
|
126
|
-
- 12000
|
|
127
|
-
- 0
|
|
128
|
-
- 4500
|
|
129
|
-
section:
|
|
130
|
-
w: 150
|
|
131
|
-
d: 150
|
|
132
|
-
meta:
|
|
133
|
-
profile: HSS6x6x3/8
|
|
134
|
-
grid: 3-A
|
|
135
|
-
- id: COL-3B
|
|
136
|
-
group: column
|
|
137
|
-
kind: box
|
|
138
|
-
from:
|
|
139
|
-
- 12000
|
|
140
|
-
- 6000
|
|
141
|
-
- 0
|
|
142
|
-
to:
|
|
143
|
-
- 12000
|
|
144
|
-
- 6000
|
|
145
|
-
- 4500
|
|
146
|
-
section:
|
|
147
|
-
w: 150
|
|
148
|
-
d: 150
|
|
149
|
-
meta:
|
|
150
|
-
profile: HSS6x6x3/8
|
|
151
|
-
grid: 3-B
|
|
152
|
-
- id: BM-12A
|
|
153
|
-
group: beam
|
|
154
|
-
kind: box
|
|
155
|
-
from:
|
|
156
|
-
- 0
|
|
157
|
-
- 0
|
|
158
|
-
- 4500
|
|
159
|
-
to:
|
|
160
|
-
- 6000
|
|
161
|
-
- 0
|
|
162
|
-
- 4500
|
|
163
|
-
section:
|
|
164
|
-
w: 150
|
|
165
|
-
d: 250
|
|
166
|
-
meta:
|
|
167
|
-
profile: W10x33
|
|
168
|
-
- id: BM-23A
|
|
169
|
-
group: beam
|
|
170
|
-
kind: box
|
|
171
|
-
from:
|
|
172
|
-
- 6000
|
|
173
|
-
- 0
|
|
174
|
-
- 4500
|
|
175
|
-
to:
|
|
176
|
-
- 12000
|
|
177
|
-
- 0
|
|
178
|
-
- 4500
|
|
179
|
-
section:
|
|
180
|
-
w: 150
|
|
181
|
-
d: 250
|
|
182
|
-
meta:
|
|
183
|
-
profile: W10x33
|
|
184
|
-
- id: BM-12B
|
|
185
|
-
group: beam
|
|
186
|
-
kind: box
|
|
187
|
-
from:
|
|
188
|
-
- 0
|
|
189
|
-
- 6000
|
|
190
|
-
- 4500
|
|
191
|
-
to:
|
|
192
|
-
- 6000
|
|
193
|
-
- 6000
|
|
194
|
-
- 4500
|
|
195
|
-
section:
|
|
196
|
-
w: 150
|
|
197
|
-
d: 250
|
|
198
|
-
meta:
|
|
199
|
-
profile: W10x33
|
|
200
|
-
- id: BM-23B
|
|
201
|
-
group: beam
|
|
202
|
-
kind: box
|
|
203
|
-
from:
|
|
204
|
-
- 6000
|
|
205
|
-
- 6000
|
|
206
|
-
- 4500
|
|
207
|
-
to:
|
|
208
|
-
- 12000
|
|
209
|
-
- 6000
|
|
210
|
-
- 4500
|
|
211
|
-
section:
|
|
212
|
-
w: 150
|
|
213
|
-
d: 250
|
|
214
|
-
meta:
|
|
215
|
-
profile: W10x33
|
|
216
|
-
- id: BM-1AB
|
|
217
|
-
group: beam
|
|
218
|
-
kind: box
|
|
219
|
-
from:
|
|
220
|
-
- 0
|
|
221
|
-
- 0
|
|
222
|
-
- 4500
|
|
223
|
-
to:
|
|
224
|
-
- 0
|
|
225
|
-
- 6000
|
|
226
|
-
- 4500
|
|
227
|
-
section:
|
|
228
|
-
w: 150
|
|
229
|
-
d: 250
|
|
230
|
-
meta:
|
|
231
|
-
profile: W10x33
|
|
232
|
-
- id: BM-2AB
|
|
233
|
-
group: beam
|
|
234
|
-
kind: box
|
|
235
|
-
from:
|
|
236
|
-
- 6000
|
|
237
|
-
- 0
|
|
238
|
-
- 4500
|
|
239
|
-
to:
|
|
240
|
-
- 6000
|
|
241
|
-
- 6000
|
|
242
|
-
- 4500
|
|
243
|
-
section:
|
|
244
|
-
w: 150
|
|
245
|
-
d: 250
|
|
246
|
-
meta:
|
|
247
|
-
profile: W10x33
|
|
248
|
-
- id: BM-3AB
|
|
249
|
-
group: beam
|
|
250
|
-
kind: box
|
|
251
|
-
from:
|
|
252
|
-
- 12000
|
|
253
|
-
- 0
|
|
254
|
-
- 4500
|
|
255
|
-
to:
|
|
256
|
-
- 12000
|
|
257
|
-
- 6000
|
|
258
|
-
- 4500
|
|
259
|
-
section:
|
|
260
|
-
w: 150
|
|
261
|
-
d: 250
|
|
262
|
-
meta:
|
|
263
|
-
profile: W10x33
|
|
264
|
-
grids:
|
|
265
|
-
- label: '1'
|
|
266
|
-
at:
|
|
267
|
-
- 0
|
|
268
|
-
- -3000
|
|
269
|
-
- 0
|
|
270
|
-
- label: '2'
|
|
271
|
-
at:
|
|
272
|
-
- 6000
|
|
273
|
-
- -3000
|
|
274
|
-
- 0
|
|
275
|
-
- label: '3'
|
|
276
|
-
at:
|
|
277
|
-
- 12000
|
|
278
|
-
- -3000
|
|
279
|
-
- 0
|
|
280
|
-
- label: A
|
|
281
|
-
at:
|
|
282
|
-
- -3000
|
|
283
|
-
- 0
|
|
284
|
-
- 0
|
|
285
|
-
- label: B
|
|
286
|
-
at:
|
|
287
|
-
- -3000
|
|
288
|
-
- 6000
|
|
289
|
-
- 0
|
|
290
|
-
safety:
|
|
291
|
-
transaction-group: steel-from-drawings
|
|
292
|
-
snapshot: true
|
|
293
|
-
|