-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathkintsugi.json
More file actions
1628 lines (1628 loc) · 63 KB
/
kintsugi.json
File metadata and controls
1628 lines (1628 loc) · 63 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"version": "0.1.0",
"generator": "kintsugi-cli/0.1.0",
"generatedAt": "2026-03-28T23:07:29.565Z",
"project": {
"name": "cloudflow-landing",
"framework": "astro",
"language": "typescript",
"entrypoints": [
"src/layouts/Layout.astro",
"src/pages/index.astro"
],
"renderMode": "static"
},
"agent": {
"description": "SaaS landing page for CloudFlow, a managed cloud services provider. Goal: convert visitors to free trial signups.",
"tone": "Professional, modern, trustworthy. Technical but accessible.",
"rules": [
"Keep headlines under 80 characters",
"All text must work in both Turkish and English contexts",
"Maintain consistent brand voice across sections",
"Feature descriptions should be benefit-oriented, not feature-oriented",
"CTA text should create urgency without being pushy"
],
"capabilities": {
"canAddAnnotations": false,
"canDeleteAnnotations": false,
"canModifyStructure": false,
"canModifyContent": true
},
"procedures": {
"seasonal-refresh": {
"description": "Update all above-fold content for a new campaign",
"steps": [
{ "action": "read", "filter": { "tags": ["above-fold"] }, "description": "Read all above-fold content" },
{ "action": "write-batch", "filter": { "tags": ["above-fold"], "cms": "editable" }, "description": "Rewrite editable above-fold content" },
{ "action": "write", "target": "meta-description", "description": "Update SEO meta description" },
{ "action": "publish", "description": "Publish all changes" }
]
},
"update-testimonials": {
"description": "Refresh all four customer testimonials",
"steps": [
{ "action": "read", "filter": { "tags": ["testimonials"] }, "description": "Read existing testimonials" },
{ "action": "write-batch", "filter": { "tags": ["testimonials"], "cms": "editable" }, "description": "Write new testimonial content" },
{ "action": "publish", "description": "Publish testimonial updates" }
]
},
"refresh-features": {
"description": "Update feature titles and descriptions for a new product release",
"steps": [
{ "action": "read", "filter": { "tags": ["features"] }, "description": "Read current feature content" },
{ "action": "write-batch", "filter": { "tags": ["features"], "cms": "editable" }, "description": "Update all feature content" },
{ "action": "publish", "description": "Publish feature updates" }
]
},
"seo-update": {
"description": "Refresh SEO-critical content (title, description, hero headline)",
"steps": [
{ "action": "read", "filter": { "tags": ["seo"] }, "description": "Read all SEO-tagged content" },
{ "action": "write", "target": "meta-title", "description": "Update page title tag" },
{ "action": "write", "target": "meta-description", "description": "Update meta description" },
{ "action": "write", "target": "hero-title", "description": "Update hero headline" },
{ "action": "publish", "description": "Publish SEO changes" }
]
}
}
},
"annotations": {
"meta-title": {
"type": "text",
"label": "Page Title",
"cms": "ai-only",
"constraints": {
"maxLength": 70
},
"agent": {
"intent": "seo-title",
"priority": "critical",
"safeToRegenerate": true,
"contentGuideline": "Include brand name CloudFlow, primary keyword, under 60 chars",
"tags": [
"seo",
"meta"
]
},
"default": "<title>{title}</title>",
"source": {
"file": "src/layouts/Layout.astro",
"startLine": 24,
"endLine": 26
},
"group": null
},
"meta-description": {
"type": "text",
"label": "Meta Description",
"cms": "ai-only",
"constraints": {
"maxLength": 160
},
"agent": {
"intent": "seo-description",
"priority": "high",
"safeToRegenerate": true,
"contentGuideline": "Benefit-focused, include a CTA, 120-155 chars",
"tags": [
"seo",
"meta"
]
},
"default": "<meta name=\"description\" content={description} />",
"source": {
"file": "src/layouts/Layout.astro",
"startLine": 28,
"endLine": 30
},
"group": null
},
"nav-logo": {
"type": "text",
"label": "Brand Logo Text",
"cms": "human-only",
"agent": {
"intent": "brand-identity",
"priority": "critical",
"safeToRegenerate": false,
"tags": [
"brand",
"navigation"
]
},
"default": "<a href=\"/\" class=\"flex items-center gap-2.5 font-bold text-xl tracking-tight\">\n <span class=\"flex h-8 w-8 items-center justify-center rounded-lg bg-gradient-to-br from-blue-500 to-purple-600 text-sm font-black text-white shadow-lg shadow-blue-500/25\">C</span>\n <span class=\"bg-gradient-to-r from-white to-slate-300 bg-clip-text text-transparent\">CloudFlow</span>\n </a>",
"source": {
"file": "src/pages/index.astro",
"startLine": 16,
"endLine": 21
},
"group": null
},
"nav-links": {
"type": "text",
"label": "Navigation Links",
"cms": "locked",
"agent": {
"intent": "site-navigation",
"priority": "medium",
"safeToRegenerate": false,
"tags": [
"navigation",
"structure"
]
},
"default": "<ul class=\"hidden items-center gap-8 md:flex\">\n <li><a href=\"#features\" class=\"text-sm text-slate-400 transition-colors hover:text-white\">Features</a></li>\n <li><a href=\"#about\" class=\"text-sm text-slate-400 transition-colors hover:text-white\">About</a></li>\n <li><a href=\"#testimonials\" class=\"text-sm text-slate-400 transition-colors hover:text-white\">Testimonials</a></li>\n <li><a href=\"#contact\" class=\"text-sm text-slate-400 transition-colors hover:text-white\">Contact</a></li>\n </ul>",
"source": {
"file": "src/pages/index.astro",
"startLine": 23,
"endLine": 30
},
"group": null
},
"nav-cta": {
"type": "text",
"label": "Nav CTA Button",
"cms": "editable",
"constraints": {
"maxLength": 20
},
"agent": {
"intent": "navigation-cta",
"priority": "medium",
"safeToRegenerate": true,
"contentGuideline": "Short action phrase, 2-4 words",
"tags": [
"navigation",
"cta"
]
},
"default": "<a href=\"#contact\" class=\"hidden rounded-lg bg-gradient-to-r from-blue-500 to-purple-600 px-4 py-2 text-sm font-semibold text-white shadow-lg shadow-blue-500/25 transition-all hover:opacity-90 hover:shadow-blue-500/40 md:block\">\n Start Free Trial\n </a>",
"source": {
"file": "src/pages/index.astro",
"startLine": 32,
"endLine": 36
},
"group": null
},
"hero-bg": {
"type": "style",
"label": "Hero Background Gradient",
"cms": "human-only",
"constraints": {
"cssProperties": [
"background",
"background-image"
],
"tailwindClasses": [
"from-*",
"via-*",
"to-*"
]
},
"agent": {
"intent": "visual-identity",
"priority": "low",
"safeToRegenerate": false,
"tags": [
"design",
"above-fold"
]
},
"default": "<div class=\"pointer-events-none absolute inset-0\">\n <div class=\"absolute inset-0 bg-gradient-to-br from-slate-900 via-slate-900 to-slate-800\"></div>\n <div class=\"absolute left-1/4 top-1/4 h-96 w-96 -translate-x-1/2 -translate-y-1/2 rounded-full bg-blue-600/10 blur-3xl\"></div>\n <div class=\"absolute right-1/4 bottom-1/4 h-96 w-96 translate-x-1/2 translate-y-1/2 rounded-full bg-purple-600/10 blur-3xl\"></div>\n <div class=\"absolute left-1/2 top-1/2 h-[600px] w-[600px] -translate-x-1/2 -translate-y-1/2 rounded-full bg-blue-500/5 blur-3xl\"></div>\n </div>",
"source": {
"file": "src/pages/index.astro",
"startLine": 47,
"endLine": 54
},
"group": null
},
"hero-badge": {
"type": "text",
"label": "Hero Badge Label",
"cms": "editable",
"constraints": {
"maxLength": 50
},
"agent": {
"intent": "social-proof-teaser",
"priority": "medium",
"safeToRegenerate": true,
"contentGuideline": "Trust signal or announcement, short and punchy",
"tags": [
"above-fold",
"social-proof"
]
},
"default": "<div class=\"mb-6 inline-flex items-center gap-2 rounded-full border border-blue-500/30 bg-blue-500/10 px-4 py-1.5 text-sm font-medium text-blue-300\">\n <span class=\"h-1.5 w-1.5 rounded-full bg-blue-400\"></span>\n Trusted by 2,400+ engineering teams worldwide\n </div>",
"source": {
"file": "src/pages/index.astro",
"startLine": 58,
"endLine": 63
},
"group": null
},
"hero-title": {
"type": "text",
"label": "Hero Headline",
"cms": "editable",
"constraints": {
"maxLength": 80
},
"agent": {
"intent": "primary-headline",
"priority": "critical",
"safeToRegenerate": false,
"contentGuideline": "Action-oriented headline that addresses infrastructure pain points. Lead with the outcome, not the process. No jargon.",
"affects": [
"meta-title",
"meta-description"
],
"tags": [
"seo",
"above-fold",
"conversion"
]
},
"default": "<h1 class=\"mx-auto mb-6 max-w-4xl text-5xl font-extrabold leading-tight tracking-tight text-white lg:text-7xl\">\n Your Cloud Infrastructure,\n <span class=\"bg-gradient-to-r from-blue-400 via-purple-400 to-blue-400 bg-clip-text text-transparent\"> Simplified.</span>\n </h1>",
"source": {
"file": "src/pages/index.astro",
"startLine": 65,
"endLine": 70
},
"group": null
},
"hero-subtitle": {
"type": "text",
"label": "Hero Value Proposition",
"cms": "editable",
"constraints": {
"maxLength": 200
},
"agent": {
"intent": "value-proposition",
"priority": "high",
"safeToRegenerate": true,
"contentGuideline": "3 benefits in 1-2 sentences. Focus on what the customer gains, not what the product does. End on a confidence note.",
"affects": [
"meta-description"
],
"tags": [
"above-fold",
"conversion",
"value-prop"
]
},
"default": "<p class=\"mx-auto mb-10 max-w-2xl text-xl leading-relaxed text-slate-300\">\n Stop wrestling with servers. CloudFlow manages your entire cloud stack — automated scaling, global failover, and real human experts on call 24/7 — so you can ship faster.\n </p>",
"source": {
"file": "src/pages/index.astro",
"startLine": 72,
"endLine": 76
},
"group": null
},
"hero-cta-primary": {
"type": "text",
"label": "Hero Primary CTA",
"cms": "editable",
"constraints": {
"maxLength": 30
},
"agent": {
"intent": "primary-call-to-action",
"priority": "critical",
"safeToRegenerate": true,
"contentGuideline": "Urgency without pressure. Action verb + benefit. No 'click here'.",
"tags": [
"above-fold",
"cta",
"conversion"
]
},
"default": "<a href=\"#contact\" class=\"inline-flex items-center gap-2 rounded-xl bg-gradient-to-r from-blue-500 to-purple-600 px-8 py-4 text-base font-semibold text-white shadow-xl shadow-blue-500/30 transition-all hover:opacity-90 hover:shadow-blue-500/50 hover:-translate-y-0.5\">\n Start Free Trial\n <svg class=\"h-4 w-4\" fill=\"none\" viewBox=\"0 0 24 24\" stroke=\"currentColor\" stroke-width=\"2\"><path stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"M13 7l5 5m0 0l-5 5m5-5H6\"/></svg>\n </a>",
"source": {
"file": "src/pages/index.astro",
"startLine": 80,
"endLine": 85
},
"group": null
},
"hero-cta-secondary": {
"type": "text",
"label": "Hero Secondary CTA",
"cms": "editable",
"constraints": {
"maxLength": 30
},
"agent": {
"intent": "secondary-call-to-action",
"priority": "medium",
"safeToRegenerate": true,
"contentGuideline": "Lower commitment offer. 'See how it works' style.",
"tags": [
"above-fold",
"cta"
]
},
"default": "<a href=\"#features\" class=\"inline-flex items-center gap-2 rounded-xl border border-slate-700 bg-slate-800/50 px-8 py-4 text-base font-semibold text-slate-300 backdrop-blur transition-all hover:border-slate-600 hover:bg-slate-800 hover:text-white\">\n <svg class=\"h-4 w-4\" fill=\"none\" viewBox=\"0 0 24 24\" stroke=\"currentColor\" stroke-width=\"2\"><path stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"M14.752 11.168l-3.197-2.132A1 1 0 0010 9.87v4.263a1 1 0 001.555.832l3.197-2.132a1 1 0 000-1.664z\"/><path stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"M21 12a9 9 0 11-18 0 9 9 0 0118 0z\"/></svg>\n See How It Works\n </a>",
"source": {
"file": "src/pages/index.astro",
"startLine": 87,
"endLine": 92
},
"group": null
},
"hero-social-proof": {
"type": "data",
"label": "Hero Social Proof Stats",
"cms": "editable",
"constraints": {
"schema": {
"type": "array",
"items": {
"type": "object",
"properties": {
"value": {
"type": "string"
},
"label": {
"type": "string"
}
}
}
},
"maxItems": 4
},
"agent": {
"intent": "social-proof",
"priority": "high",
"safeToRegenerate": true,
"contentGuideline": "Real-looking stats. Use round numbers or percentages. Keep labels short.",
"tags": [
"above-fold",
"social-proof",
"trust"
]
},
"default": "<div class=\"mx-auto mt-16 grid max-w-2xl grid-cols-2 gap-px overflow-hidden rounded-2xl border border-slate-800 bg-slate-800 sm:grid-cols-4\">\n {[\n { value: '99.99%', label: 'Uptime SLA' },\n { value: '2,400+', label: 'Teams Served' },\n { value: '<50ms', label: 'Avg. Response' },\n { value: '24/7', label: 'Expert Support' },\n ].map((stat) => (\n <div class=\"flex flex-col items-center bg-slate-900 px-6 py-5 text-center\">\n <span class=\"text-2xl font-bold text-white\">{stat.value}</span>\n <span class=\"mt-1 text-xs text-slate-500\">{stat.label}</span>\n </div>\n ))}\n </div>",
"source": {
"file": "src/pages/index.astro",
"startLine": 97,
"endLine": 111
},
"group": null
},
"features-eyebrow": {
"type": "text",
"label": "Features Section Eyebrow",
"cms": "editable",
"constraints": {
"maxLength": 40
},
"agent": {
"intent": "section-label",
"priority": "low",
"safeToRegenerate": true,
"contentGuideline": "Short uppercase-style label for the section",
"tags": [
"features"
]
},
"default": "<p class=\"mb-3 text-sm font-semibold uppercase tracking-widest text-blue-400\">\n Everything You Need\n </p>",
"source": {
"file": "src/pages/index.astro",
"startLine": 125,
"endLine": 129
},
"group": null
},
"features-heading": {
"type": "text",
"label": "Features Section Heading",
"cms": "editable",
"constraints": {
"maxLength": 70
},
"agent": {
"intent": "section-headline",
"priority": "high",
"safeToRegenerate": true,
"contentGuideline": "Outcome-focused, why these features matter to the customer",
"tags": [
"features",
"seo"
]
},
"default": "<h2 class=\"mb-4 text-4xl font-bold tracking-tight text-white lg:text-5xl\">\n Infrastructure that scales with you\n </h2>",
"source": {
"file": "src/pages/index.astro",
"startLine": 131,
"endLine": 135
},
"group": null
},
"features-subheading": {
"type": "text",
"label": "Features Section Subheading",
"cms": "editable",
"constraints": {
"maxLength": 150
},
"agent": {
"intent": "section-description",
"priority": "medium",
"safeToRegenerate": true,
"contentGuideline": "Expands on the heading, reinforces the value prop",
"tags": [
"features"
]
},
"default": "<p class=\"mx-auto max-w-2xl text-lg text-slate-400\">\n From day one to production at scale, CloudFlow handles the hard parts so your team stays focused on what matters.\n </p>",
"source": {
"file": "src/pages/index.astro",
"startLine": 137,
"endLine": 141
},
"group": null
},
"feature-1-icon": {
"type": "text",
"label": "Feature 1 Icon",
"cms": "editable",
"constraints": {
"maxLength": 2
},
"agent": {
"intent": "feature-icon",
"priority": "low",
"safeToRegenerate": true,
"contentGuideline": "Single relevant emoji for auto-scaling feature",
"tags": [
"features"
]
},
"default": "<span class=\"mb-4 block text-3xl\">⚡</span>",
"source": {
"file": "src/pages/index.astro",
"startLine": 152,
"endLine": 154
},
"group": null
},
"feature-1-title": {
"type": "text",
"label": "Feature 1 Title",
"cms": "editable",
"constraints": {
"maxLength": 40
},
"agent": {
"intent": "feature-headline",
"priority": "high",
"safeToRegenerate": true,
"contentGuideline": "Action-noun format, benefit-first, under 5 words",
"tags": [
"features"
]
},
"default": "<h3 class=\"mb-2 text-lg font-semibold text-white\">Auto-Scaling Infrastructure</h3>",
"source": {
"file": "src/pages/index.astro",
"startLine": 155,
"endLine": 157
},
"group": null
},
"feature-1-description": {
"type": "text",
"label": "Feature 1 Description",
"cms": "editable",
"constraints": {
"maxLength": 180
},
"agent": {
"intent": "feature-body",
"priority": "medium",
"safeToRegenerate": true,
"contentGuideline": "2-3 sentences. Lead with the problem solved, explain the solution, end with the outcome.",
"tags": [
"features"
]
},
"default": "<p class=\"text-sm leading-relaxed text-slate-400\">\n Traffic spikes won't catch you off guard. CloudFlow automatically provisions resources in under 30 seconds, then scales back down to keep your costs in check.\n </p>",
"source": {
"file": "src/pages/index.astro",
"startLine": 158,
"endLine": 162
},
"group": null
},
"feature-2-icon": {
"type": "text",
"label": "Feature 2 Icon",
"cms": "editable",
"constraints": {
"maxLength": 2
},
"agent": {
"intent": "feature-icon",
"priority": "low",
"safeToRegenerate": true,
"contentGuideline": "Single relevant emoji for global CDN/network feature",
"tags": [
"features"
]
},
"default": "<span class=\"mb-4 block text-3xl\">🌍</span>",
"source": {
"file": "src/pages/index.astro",
"startLine": 170,
"endLine": 172
},
"group": null
},
"feature-2-title": {
"type": "text",
"label": "Feature 2 Title",
"cms": "editable",
"constraints": {
"maxLength": 40
},
"agent": {
"intent": "feature-headline",
"priority": "high",
"safeToRegenerate": true,
"contentGuideline": "Action-noun format, benefit-first, under 5 words",
"tags": [
"features"
]
},
"default": "<h3 class=\"mb-2 text-lg font-semibold text-white\">Global Edge Network</h3>",
"source": {
"file": "src/pages/index.astro",
"startLine": 173,
"endLine": 175
},
"group": null
},
"feature-2-description": {
"type": "text",
"label": "Feature 2 Description",
"cms": "editable",
"constraints": {
"maxLength": 180
},
"agent": {
"intent": "feature-body",
"priority": "medium",
"safeToRegenerate": true,
"contentGuideline": "2-3 sentences. Lead with the problem solved, explain the solution, end with the outcome.",
"tags": [
"features"
]
},
"default": "<p class=\"text-sm leading-relaxed text-slate-400\">\n Serve your users from wherever they are. With 42 PoPs across 6 continents, your content is always milliseconds away — not seconds.\n </p>",
"source": {
"file": "src/pages/index.astro",
"startLine": 176,
"endLine": 180
},
"group": null
},
"feature-3-icon": {
"type": "text",
"label": "Feature 3 Icon",
"cms": "editable",
"constraints": {
"maxLength": 2
},
"agent": {
"intent": "feature-icon",
"priority": "low",
"safeToRegenerate": true,
"contentGuideline": "Single relevant emoji for security/compliance feature",
"tags": [
"features"
]
},
"default": "<span class=\"mb-4 block text-3xl\">🔒</span>",
"source": {
"file": "src/pages/index.astro",
"startLine": 188,
"endLine": 190
},
"group": null
},
"feature-3-title": {
"type": "text",
"label": "Feature 3 Title",
"cms": "editable",
"constraints": {
"maxLength": 40
},
"agent": {
"intent": "feature-headline",
"priority": "high",
"safeToRegenerate": true,
"contentGuideline": "Action-noun format, benefit-first, under 5 words",
"tags": [
"features"
]
},
"default": "<h3 class=\"mb-2 text-lg font-semibold text-white\">Zero-Trust Security</h3>",
"source": {
"file": "src/pages/index.astro",
"startLine": 191,
"endLine": 193
},
"group": null
},
"feature-3-description": {
"type": "text",
"label": "Feature 3 Description",
"cms": "editable",
"constraints": {
"maxLength": 180
},
"agent": {
"intent": "feature-body",
"priority": "medium",
"safeToRegenerate": true,
"contentGuideline": "2-3 sentences. Lead with the problem solved, explain the solution, end with the outcome.",
"tags": [
"features"
]
},
"default": "<p class=\"text-sm leading-relaxed text-slate-400\">\n Built-in DDoS protection, WAF, and automated compliance reports for SOC 2, ISO 27001, and GDPR. Security that works without slowing you down.\n </p>",
"source": {
"file": "src/pages/index.astro",
"startLine": 194,
"endLine": 198
},
"group": null
},
"feature-4-icon": {
"type": "text",
"label": "Feature 4 Icon",
"cms": "editable",
"constraints": {
"maxLength": 2
},
"agent": {
"intent": "feature-icon",
"priority": "low",
"safeToRegenerate": true,
"contentGuideline": "Single relevant emoji for observability/monitoring feature",
"tags": [
"features"
]
},
"default": "<span class=\"mb-4 block text-3xl\">📊</span>",
"source": {
"file": "src/pages/index.astro",
"startLine": 206,
"endLine": 208
},
"group": null
},
"feature-4-title": {
"type": "text",
"label": "Feature 4 Title",
"cms": "editable",
"constraints": {
"maxLength": 40
},
"agent": {
"intent": "feature-headline",
"priority": "high",
"safeToRegenerate": true,
"contentGuideline": "Action-noun format, benefit-first, under 5 words",
"tags": [
"features"
]
},
"default": "<h3 class=\"mb-2 text-lg font-semibold text-white\">Full-Stack Observability</h3>",
"source": {
"file": "src/pages/index.astro",
"startLine": 209,
"endLine": 211
},
"group": null
},
"feature-4-description": {
"type": "text",
"label": "Feature 4 Description",
"cms": "editable",
"constraints": {
"maxLength": 180
},
"agent": {
"intent": "feature-body",
"priority": "medium",
"safeToRegenerate": true,
"contentGuideline": "2-3 sentences. Lead with the problem solved, explain the solution, end with the outcome.",
"tags": [
"features"
]
},
"default": "<p class=\"text-sm leading-relaxed text-slate-400\">\n See everything from a single pane. Metrics, traces, and logs unified — with AI-powered anomaly detection that alerts you before users notice a thing.\n </p>",
"source": {
"file": "src/pages/index.astro",
"startLine": 212,
"endLine": 216
},
"group": null
},
"feature-5-icon": {
"type": "text",
"label": "Feature 5 Icon",
"cms": "editable",
"constraints": {
"maxLength": 2
},
"agent": {
"intent": "feature-icon",
"priority": "low",
"safeToRegenerate": true,
"contentGuideline": "Single relevant emoji for CI/CD deploy automation feature",
"tags": [
"features"
]
},
"default": "<span class=\"mb-4 block text-3xl\">🚀</span>",
"source": {
"file": "src/pages/index.astro",
"startLine": 224,
"endLine": 226
},
"group": null
},
"feature-5-title": {
"type": "text",
"label": "Feature 5 Title",
"cms": "editable",
"constraints": {
"maxLength": 40
},
"agent": {
"intent": "feature-headline",
"priority": "high",
"safeToRegenerate": true,
"contentGuideline": "Action-noun format, benefit-first, under 5 words",
"tags": [
"features"
]
},
"default": "<h3 class=\"mb-2 text-lg font-semibold text-white\">One-Click Deployments</h3>",
"source": {
"file": "src/pages/index.astro",
"startLine": 227,
"endLine": 229
},
"group": null
},
"feature-5-description": {
"type": "text",
"label": "Feature 5 Description",
"cms": "editable",
"constraints": {
"maxLength": 180
},
"agent": {
"intent": "feature-body",
"priority": "medium",
"safeToRegenerate": true,
"contentGuideline": "2-3 sentences. Lead with the problem solved, explain the solution, end with the outcome.",
"tags": [
"features"
]
},
"default": "<p class=\"text-sm leading-relaxed text-slate-400\">\n Push to deploy in seconds, not hours. Integrated CI/CD pipelines, zero-downtime blue/green deployments, and instant rollbacks with a single click.\n </p>",
"source": {
"file": "src/pages/index.astro",
"startLine": 230,
"endLine": 234
},
"group": null
},
"feature-6-icon": {
"type": "text",
"label": "Feature 6 Icon",
"cms": "editable",
"constraints": {
"maxLength": 2
},
"agent": {
"intent": "feature-icon",
"priority": "low",
"safeToRegenerate": true,
"contentGuideline": "Single relevant emoji for cost management/billing feature",
"tags": [
"features"
]
},
"default": "<span class=\"mb-4 block text-3xl\">💡</span>",
"source": {
"file": "src/pages/index.astro",
"startLine": 242,
"endLine": 244
},
"group": null
},
"feature-6-title": {
"type": "text",
"label": "Feature 6 Title",
"cms": "editable",
"constraints": {
"maxLength": 40
},
"agent": {
"intent": "feature-headline",
"priority": "high",
"safeToRegenerate": true,
"contentGuideline": "Action-noun format, benefit-first, under 5 words",
"tags": [
"features"
]
},
"default": "<h3 class=\"mb-2 text-lg font-semibold text-white\">Intelligent Cost Control</h3>",
"source": {
"file": "src/pages/index.astro",
"startLine": 245,
"endLine": 247
},
"group": null
},
"feature-6-description": {
"type": "text",
"label": "Feature 6 Description",
"cms": "editable",
"constraints": {
"maxLength": 180
},
"agent": {
"intent": "feature-body",
"priority": "medium",
"safeToRegenerate": true,
"contentGuideline": "2-3 sentences. Lead with the problem solved, explain the solution, end with the outcome.",
"tags": [
"features"
]
},
"default": "<p class=\"text-sm leading-relaxed text-slate-400\">\n Cloud bills that actually make sense. AI-driven rightsizing recommendations and budget alerts keep your spend predictable, with average savings of 40%.\n </p>",
"source": {
"file": "src/pages/index.astro",
"startLine": 248,
"endLine": 252
},
"group": null
},
"features-group": {
"type": "group",
"label": "Service Features",
"cms": "editable",
"agent": {
"intent": "feature-showcase",
"priority": "high",
"safeToRegenerate": true,
"contentGuideline": "Each feature should be benefit-oriented. Lead with what the customer gains. Icon should be relevant emoji. Title under 5 words.",
"tags": [
"features",
"product"
]
},
"default": "<div class=\"grid gap-6 sm:grid-cols-2 lg:grid-cols-3\">\n\n <!-- Feature 1 -->\n <div class=\"group relative overflow-hidden rounded-2xl border border-slate-700/50 bg-slate-800/50 p-8 backdrop-blur transition-all hover:border-slate-600 hover:bg-slate-800\">\n <div class=\"absolute inset-0 bg-gradient-to-br from-blue-500/5 to-transparent opacity-0 transition-opacity group-hover:opacity-100\"></div>\n <div class=\"relative\">\n <span class=\"mb-4 block text-3xl\">⚡</span>\n <h3 class=\"mb-2 text-lg font-semibold text-white\">Auto-Scaling Infrastructure</h3>\n <p class=\"text-sm leading-relaxed text-slate-400\">\n Traffic spikes won't catch you off guard. CloudFlow automatically provisions resources in under 30 seconds, then scales back down to keep your costs in check.\n </p>\n </div>\n </div>\n\n <!-- Feature 2 -->\n <div class=\"group relative overflow-hidden rounded-2xl border border-slate-700/50 bg-slate-800/50 p-8 backdrop-blur transition-all hover:border-slate-600 hover:bg-slate-800\">\n <div class=\"absolute inset-0 bg-gradient-to-br from-purple-500/5 to-transparent opacity-0 transition-opacity group-hover:opacity-100\"></div>\n <div class=\"relative\">\n <span class=\"mb-4 block text-3xl\">🌍</span>\n <h3 class=\"mb-2 text-lg font-semibold text-white\">Global Edge Network</h3>\n <p class=\"text-sm leading-relaxed text-slate-400\">\n Serve your users from wherever they are. With 42 PoPs across 6 continents, your content is always milliseconds away — not seconds.\n </p>\n </div>\n </div>\n\n <!-- Feature 3 -->\n <div class=\"group relative overflow-hidden rounded-2xl border border-slate-700/50 bg-slate-800/50 p-8 backdrop-blur transition-all hover:border-slate-600 hover:bg-slate-800\">\n <div class=\"absolute inset-0 bg-gradient-to-br from-blue-500/5 to-transparent opacity-0 transition-opacity group-hover:opacity-100\"></div>\n <div class=\"relative\">\n <span class=\"mb-4 block text-3xl\">🔒</span>\n <h3 class=\"mb-2 text-lg font-semibold text-white\">Zero-Trust Security</h3>\n <p class=\"text-sm leading-relaxed text-slate-400\">\n Built-in DDoS protection, WAF, and automated compliance reports for SOC 2, ISO 27001, and GDPR. Security that works without slowing you down.\n </p>\n </div>\n </div>\n\n <!-- Feature 4 -->\n <div class=\"group relative overflow-hidden rounded-2xl border border-slate-700/50 bg-slate-800/50 p-8 backdrop-blur transition-all hover:border-slate-600 hover:bg-slate-800\">\n <div class=\"absolute inset-0 bg-gradient-to-br from-purple-500/5 to-transparent opacity-0 transition-opacity group-hover:opacity-100\"></div>\n <div class=\"relative\">\n <span class=\"mb-4 block text-3xl\">📊</span>\n <h3 class=\"mb-2 text-lg font-semibold text-white\">Full-Stack Observability</h3>\n <p class=\"text-sm leading-relaxed text-slate-400\">\n See everything from a single pane. Metrics, traces, and logs unified — with AI-powered anomaly detection that alerts you before users notice a thing.\n </p>\n </div>\n </div>\n\n <!-- Feature 5 -->\n <div class=\"group relative overflow-hidden rounded-2xl border border-slate-700/50 bg-slate-800/50 p-8 backdrop-blur transition-all hover:border-slate-600 hover:bg-slate-800\">\n <div class=\"absolute inset-0 bg-gradient-to-br from-blue-500/5 to-transparent opacity-0 transition-opacity group-hover:opacity-100\"></div>\n <div class=\"relative\">\n <span class=\"mb-4 block text-3xl\">🚀</span>\n <h3 class=\"mb-2 text-lg font-semibold text-white\">One-Click Deployments</h3>\n <p class=\"text-sm leading-relaxed text-slate-400\">\n Push to deploy in seconds, not hours. Integrated CI/CD pipelines, zero-downtime blue/green deployments, and instant rollbacks with a single click.\n </p>\n </div>\n </div>\n\n <!-- Feature 6 -->\n <div class=\"group relative overflow-hidden rounded-2xl border border-slate-700/50 bg-slate-800/50 p-8 backdrop-blur transition-all hover:border-slate-600 hover:bg-slate-800\">\n <div class=\"absolute inset-0 bg-gradient-to-br from-purple-500/5 to-transparent opacity-0 transition-opacity group-hover:opacity-100\"></div>\n <div class=\"relative\">\n <span class=\"mb-4 block text-3xl\">💡</span>\n <h3 class=\"mb-2 text-lg font-semibold text-white\">Intelligent Cost Control</h3>\n <p class=\"text-sm leading-relaxed text-slate-400\">\n Cloud bills that actually make sense. AI-driven rightsizing recommendations and budget alerts keep your spend predictable, with average savings of 40%.\n </p>\n </div>\n </div>\n\n </div>",
"source": {
"file": "src/pages/index.astro",
"startLine": 145,
"endLine": 257
},
"group": null
},
"about-eyebrow": {
"type": "text",
"label": "About Section Eyebrow",
"cms": "editable",
"constraints": {
"maxLength": 40
},
"agent": {
"intent": "section-label",
"priority": "low",
"safeToRegenerate": true,
"contentGuideline": "Short section identifier label",
"tags": [
"about"
]
},
"default": "<p class=\"mb-3 text-sm font-semibold uppercase tracking-widest text-purple-400\">\n Our Story\n </p>",
"source": {
"file": "src/pages/index.astro",
"startLine": 275,
"endLine": 279
},
"group": null
},
"about-heading": {
"type": "text",
"label": "About Section Heading",
"cms": "editable",
"constraints": {
"maxLength": 80
},
"agent": {
"intent": "about-headline",
"priority": "high",
"safeToRegenerate": true,
"contentGuideline": "Company mission statement style. Confident, not arrogant.",
"tags": [
"about"
]
},
"default": "<h2 class=\"mb-6 text-4xl font-bold tracking-tight text-white lg:text-5xl\">\n Built by engineers, for engineers\n </h2>",
"source": {
"file": "src/pages/index.astro",
"startLine": 281,
"endLine": 285
},
"group": null
},
"about-body": {
"type": "richtext",
"label": "About Section Body",
"cms": "editable",
"constraints": {
"maxLength": 800,
"allowedTags": [
"p",
"strong",
"em",
"ul",
"li",
"a"
]
},
"agent": {
"intent": "company-story",
"priority": "medium",
"safeToRegenerate": true,
"contentGuideline": "2-3 paragraphs. Company founding story, mission, values. Authentic and human. Avoid corporate speak.",
"tags": [
"about",
"brand"
]
},
"default": "<div class=\"prose prose-invert prose-slate max-w-none\">\n <p class=\"mb-4 text-slate-300 leading-relaxed\">\n CloudFlow was born out of frustration. In 2019, our founding team was running infrastructure for fast-growing startups and spending 70% of their time on undifferentiated heavy lifting — patching servers, wiring up alerts, untangling billing surprises.\n </p>\n <p class=\"mb-4 text-slate-300 leading-relaxed\">\n We built CloudFlow to give every engineering team access to the same infrastructure quality that only the largest tech companies could afford. <strong class=\"text-white\">Today, we manage over 18,000 workloads across 42 regions</strong> — and our customers consistently report shipping 3x faster after switching.\n </p>\n <p class=\"text-slate-300 leading-relaxed\">\n We're not just a platform. We're a partner. Our Site Reliability Engineers are embedded in your on-call rotation, ready to jump in when things get real.\n </p>\n </div>",
"source": {
"file": "src/pages/index.astro",
"startLine": 287,
"endLine": 299
},
"group": null