hanseol-dev 5.0.2-dev.72 → 5.0.2-dev.73

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 +1 @@
1
- {"version":3,"file":"powerpoint-create-prompts.d.ts","sourceRoot":"","sources":["../../../src/agents/office/powerpoint-create-prompts.ts"],"names":[],"mappings":"AAcA,eAAO,MAAM,6BAA6B,yyDA4BA,CAAC;AAM3C,eAAO,MAAM,8BAA8B,oiUAyImC,CAAC;AAM/E,MAAM,WAAW,YAAY;IAC3B,aAAa,EAAE,MAAM,CAAC;IACtB,YAAY,EAAE,MAAM,CAAC;IACrB,gBAAgB,EAAE,MAAM,CAAC;IACzB,UAAU,EAAE,MAAM,CAAC;IACnB,YAAY,EAAE,MAAM,CAAC;IACrB,YAAY,EAAE,MAAM,CAAC;IACrB,UAAU,EAAE,MAAM,CAAC;IACnB,SAAS,EAAE,MAAM,CAAC;IAClB,IAAI,EAAE,MAAM,CAAC;IACb,YAAY,EAAE,MAAM,CAAC;CACtB;AAMD,wBAAgB,oBAAoB,CAClC,UAAU,EAAE,MAAM,EAClB,gBAAgB,EAAE,MAAM,EACxB,MAAM,EAAE,YAAY,EACpB,UAAU,EAAE,MAAM,EAClB,WAAW,EAAE,MAAM,EACnB,QAAQ,EAAE,IAAI,GAAG,IAAI,GACpB,MAAM,CAwHR;AAMD,eAAO,MAAM,wBAAwB,2pDA6BmC,CAAC;AAEzE,eAAO,MAAM,0BAA0B,wlBAaqB,CAAC;AAG7D,wBAAgB,sBAAsB,CACpC,QAAQ,EAAE,MAAM,EAChB,KAAK,EAAE,MAAM,EACb,SAAS,EAAE,MAAM,EACjB,QAAQ,EAAE,MAAM,EAChB,QAAQ,EAAE,IAAI,GAAG,IAAI,GACpB,MAAM,CAqBR"}
1
+ {"version":3,"file":"powerpoint-create-prompts.d.ts","sourceRoot":"","sources":["../../../src/agents/office/powerpoint-create-prompts.ts"],"names":[],"mappings":"AAcA,eAAO,MAAM,6BAA6B,yyDA4BA,CAAC;AAM3C,eAAO,MAAM,8BAA8B,oiUAyImC,CAAC;AAM/E,MAAM,WAAW,YAAY;IAC3B,aAAa,EAAE,MAAM,CAAC;IACtB,YAAY,EAAE,MAAM,CAAC;IACrB,gBAAgB,EAAE,MAAM,CAAC;IACzB,UAAU,EAAE,MAAM,CAAC;IACnB,YAAY,EAAE,MAAM,CAAC;IACrB,YAAY,EAAE,MAAM,CAAC;IACrB,UAAU,EAAE,MAAM,CAAC;IACnB,SAAS,EAAE,MAAM,CAAC;IAClB,IAAI,EAAE,MAAM,CAAC;IACb,YAAY,EAAE,MAAM,CAAC;CACtB;AAMD,wBAAgB,oBAAoB,CAClC,UAAU,EAAE,MAAM,EAClB,gBAAgB,EAAE,MAAM,EACxB,MAAM,EAAE,YAAY,EACpB,UAAU,EAAE,MAAM,EAClB,WAAW,EAAE,MAAM,EACnB,QAAQ,EAAE,IAAI,GAAG,IAAI,GACpB,MAAM,CAuJR;AAMD,eAAO,MAAM,wBAAwB,2pDA6BmC,CAAC;AAEzE,eAAO,MAAM,0BAA0B,wlBAaqB,CAAC;AAG7D,wBAAgB,sBAAsB,CACpC,QAAQ,EAAE,MAAM,EAChB,KAAK,EAAE,MAAM,EACb,SAAS,EAAE,MAAM,EACjB,QAAQ,EAAE,MAAM,EAChB,QAAQ,EAAE,IAAI,GAAG,IAAI,GACpB,MAAM,CAqBR"}
@@ -222,7 +222,10 @@ Notes: ${design.design_notes}
222
222
  9. Create VISUAL ELEMENTS with CSS: colored cards, accent bars, decorative shapes, numbered circles
223
223
  10. Each slide must look UNIQUE — vary layouts, proportions, and visual elements
224
224
  11. For data: use styled div-based tables, card grids, or metric displays — NOT plain text lists
225
- 12. Subtle decorative elements: corner accents, gradient overlays, geometric shapes using CSS
225
+ 12. Subtle decorative elements: corner accents, gradient overlays, geometric shapes using CSS.
226
+ ⚠ ALL decorative elements (circles, blobs) must stay WITHIN the 1920×1080 viewport.
227
+ Use position:absolute with positive top/left/right/bottom values. NEVER use negative values
228
+ that push elements outside the viewport — they get clipped by overflow:hidden.
226
229
  13. ZERO OVERLAP: All elements must have at least 20px gap. Never let icons, circles, or badges overlap text.
227
230
  If an icon/badge is next to text, use flexbox with gap:12px — NOT absolute positioning.
228
231
  14. PIE/DONUT CHARTS: Use ONLY this CSS technique — conic-gradient on a border-radius:50% div.
@@ -231,14 +234,39 @@ Notes: ${design.design_notes}
231
234
  15. ⚠⚠⚠ CONTENT MUST FILL THE ENTIRE 1920×1080 SLIDE — THIS IS THE #1 VISUAL QUALITY RULE.
232
235
  MANDATORY BODY CSS: body { display: flex; flex-direction: column; padding: 60px 80px; }
233
236
  Then use flex: 1 on the main content area to stretch it vertically:
234
- .title { ... } /* fixed height */
235
- .content { flex: 1; display: flex; gap: 24px; } /* grows to fill remaining space */
236
- .card { flex: 1; display: flex; flex-direction: column; padding: 40px; } /* each card fills height */
237
- Cards MUST have min-height: 500px or use flex:1 to grow tall.
238
- If content is sparse, use BIGGER fonts (title 64px, body 32px), bigger padding (40-60px) inside cards,
239
- add a summary sentence, or add a decorative bottom bar.
240
- FAILURE: cards that stop at 40% height with 60% empty white space below.
241
- SUCCESS: cards that stretch from title area to bottom edge with generous internal spacing.
237
+ .title-area { ... } /* fixed height for slide title */
238
+ .content { flex: 1; display: flex; gap: 24px; } /* grows to fill ALL remaining space */
239
+
240
+ ═══ HOW TO FILL HEIGHT FOR EACH LAYOUT TYPE ═══
241
+
242
+ CARDS (2-3 columns):
243
+ .content { flex: 1; display: flex; gap: 24px; }
244
+ .card { flex: 1; display: flex; flex-direction: column; padding: 40px; justify-content: space-between; }
245
+ Inside each card: title + description at top, metrics/list in middle, accent bar at bottom.
246
+
247
+ TABLES:
248
+ .content { flex: 1; display: flex; flex-direction: column; }
249
+ table { width: 100%; }
250
+ th { padding: 20px 24px; background: YOUR_PRIMARY_COLOR; color: #fff; font-size: 22px; }
251
+ td { padding: 24px; font-size: 22px; }
252
+ Add a SUMMARY BAR below the table: full-width colored banner with key insight text.
253
+ The summary bar + generous cell padding makes the table fill the slide.
254
+
255
+ TIMELINES / ROADMAPS:
256
+ .content { flex: 1; display: flex; flex-direction: column; justify-content: center; }
257
+ Make each milestone a TALL CARD (min-height: 300px) with title, description, and icon.
258
+ Use the full width. Connect cards with a horizontal line or arrows.
259
+
260
+ PROCESS FLOWS:
261
+ .content { flex: 1; display: flex; align-items: stretch; gap: 24px; }
262
+ Each step: TALL card (flex: 1 vertically) with number circle, title, description, and sub-items.
263
+
264
+ BIG NUMBER / METRIC DISPLAYS:
265
+ .content { flex: 1; display: flex; gap: 40px; align-items: stretch; }
266
+ Each metric: large number (72-96px), label, and a description paragraph below.
267
+
268
+ ✗ FAILURE: Any layout where the bottom 30%+ of the slide is empty white space.
269
+ ✓ SUCCESS: Content stretches from title to bottom edge using flex:1, generous padding, and summary bars.
242
270
  16. ALLOWED CHART TYPES (CSS only):
243
271
  ✓ Bar chart: Use div elements with varying height/width. Labels ABOVE bars.
244
272
  ✓ Donut/Pie chart: Use conic-gradient only.
@@ -263,7 +291,10 @@ Notes: ${design.design_notes}
263
291
  • MAXIMUM 3 descriptive cards per slide. Each card: title (24-28px bold) + 2-3 bullet points (20-22px).
264
292
  • MAXIMUM 3 items side by side in any horizontal row.
265
293
  • Team/People: MAXIMUM 3 people per slide.
266
- • Tables: MAXIMUM 4 data rows. Min cell padding: 12px. Min column width: 150px.
294
+ • Tables: MAXIMUM 4 data rows. Min cell padding: 20px. Min column width: 150px.
295
+ ⚠ Table headers: MUST have dark/opaque background (e.g., primary_color) with WHITE text.
296
+ NEVER use transparent or light-colored header backgrounds — text becomes invisible.
297
+ Add border-radius to the table container, not individual cells.
267
298
  • Timeline: MAXIMUM 4 steps in a horizontal row.
268
299
  • Minimum text size: body 22px, bullets 20px, titles 24px. NEVER below 20px.
269
300
  • ALL content must fit within 900px height. If it overflows, REMOVE items — do NOT shrink text.
@@ -1 +1 @@
1
- {"version":3,"file":"powerpoint-create-prompts.js","sourceRoot":"","sources":["../../../src/agents/office/powerpoint-create-prompts.ts"],"names":[],"mappings":"AAcA,MAAM,CAAC,MAAM,6BAA6B,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;0CA4BH,CAAC;AAM3C,MAAM,CAAC,MAAM,8BAA8B,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8EAyIgC,CAAC;AAuB/E,MAAM,UAAU,oBAAoB,CAClC,UAAkB,EAClB,gBAAwB,EACxB,MAAoB,EACpB,UAAkB,EAClB,WAAmB,EACnB,QAAqB;IAErB,MAAM,QAAQ,GAAG,QAAQ,KAAK,IAAI;QAChC,CAAC,CAAC,gEAAgE;QAClE,CAAC,CAAC,sCAAsC,CAAC;IAE3C,OAAO;;;;UAIC,UAAU;QACZ,UAAU,GAAG,CAAC,OAAO,WAAW;;;EAGtC,gBAAgB;;;WAGP,MAAM,CAAC,aAAa;UACrB,MAAM,CAAC,YAAY;cACf,MAAM,CAAC,gBAAgB;QAC7B,MAAM,CAAC,UAAU;gBACT,MAAM,CAAC,YAAY;gBACnB,MAAM,CAAC,YAAY;cACrB,MAAM,CAAC,UAAU;aAClB,MAAM,CAAC,SAAS;QACrB,MAAM,CAAC,IAAI;SACV,MAAM,CAAC,YAAY;;;;;;iFAMqD,MAAM,CAAC,SAAS,OAAO,MAAM,CAAC,UAAU;;;;yBAIhG,MAAM,CAAC,UAAU,OAAO,MAAM,CAAC,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAuE7D,QAAQ;;;;;;;;;;;2BAWe,UAAU,GAAG,CAAC;;wFAE+C,CAAC;AACzF,CAAC;AAMD,MAAM,CAAC,MAAM,wBAAwB,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wEA6BgC,CAAC;AAEzE,MAAM,CAAC,MAAM,0BAA0B,GAAG;;;;;;;;;;;;;4DAakB,CAAC;AAG7D,MAAM,UAAU,sBAAsB,CACpC,QAAgB,EAChB,KAAa,EACb,SAAiB,EACjB,QAAgB,EAChB,QAAqB;IAErB,IAAI,CAAC,QAAQ,CAAC,UAAU,CAAC,mBAAmB,CAAC;QAAE,OAAO,EAAE,CAAC;IAEzD,MAAM,QAAQ,GAAG,QAAQ,KAAK,IAAI;QAChC,CAAC,CAAC,6BAA6B;QAC/B,CAAC,CAAC,8BAA8B,CAAC;IAEnC,OAAO,2BAA2B,KAAK;;;;EAIvC,SAAS;;;EAGT,QAAQ;;;IAGN,QAAQ;;;0DAG8C,CAAC;AAC3D,CAAC"}
1
+ {"version":3,"file":"powerpoint-create-prompts.js","sourceRoot":"","sources":["../../../src/agents/office/powerpoint-create-prompts.ts"],"names":[],"mappings":"AAcA,MAAM,CAAC,MAAM,6BAA6B,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;0CA4BH,CAAC;AAM3C,MAAM,CAAC,MAAM,8BAA8B,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8EAyIgC,CAAC;AAuB/E,MAAM,UAAU,oBAAoB,CAClC,UAAkB,EAClB,gBAAwB,EACxB,MAAoB,EACpB,UAAkB,EAClB,WAAmB,EACnB,QAAqB;IAErB,MAAM,QAAQ,GAAG,QAAQ,KAAK,IAAI;QAChC,CAAC,CAAC,gEAAgE;QAClE,CAAC,CAAC,sCAAsC,CAAC;IAE3C,OAAO;;;;UAIC,UAAU;QACZ,UAAU,GAAG,CAAC,OAAO,WAAW;;;EAGtC,gBAAgB;;;WAGP,MAAM,CAAC,aAAa;UACrB,MAAM,CAAC,YAAY;cACf,MAAM,CAAC,gBAAgB;QAC7B,MAAM,CAAC,UAAU;gBACT,MAAM,CAAC,YAAY;gBACnB,MAAM,CAAC,YAAY;cACrB,MAAM,CAAC,UAAU;aAClB,MAAM,CAAC,SAAS;QACrB,MAAM,CAAC,IAAI;SACV,MAAM,CAAC,YAAY;;;;;;iFAMqD,MAAM,CAAC,SAAS,OAAO,MAAM,CAAC,UAAU;;;;yBAIhG,MAAM,CAAC,UAAU,OAAO,MAAM,CAAC,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAsG7D,QAAQ;;;;;;;;;;;2BAWe,UAAU,GAAG,CAAC;;wFAE+C,CAAC;AACzF,CAAC;AAMD,MAAM,CAAC,MAAM,wBAAwB,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wEA6BgC,CAAC;AAEzE,MAAM,CAAC,MAAM,0BAA0B,GAAG;;;;;;;;;;;;;4DAakB,CAAC;AAG7D,MAAM,UAAU,sBAAsB,CACpC,QAAgB,EAChB,KAAa,EACb,SAAiB,EACjB,QAAgB,EAChB,QAAqB;IAErB,IAAI,CAAC,QAAQ,CAAC,UAAU,CAAC,mBAAmB,CAAC;QAAE,OAAO,EAAE,CAAC;IAEzD,MAAM,QAAQ,GAAG,QAAQ,KAAK,IAAI;QAChC,CAAC,CAAC,6BAA6B;QAC/B,CAAC,CAAC,8BAA8B,CAAC;IAEnC,OAAO,2BAA2B,KAAK;;;;EAIvC,SAAS;;;EAGT,QAAQ;;;IAGN,QAAQ;;;0DAG8C,CAAC;AAC3D,CAAC"}
@@ -7,7 +7,7 @@ export declare const PROJECTS_DIR: string;
7
7
  export declare const CREDENTIALS_FILE_PATH: string;
8
8
  export declare const APP_NAME = "hanseol-dev";
9
9
  export declare const SERVICE_ID = "hanseol";
10
- export declare const APP_VERSION = "5.0.2-dev.72";
10
+ export declare const APP_VERSION = "5.0.2-dev.73";
11
11
  export declare const DASHBOARD_URL = "https://52.78.246.50.nip.io";
12
12
  export declare const ONCE_URL = "https://52.78.246.50.nip.io:5090";
13
13
  export declare const FREE_URL = "https://52.78.246.50.nip.io:6090";
package/dist/constants.js CHANGED
@@ -9,7 +9,7 @@ export const PROJECTS_DIR = path.join(LOCAL_HOME_DIR, 'projects');
9
9
  export const CREDENTIALS_FILE_PATH = path.join(LOCAL_HOME_DIR, 'credentials.json');
10
10
  export const APP_NAME = 'hanseol-dev';
11
11
  export const SERVICE_ID = 'hanseol';
12
- export const APP_VERSION = '5.0.2-dev.72';
12
+ export const APP_VERSION = '5.0.2-dev.73';
13
13
  export const DASHBOARD_URL = 'https://52.78.246.50.nip.io';
14
14
  export const ONCE_URL = 'https://52.78.246.50.nip.io:5090';
15
15
  export const FREE_URL = 'https://52.78.246.50.nip.io:6090';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hanseol-dev",
3
- "version": "5.0.2-dev.72",
3
+ "version": "5.0.2-dev.73",
4
4
  "description": "Hanseol - OpenAI-Compatible Coding Agent",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",