kitfly 0.1.2 → 0.2.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.
Files changed (209) hide show
  1. package/CHANGELOG.md +46 -0
  2. package/README.md +63 -16
  3. package/VERSION +1 -1
  4. package/dist/_raw/content/deployment/preflight.md +134 -0
  5. package/dist/_raw/content/deployment/recipes/aws-s3.md +128 -0
  6. package/dist/_raw/content/deployment/recipes/cloudflare-pages.md +73 -0
  7. package/dist/_raw/content/deployment/recipes/cloudflare-r2.md +156 -0
  8. package/dist/_raw/content/deployment/recipes/fly-io.md +57 -0
  9. package/dist/_raw/content/deployment/recipes/github-pages.md +112 -0
  10. package/dist/_raw/content/deployment/recipes/netlify.md +99 -0
  11. package/dist/_raw/content/deployment/recipes/vercel.md +88 -0
  12. package/dist/_raw/content/deployment/secrets-and-env-vars.md +75 -0
  13. package/dist/_raw/content/deployment.md +128 -0
  14. package/dist/_raw/content/guide/approaches.md +182 -0
  15. package/dist/_raw/content/guide/features.md +121 -0
  16. package/dist/_raw/content/guide/getting-started.md +112 -0
  17. package/dist/_raw/content/guide/kitfly-overview.md +209 -0
  18. package/dist/_raw/content/reference/configuration.md +259 -0
  19. package/dist/_raw/content/reference/design-catalog.md +167 -0
  20. package/dist/_raw/content/reference/environment-variables.md +66 -0
  21. package/dist/_raw/content/reference/glossary.md +92 -0
  22. package/dist/_raw/content/reference/key-concepts.md +118 -0
  23. package/dist/_raw/content/reference/plugins.md +220 -0
  24. package/dist/_raw/content/reference/slides-authoring-guidelines.md +129 -0
  25. package/dist/_raw/content/reference/structure.md +166 -0
  26. package/dist/_raw/content/reference.md +20 -0
  27. package/dist/_raw/content/templates/crucible.md +192 -0
  28. package/dist/_raw/content/templates/handbook.md +83 -0
  29. package/dist/_raw/content/templates/minimal.md +138 -0
  30. package/dist/_raw/content/templates/overview.md +187 -0
  31. package/dist/_raw/content/templates/pipeline.md +151 -0
  32. package/dist/_raw/content/templates/productbook.md +187 -0
  33. package/dist/_raw/content/templates/runbook.md +193 -0
  34. package/dist/_raw/content/templates/servicebook.md +163 -0
  35. package/dist/_raw/docs/decisions/ADR-0001-minimalist-site-code.md +118 -0
  36. package/dist/_raw/docs/decisions/ADR-0002-ai-accessibility.md +153 -0
  37. package/dist/_raw/docs/decisions/ADR-0003-single-file-bundle.md +93 -0
  38. package/dist/_raw/docs/decisions/ADR-0004-bun-runtime.md +98 -0
  39. package/dist/_raw/docs/decisions/ADR-0005-plugin-contract-and-distribution.md +110 -0
  40. package/dist/_raw/docs/decisions/DDR-0001-viewport-locked-layout.md +111 -0
  41. package/dist/_raw/docs/decisions/DDR-0002-theme-system.md +131 -0
  42. package/dist/_raw/docs/decisions/DDR-0003-bounded-logo-slot.md +106 -0
  43. package/dist/_raw/docs/decisions/DDR-0004-slides-rendering-model.md +113 -0
  44. package/dist/_raw/docs/decisions/DDR-0005-deterministic-layout-boundary.md +107 -0
  45. package/dist/_raw/docs/userguide/cli/build.md +85 -0
  46. package/dist/_raw/docs/userguide/cli/bundle.md +81 -0
  47. package/dist/_raw/docs/userguide/cli/dev.md +92 -0
  48. package/dist/_raw/docs/userguide/cli/init.md +116 -0
  49. package/dist/_raw/docs/userguide/cli/servers.md +69 -0
  50. package/dist/_raw/docs/userguide/cli/stop.md +76 -0
  51. package/dist/_raw/docs/userguide/cli/update.md +78 -0
  52. package/dist/_raw/docs/userguide/cli/version.md +65 -0
  53. package/dist/_raw/docs/userguide/cli.md +34 -0
  54. package/dist/_raw/docs/userguide/sharing.md +94 -0
  55. package/dist/_raw/schemas/plugin-schemas-notes.md +71 -0
  56. package/dist/_raw/schemas.md +42 -0
  57. package/dist/assets/brand/kitfly-favicon-32.png +0 -0
  58. package/dist/assets/brand/kitfly-icon-64.png +0 -0
  59. package/dist/assets/brand/kitfly-logo-128.png +0 -0
  60. package/dist/assets/brand/kitfly-logo-512.png +0 -0
  61. package/dist/assets/brand/kitfly-logo.svg +12132 -0
  62. package/dist/assets/brand/kitfly-neon-128.png +0 -0
  63. package/dist/assets/brand/kitfly-neon-192.png +0 -0
  64. package/dist/assets/brand/kitfly-neon-256.png +0 -0
  65. package/dist/assets/brand/kitfly-neon.png +0 -0
  66. package/dist/assets/brand/palette.md +75 -0
  67. package/dist/content/deployment/index.html +11 -0
  68. package/dist/content/deployment/preflight.html +418 -0
  69. package/dist/content/deployment/recipes/aws-s3.html +421 -0
  70. package/dist/content/deployment/recipes/cloudflare-pages.html +372 -0
  71. package/dist/content/deployment/recipes/cloudflare-r2.html +443 -0
  72. package/dist/content/deployment/recipes/fly-io.html +356 -0
  73. package/dist/content/deployment/recipes/github-pages.html +414 -0
  74. package/dist/content/deployment/recipes/index.html +11 -0
  75. package/dist/content/deployment/recipes/netlify.html +394 -0
  76. package/dist/content/deployment/recipes/vercel.html +382 -0
  77. package/dist/content/deployment/secrets-and-env-vars.html +380 -0
  78. package/dist/content/deployment.html +426 -0
  79. package/dist/content/guide/approaches.html +501 -0
  80. package/dist/content/guide/features.html +436 -0
  81. package/dist/content/guide/getting-started.html +403 -0
  82. package/dist/content/guide/index.html +11 -0
  83. package/dist/content/guide/kitfly-overview.html +544 -0
  84. package/dist/content/index.html +11 -0
  85. package/dist/content/reference/configuration.html +580 -0
  86. package/dist/content/reference/design-catalog.html +449 -0
  87. package/dist/content/reference/environment-variables.html +367 -0
  88. package/dist/content/reference/glossary.html +368 -0
  89. package/dist/content/reference/index.html +11 -0
  90. package/dist/content/reference/key-concepts.html +399 -0
  91. package/dist/content/reference/plugins.html +491 -0
  92. package/dist/content/reference/slides-authoring-guidelines.html +418 -0
  93. package/dist/content/reference/structure.html +463 -0
  94. package/dist/content/reference.html +335 -0
  95. package/dist/content/templates/crucible.html +546 -0
  96. package/dist/content/templates/handbook.html +405 -0
  97. package/dist/content/templates/index.html +11 -0
  98. package/dist/content/templates/minimal.html +447 -0
  99. package/dist/content/templates/overview.html +558 -0
  100. package/dist/content/templates/pipeline.html +494 -0
  101. package/dist/content/templates/productbook.html +540 -0
  102. package/dist/content/templates/runbook.html +543 -0
  103. package/dist/content/templates/servicebook.html +523 -0
  104. package/dist/content-index.json +549 -0
  105. package/dist/docs/decisions/ADR-0001-minimalist-site-code.html +491 -0
  106. package/dist/docs/decisions/ADR-0002-ai-accessibility.html +434 -0
  107. package/dist/docs/decisions/ADR-0003-single-file-bundle.html +412 -0
  108. package/dist/docs/decisions/ADR-0004-bun-runtime.html +409 -0
  109. package/dist/docs/decisions/ADR-0005-plugin-contract-and-distribution.html +402 -0
  110. package/dist/docs/decisions/DDR-0001-viewport-locked-layout.html +459 -0
  111. package/dist/docs/decisions/DDR-0002-theme-system.html +452 -0
  112. package/dist/docs/decisions/DDR-0003-bounded-logo-slot.html +423 -0
  113. package/dist/docs/decisions/DDR-0004-slides-rendering-model.html +399 -0
  114. package/dist/docs/decisions/DDR-0005-deterministic-layout-boundary.html +422 -0
  115. package/dist/docs/decisions/index.html +11 -0
  116. package/dist/docs/userguide/cli/build.html +408 -0
  117. package/dist/docs/userguide/cli/bundle.html +419 -0
  118. package/dist/docs/userguide/cli/dev.html +428 -0
  119. package/dist/docs/userguide/cli/index.html +11 -0
  120. package/dist/docs/userguide/cli/init.html +436 -0
  121. package/dist/docs/userguide/cli/servers.html +393 -0
  122. package/dist/docs/userguide/cli/stop.html +408 -0
  123. package/dist/docs/userguide/cli/update.html +406 -0
  124. package/dist/docs/userguide/cli/version.html +406 -0
  125. package/dist/docs/userguide/cli.html +386 -0
  126. package/dist/docs/userguide/index.html +11 -0
  127. package/dist/docs/userguide/sharing.html +465 -0
  128. package/dist/index.html +387 -0
  129. package/dist/llms.txt +18 -0
  130. package/dist/provenance.json +7 -0
  131. package/dist/schemas/index.html +11 -0
  132. package/dist/schemas/plugin-registry.schema.html +327 -0
  133. package/dist/schemas/plugin-schemas-notes.html +364 -0
  134. package/dist/schemas/plugin.schema.html +327 -0
  135. package/dist/schemas/plugins.schema.html +327 -0
  136. package/dist/schemas/v0/common.schema.html +386 -0
  137. package/dist/schemas/v0/index.html +11 -0
  138. package/dist/schemas/v0/plugin-registry.schema.html +547 -0
  139. package/dist/schemas/v0/plugin.schema.html +497 -0
  140. package/dist/schemas/v0/plugins.schema.html +406 -0
  141. package/dist/schemas/v0/site.schema.html +541 -0
  142. package/dist/schemas/v0/theme.schema.html +615 -0
  143. package/dist/schemas.html +351 -0
  144. package/dist/styles.css +1262 -0
  145. package/package.json +4 -2
  146. package/plugins-dist/callouts.css +32 -0
  147. package/plugins-dist/callouts.js +46 -0
  148. package/plugins-dist/slides-visuals.css +390 -0
  149. package/plugins-dist/slides-visuals.js +689 -0
  150. package/registry/plugins.yaml +35 -0
  151. package/schemas/README.md +10 -0
  152. package/schemas/plugin-registry.schema.json +5 -0
  153. package/schemas/plugin-schemas-notes.md +71 -0
  154. package/schemas/plugin.schema.json +5 -0
  155. package/schemas/plugins.schema.json +5 -0
  156. package/schemas/v0/common.schema.json +64 -0
  157. package/schemas/v0/plugin-registry.schema.json +225 -0
  158. package/schemas/v0/plugin.schema.json +175 -0
  159. package/schemas/v0/plugins.schema.json +84 -0
  160. package/schemas/v0/site.schema.json +56 -9
  161. package/schemas/v0/theme.schema.json +105 -22
  162. package/scripts/build.ts +158 -3
  163. package/scripts/bundle.ts +261 -95
  164. package/scripts/dev.ts +301 -11
  165. package/src/__tests__/build.test.ts +220 -1
  166. package/src/__tests__/bundle.test.ts +31 -0
  167. package/src/__tests__/cli.test.ts +14 -3
  168. package/src/__tests__/dev-plugin-errors.test.ts +20 -0
  169. package/src/__tests__/fixtures/fences/slides-visuals/invalid/bad-list-indent.md +5 -0
  170. package/src/__tests__/fixtures/fences/slides-visuals/invalid/blank-line.md +5 -0
  171. package/src/__tests__/fixtures/fences/slides-visuals/invalid/compare-object-items.md +9 -0
  172. package/src/__tests__/fixtures/fences/slides-visuals/invalid/flow-branching-no-source.md +5 -0
  173. package/src/__tests__/fixtures/fences/slides-visuals/invalid/flow-converging-no-target.md +6 -0
  174. package/src/__tests__/fixtures/fences/slides-visuals/invalid/indented-fence.md +4 -0
  175. package/src/__tests__/fixtures/fences/slides-visuals/invalid/staircase-empty-steps.md +3 -0
  176. package/src/__tests__/fixtures/fences/slides-visuals/invalid/stat-grid-missing-fields.md +5 -0
  177. package/src/__tests__/fixtures/fences/slides-visuals/invalid/timeline-horizontal-no-events.md +2 -0
  178. package/src/__tests__/fixtures/fences/slides-visuals/invalid/unknown-type.md +3 -0
  179. package/src/__tests__/fixtures/fences/slides-visuals/valid/compare.md +10 -0
  180. package/src/__tests__/fixtures/fences/slides-visuals/valid/comparison-table.md +14 -0
  181. package/src/__tests__/fixtures/fences/slides-visuals/valid/flow-branching-no-split.md +7 -0
  182. package/src/__tests__/fixtures/fences/slides-visuals/valid/flow-branching.md +8 -0
  183. package/src/__tests__/fixtures/fences/slides-visuals/valid/flow-converging-no-merge.md +7 -0
  184. package/src/__tests__/fixtures/fences/slides-visuals/valid/flow-converging.md +8 -0
  185. package/src/__tests__/fixtures/fences/slides-visuals/valid/funnel.md +7 -0
  186. package/src/__tests__/fixtures/fences/slides-visuals/valid/kpi.md +5 -0
  187. package/src/__tests__/fixtures/fences/slides-visuals/valid/layer-cake.md +6 -0
  188. package/src/__tests__/fixtures/fences/slides-visuals/valid/pyramid.md +6 -0
  189. package/src/__tests__/fixtures/fences/slides-visuals/valid/quadrant-grid.md +8 -0
  190. package/src/__tests__/fixtures/fences/slides-visuals/valid/scorecard.md +13 -0
  191. package/src/__tests__/fixtures/fences/slides-visuals/valid/staircase-down.md +7 -0
  192. package/src/__tests__/fixtures/fences/slides-visuals/valid/staircase.md +8 -0
  193. package/src/__tests__/fixtures/fences/slides-visuals/valid/stat-grid.md +8 -0
  194. package/src/__tests__/fixtures/fences/slides-visuals/valid/timeline-horizontal.md +9 -0
  195. package/src/__tests__/fixtures/fences/slides-visuals/valid/timeline-vertical.md +10 -0
  196. package/src/__tests__/init.test.ts +35 -0
  197. package/src/__tests__/plugin-loader.test.ts +221 -0
  198. package/src/__tests__/shared.test.ts +451 -0
  199. package/src/__tests__/slides-visuals-fence-contract.test.ts +28 -0
  200. package/src/__tests__/slides-visuals-runtime-regressions.bun.test.ts +147 -0
  201. package/src/__tests__/styles.test.ts +35 -0
  202. package/src/cli.ts +9 -4
  203. package/src/plugin-loader.ts +245 -0
  204. package/src/shared.ts +650 -7
  205. package/src/site/styles.css +331 -0
  206. package/src/site/template.html +66 -5
  207. package/src/templates/deck.ts +186 -0
  208. package/src/templates/driver.ts +11 -1
  209. package/src/templates/minimal.ts +1 -0
@@ -0,0 +1,549 @@
1
+ {
2
+ "version": "0.2.1",
3
+ "generated": "2026-02-15T21:34:09.297Z",
4
+ "title": "Kitfly Docs",
5
+ "baseUrl": "/",
6
+ "rawMarkdownPath": "/_raw",
7
+ "pages": [
8
+ {
9
+ "path": "/content/guide/approaches",
10
+ "htmlPath": "/content/guide/approaches.html",
11
+ "rawPath": "/_raw/content/guide/approaches.md",
12
+ "title": "Approaches",
13
+ "section": "Guide",
14
+ "source": "content/guide/approaches.md",
15
+ "description": "Three ways to use kitfly"
16
+ },
17
+ {
18
+ "path": "/content/guide/features",
19
+ "htmlPath": "/content/guide/features.html",
20
+ "rawPath": "/_raw/content/guide/features.md",
21
+ "title": "Features",
22
+ "section": "Guide",
23
+ "source": "content/guide/features.md",
24
+ "description": "What kitfly can do"
25
+ },
26
+ {
27
+ "path": "/content/guide/getting-started",
28
+ "htmlPath": "/content/guide/getting-started.html",
29
+ "rawPath": "/_raw/content/guide/getting-started.md",
30
+ "title": "Getting Started",
31
+ "section": "Guide",
32
+ "source": "content/guide/getting-started.md",
33
+ "description": "Set up your first kitfly site"
34
+ },
35
+ {
36
+ "path": "/content/guide/kitfly-overview",
37
+ "htmlPath": "/content/guide/kitfly-overview.html",
38
+ "rawPath": "/_raw/content/guide/kitfly-overview.md",
39
+ "title": "Kitfly Overview",
40
+ "section": "Guide",
41
+ "source": "content/guide/kitfly-overview.md",
42
+ "description": "What Kitfly is, how it works, and the philosophy behind it"
43
+ },
44
+ {
45
+ "path": "/content/templates/crucible",
46
+ "htmlPath": "/content/templates/crucible.html",
47
+ "rawPath": "/_raw/content/templates/crucible.md",
48
+ "title": "Crucible Template",
49
+ "section": "Templates",
50
+ "source": "content/templates/crucible.md",
51
+ "description": "Information architecture SSOT with specs, schemas, config, and governance"
52
+ },
53
+ {
54
+ "path": "/content/templates/handbook",
55
+ "htmlPath": "/content/templates/handbook.html",
56
+ "rawPath": "/_raw/content/templates/handbook.md",
57
+ "title": "Handbook Template",
58
+ "section": "Templates",
59
+ "source": "content/templates/handbook.md",
60
+ "description": "Team documentation with overview, guides, and reference sections"
61
+ },
62
+ {
63
+ "path": "/content/templates/minimal",
64
+ "htmlPath": "/content/templates/minimal.html",
65
+ "rawPath": "/_raw/content/templates/minimal.md",
66
+ "title": "Minimal Template",
67
+ "section": "Templates",
68
+ "source": "content/templates/minimal.md",
69
+ "description": "The base template that all others extend"
70
+ },
71
+ {
72
+ "path": "/content/templates/overview",
73
+ "htmlPath": "/content/templates/overview.html",
74
+ "rawPath": "/_raw/content/templates/overview.md",
75
+ "title": "Templates Overview",
76
+ "section": "Templates",
77
+ "source": "content/templates/overview.md",
78
+ "description": "How kitfly templates work and the layering model"
79
+ },
80
+ {
81
+ "path": "/content/templates/pipeline",
82
+ "htmlPath": "/content/templates/pipeline.html",
83
+ "rawPath": "/_raw/content/templates/pipeline.md",
84
+ "title": "Pipeline Template",
85
+ "section": "Templates",
86
+ "source": "content/templates/pipeline.md",
87
+ "description": "Data pipeline operations with stages, sources, destinations, and manifests"
88
+ },
89
+ {
90
+ "path": "/content/templates/productbook",
91
+ "htmlPath": "/content/templates/productbook.html",
92
+ "rawPath": "/_raw/content/templates/productbook.md",
93
+ "title": "Productbook Template",
94
+ "section": "Templates",
95
+ "source": "content/templates/productbook.md",
96
+ "description": "Product and domain documentation for complex greenfield engagements"
97
+ },
98
+ {
99
+ "path": "/content/templates/runbook",
100
+ "htmlPath": "/content/templates/runbook.html",
101
+ "rawPath": "/_raw/content/templates/runbook.md",
102
+ "title": "Runbook Template",
103
+ "section": "Templates",
104
+ "source": "content/templates/runbook.md",
105
+ "description": "Operational procedures, troubleshooting, and incident response"
106
+ },
107
+ {
108
+ "path": "/content/templates/servicebook",
109
+ "htmlPath": "/content/templates/servicebook.html",
110
+ "rawPath": "/_raw/content/templates/servicebook.md",
111
+ "title": "Servicebook Template",
112
+ "section": "Templates",
113
+ "source": "content/templates/servicebook.md",
114
+ "description": "Professional services catalog with offerings, methodology, and delivery documentation"
115
+ },
116
+ {
117
+ "path": "/content/reference/configuration",
118
+ "htmlPath": "/content/reference/configuration.html",
119
+ "rawPath": "/_raw/content/reference/configuration.md",
120
+ "title": "Configuration",
121
+ "section": "Reference",
122
+ "source": "content/reference/configuration.md",
123
+ "description": "Customize your kitfly site"
124
+ },
125
+ {
126
+ "path": "/content/reference/design-catalog",
127
+ "htmlPath": "/content/reference/design-catalog.html",
128
+ "rawPath": "/_raw/content/reference/design-catalog.md",
129
+ "title": "Design Catalog (Shapes and Figures)",
130
+ "section": "Reference",
131
+ "source": "content/reference/design-catalog.md",
132
+ "description": "Deterministic layout building blocks for slides (and when to use diagram engines instead)"
133
+ },
134
+ {
135
+ "path": "/content/reference/environment-variables",
136
+ "htmlPath": "/content/reference/environment-variables.html",
137
+ "rawPath": "/_raw/content/reference/environment-variables.md",
138
+ "title": "Environment Variables",
139
+ "section": "Reference",
140
+ "source": "content/reference/environment-variables.md",
141
+ "description": "A beginner-friendly primer (with copy-paste examples)"
142
+ },
143
+ {
144
+ "path": "/content/reference/glossary",
145
+ "htmlPath": "/content/reference/glossary.html",
146
+ "rawPath": "/_raw/content/reference/glossary.md",
147
+ "title": "Glossary",
148
+ "section": "Reference",
149
+ "source": "content/reference/glossary.md",
150
+ "description": "Quick definitions for common Kitfly terms"
151
+ },
152
+ {
153
+ "path": "/content/reference",
154
+ "htmlPath": "/content/reference.html",
155
+ "rawPath": "/_raw/content/reference.md",
156
+ "title": "Reference",
157
+ "section": "Reference",
158
+ "source": "content/reference/index.md",
159
+ "description": "Key concepts and lookup docs for Kitfly"
160
+ },
161
+ {
162
+ "path": "/content/reference/key-concepts",
163
+ "htmlPath": "/content/reference/key-concepts.html",
164
+ "rawPath": "/_raw/content/reference/key-concepts.md",
165
+ "title": "Key Concepts",
166
+ "section": "Reference",
167
+ "source": "content/reference/key-concepts.md",
168
+ "description": "Mental models for how Kitfly works"
169
+ },
170
+ {
171
+ "path": "/content/reference/plugins",
172
+ "htmlPath": "/content/reference/plugins.html",
173
+ "rawPath": "/_raw/content/reference/plugins.md",
174
+ "title": "Plugins",
175
+ "section": "Reference",
176
+ "source": "content/reference/plugins.md",
177
+ "description": "Enable small add-ons (CSS/JS) for docs and slides"
178
+ },
179
+ {
180
+ "path": "/content/reference/slides-authoring-guidelines",
181
+ "htmlPath": "/content/reference/slides-authoring-guidelines.html",
182
+ "rawPath": "/_raw/content/reference/slides-authoring-guidelines.md",
183
+ "title": "Slides Authoring Guidelines",
184
+ "section": "Reference",
185
+ "source": "content/reference/slides-authoring-guidelines.md",
186
+ "description": "Practical density and layout rules for reliable Kitfly slides"
187
+ },
188
+ {
189
+ "path": "/content/reference/structure",
190
+ "htmlPath": "/content/reference/structure.html",
191
+ "rawPath": "/_raw/content/reference/structure.md",
192
+ "title": "Folder Structure",
193
+ "section": "Reference",
194
+ "source": "content/reference/structure.md",
195
+ "description": "What lives where in a kitfly project"
196
+ },
197
+ {
198
+ "path": "/content/deployment",
199
+ "htmlPath": "/content/deployment.html",
200
+ "rawPath": "/_raw/content/deployment.md",
201
+ "title": "Deployment",
202
+ "section": "Deployment",
203
+ "source": "content/deployment/index.md",
204
+ "description": "Publish a Kitfly site safely (with beginner-friendly guardrails)"
205
+ },
206
+ {
207
+ "path": "/content/deployment/preflight",
208
+ "htmlPath": "/content/deployment/preflight.html",
209
+ "rawPath": "/_raw/content/deployment/preflight.md",
210
+ "title": "Preflight and Rollback",
211
+ "section": "Deployment",
212
+ "source": "content/deployment/preflight.md",
213
+ "description": "A beginner-safe checklist before you publish"
214
+ },
215
+ {
216
+ "path": "/content/deployment/recipes/aws-s3",
217
+ "htmlPath": "/content/deployment/recipes/aws-s3.html",
218
+ "rawPath": "/_raw/content/deployment/recipes/aws-s3.md",
219
+ "title": "Recipe: AWS S3",
220
+ "section": "Deployment",
221
+ "source": "content/deployment/recipes/aws-s3.md",
222
+ "description": "Static hosting on S3 (sync `dist/`)"
223
+ },
224
+ {
225
+ "path": "/content/deployment/recipes/cloudflare-pages",
226
+ "htmlPath": "/content/deployment/recipes/cloudflare-pages.html",
227
+ "rawPath": "/_raw/content/deployment/recipes/cloudflare-pages.md",
228
+ "title": "Recipe: Cloudflare Pages",
229
+ "section": "Deployment",
230
+ "source": "content/deployment/recipes/cloudflare-pages.md",
231
+ "description": "Beginner-friendly Cloudflare hosting for static `dist/` output"
232
+ },
233
+ {
234
+ "path": "/content/deployment/recipes/cloudflare-r2",
235
+ "htmlPath": "/content/deployment/recipes/cloudflare-r2.html",
236
+ "rawPath": "/_raw/content/deployment/recipes/cloudflare-r2.md",
237
+ "title": "Recipe: Cloudflare R2",
238
+ "section": "Deployment",
239
+ "source": "content/deployment/recipes/cloudflare-r2.md",
240
+ "description": "Advanced: publish `dist/` using Cloudflare storage and edge routing"
241
+ },
242
+ {
243
+ "path": "/content/deployment/recipes/fly-io",
244
+ "htmlPath": "/content/deployment/recipes/fly-io.html",
245
+ "rawPath": "/_raw/content/deployment/recipes/fly-io.md",
246
+ "title": "Recipe: Fly.io",
247
+ "section": "Deployment",
248
+ "source": "content/deployment/recipes/fly-io.md",
249
+ "description": "Host your built site as a tiny app (Docker-based)"
250
+ },
251
+ {
252
+ "path": "/content/deployment/recipes/github-pages",
253
+ "htmlPath": "/content/deployment/recipes/github-pages.html",
254
+ "rawPath": "/_raw/content/deployment/recipes/github-pages.md",
255
+ "title": "Recipe: GitHub Pages",
256
+ "section": "Deployment",
257
+ "source": "content/deployment/recipes/github-pages.md",
258
+ "description": "Publish `dist/` on GitHub Pages"
259
+ },
260
+ {
261
+ "path": "/content/deployment/recipes/netlify",
262
+ "htmlPath": "/content/deployment/recipes/netlify.html",
263
+ "rawPath": "/_raw/content/deployment/recipes/netlify.md",
264
+ "title": "Recipe: Netlify",
265
+ "section": "Deployment",
266
+ "source": "content/deployment/recipes/netlify.md",
267
+ "description": "Beginner-friendly: upload `dist/` and go"
268
+ },
269
+ {
270
+ "path": "/content/deployment/recipes/vercel",
271
+ "htmlPath": "/content/deployment/recipes/vercel.html",
272
+ "rawPath": "/_raw/content/deployment/recipes/vercel.md",
273
+ "title": "Recipe: Vercel",
274
+ "section": "Deployment",
275
+ "source": "content/deployment/recipes/vercel.md",
276
+ "description": "Deploy `dist/` to Vercel with CDN and custom domains"
277
+ },
278
+ {
279
+ "path": "/content/deployment/secrets-and-env-vars",
280
+ "htmlPath": "/content/deployment/secrets-and-env-vars.html",
281
+ "rawPath": "/_raw/content/deployment/secrets-and-env-vars.md",
282
+ "title": "Secrets and Environment Variables",
283
+ "section": "Deployment",
284
+ "source": "content/deployment/secrets-and-env-vars.md",
285
+ "description": "How to deploy without leaking credentials"
286
+ },
287
+ {
288
+ "path": "/docs/userguide/cli/build",
289
+ "htmlPath": "/docs/userguide/cli/build.html",
290
+ "rawPath": "/_raw/docs/userguide/cli/build.md",
291
+ "title": "build",
292
+ "section": "User Guide",
293
+ "source": "docs/userguide/cli/build.md"
294
+ },
295
+ {
296
+ "path": "/docs/userguide/cli/bundle",
297
+ "htmlPath": "/docs/userguide/cli/bundle.html",
298
+ "rawPath": "/_raw/docs/userguide/cli/bundle.md",
299
+ "title": "bundle",
300
+ "section": "User Guide",
301
+ "source": "docs/userguide/cli/bundle.md"
302
+ },
303
+ {
304
+ "path": "/docs/userguide/cli/dev",
305
+ "htmlPath": "/docs/userguide/cli/dev.html",
306
+ "rawPath": "/_raw/docs/userguide/cli/dev.md",
307
+ "title": "dev",
308
+ "section": "User Guide",
309
+ "source": "docs/userguide/cli/dev.md"
310
+ },
311
+ {
312
+ "path": "/docs/userguide/cli/init",
313
+ "htmlPath": "/docs/userguide/cli/init.html",
314
+ "rawPath": "/_raw/docs/userguide/cli/init.md",
315
+ "title": "init",
316
+ "section": "User Guide",
317
+ "source": "docs/userguide/cli/init.md"
318
+ },
319
+ {
320
+ "path": "/docs/userguide/cli",
321
+ "htmlPath": "/docs/userguide/cli.html",
322
+ "rawPath": "/_raw/docs/userguide/cli.md",
323
+ "title": "README",
324
+ "section": "User Guide",
325
+ "source": "docs/userguide/cli/README.md"
326
+ },
327
+ {
328
+ "path": "/docs/userguide/cli/servers",
329
+ "htmlPath": "/docs/userguide/cli/servers.html",
330
+ "rawPath": "/_raw/docs/userguide/cli/servers.md",
331
+ "title": "servers",
332
+ "section": "User Guide",
333
+ "source": "docs/userguide/cli/servers.md"
334
+ },
335
+ {
336
+ "path": "/docs/userguide/cli/stop",
337
+ "htmlPath": "/docs/userguide/cli/stop.html",
338
+ "rawPath": "/_raw/docs/userguide/cli/stop.md",
339
+ "title": "stop",
340
+ "section": "User Guide",
341
+ "source": "docs/userguide/cli/stop.md"
342
+ },
343
+ {
344
+ "path": "/docs/userguide/cli/update",
345
+ "htmlPath": "/docs/userguide/cli/update.html",
346
+ "rawPath": "/_raw/docs/userguide/cli/update.md",
347
+ "title": "update",
348
+ "section": "User Guide",
349
+ "source": "docs/userguide/cli/update.md"
350
+ },
351
+ {
352
+ "path": "/docs/userguide/cli/version",
353
+ "htmlPath": "/docs/userguide/cli/version.html",
354
+ "rawPath": "/_raw/docs/userguide/cli/version.md",
355
+ "title": "version",
356
+ "section": "User Guide",
357
+ "source": "docs/userguide/cli/version.md"
358
+ },
359
+ {
360
+ "path": "/docs/userguide/sharing",
361
+ "htmlPath": "/docs/userguide/sharing.html",
362
+ "rawPath": "/_raw/docs/userguide/sharing.md",
363
+ "title": "Sharing Your Docs",
364
+ "section": "User Guide",
365
+ "source": "docs/userguide/sharing.md",
366
+ "description": "How to send, host, and deploy kitfly output"
367
+ },
368
+ {
369
+ "path": "/docs/decisions/ADR-0001-minimalist-site-code",
370
+ "htmlPath": "/docs/decisions/ADR-0001-minimalist-site-code.html",
371
+ "rawPath": "/_raw/docs/decisions/ADR-0001-minimalist-site-code.md",
372
+ "title": "ADR-0001: Minimalist Site Code",
373
+ "section": "Decisions",
374
+ "source": "docs/decisions/ADR-0001-minimalist-site-code.md",
375
+ "description": "Defines thresholds for the site code that kitfly copies to user projects"
376
+ },
377
+ {
378
+ "path": "/docs/decisions/ADR-0002-ai-accessibility",
379
+ "htmlPath": "/docs/decisions/ADR-0002-ai-accessibility.html",
380
+ "rawPath": "/_raw/docs/decisions/ADR-0002-ai-accessibility.md",
381
+ "title": "ADR-0002: AI Accessibility for Published Sites",
382
+ "section": "Decisions",
383
+ "source": "docs/decisions/ADR-0002-ai-accessibility.md",
384
+ "description": "Standard for making kitfly sites consumable by AI agents"
385
+ },
386
+ {
387
+ "path": "/docs/decisions/ADR-0003-single-file-bundle",
388
+ "htmlPath": "/docs/decisions/ADR-0003-single-file-bundle.html",
389
+ "rawPath": "/_raw/docs/decisions/ADR-0003-single-file-bundle.md",
390
+ "title": "ADR-0003: Single-File Bundle Output",
391
+ "section": "Decisions",
392
+ "source": "docs/decisions/ADR-0003-single-file-bundle.md",
393
+ "description": "Kitfly produces a self-contained HTML file as an alternative to static site build"
394
+ },
395
+ {
396
+ "path": "/docs/decisions/ADR-0004-bun-runtime",
397
+ "htmlPath": "/docs/decisions/ADR-0004-bun-runtime.html",
398
+ "rawPath": "/_raw/docs/decisions/ADR-0004-bun-runtime.md",
399
+ "title": "ADR-0004: Bun Runtime",
400
+ "section": "Decisions",
401
+ "source": "docs/decisions/ADR-0004-bun-runtime.md",
402
+ "description": "Kitfly uses Bun as its runtime instead of Node.js"
403
+ },
404
+ {
405
+ "path": "/docs/decisions/ADR-0005-plugin-contract-and-distribution",
406
+ "htmlPath": "/docs/decisions/ADR-0005-plugin-contract-and-distribution.html",
407
+ "rawPath": "/_raw/docs/decisions/ADR-0005-plugin-contract-and-distribution.md",
408
+ "title": "ADR-0005: Plugin Contract and Distribution Strategy",
409
+ "section": "Decisions",
410
+ "source": "docs/decisions/ADR-0005-plugin-contract-and-distribution.md",
411
+ "description": "Defines plugin contract stability, versioning policy, and in-repo-first distribution with extraction path"
412
+ },
413
+ {
414
+ "path": "/docs/decisions/DDR-0001-viewport-locked-layout",
415
+ "htmlPath": "/docs/decisions/DDR-0001-viewport-locked-layout.html",
416
+ "rawPath": "/_raw/docs/decisions/DDR-0001-viewport-locked-layout.md",
417
+ "title": "DDR-0001: Viewport-Locked Layout with Fixed Footer Ribbon",
418
+ "section": "Decisions",
419
+ "source": "docs/decisions/DDR-0001-viewport-locked-layout.md",
420
+ "description": "Defines the kitfly page layout model: fixed chrome (header/footer) with scrollable middle band"
421
+ },
422
+ {
423
+ "path": "/docs/decisions/DDR-0002-theme-system",
424
+ "htmlPath": "/docs/decisions/DDR-0002-theme-system.html",
425
+ "rawPath": "/_raw/docs/decisions/DDR-0002-theme-system.md",
426
+ "title": "DDR-0002: Two-Layer Theme System",
427
+ "section": "Decisions",
428
+ "source": "docs/decisions/DDR-0002-theme-system.md",
429
+ "description": "Defines the kitfly theming model: theme.yaml semantic tokens → generated CSS variables → styles.css fallbacks"
430
+ },
431
+ {
432
+ "path": "/docs/decisions/DDR-0003-bounded-logo-slot",
433
+ "htmlPath": "/docs/decisions/DDR-0003-bounded-logo-slot.html",
434
+ "rawPath": "/_raw/docs/decisions/DDR-0003-bounded-logo-slot.md",
435
+ "title": "DDR-0003: Bounded Logo Slot",
436
+ "section": "Decisions",
437
+ "source": "docs/decisions/DDR-0003-bounded-logo-slot.md",
438
+ "description": "Logo rendering uses a bounded bounding-box model supporting both square icons and wide wordmarks"
439
+ },
440
+ {
441
+ "path": "/docs/decisions/DDR-0004-slides-rendering-model",
442
+ "htmlPath": "/docs/decisions/DDR-0004-slides-rendering-model.html",
443
+ "rawPath": "/_raw/docs/decisions/DDR-0004-slides-rendering-model.md",
444
+ "title": "DDR-0004: Slides Rendering Model",
445
+ "section": "Decisions",
446
+ "source": "docs/decisions/DDR-0004-slides-rendering-model.md",
447
+ "description": "Defines slides mode rendering, segmentation, and navigation behavior across dev/build/bundle"
448
+ },
449
+ {
450
+ "path": "/docs/decisions/DDR-0005-deterministic-layout-boundary",
451
+ "htmlPath": "/docs/decisions/DDR-0005-deterministic-layout-boundary.html",
452
+ "rawPath": "/_raw/docs/decisions/DDR-0005-deterministic-layout-boundary.md",
453
+ "title": "DDR-0005: Deterministic Layout Boundary",
454
+ "section": "Decisions",
455
+ "source": "docs/decisions/DDR-0005-deterministic-layout-boundary.md",
456
+ "description": "Defines the boundary between CSS layout primitives/figures and diagramming engines for slide visual composition"
457
+ },
458
+ {
459
+ "path": "/schemas/plugin-registry.schema",
460
+ "htmlPath": "/schemas/plugin-registry.schema.html",
461
+ "rawPath": "/_raw/schemas/plugin-registry.schema.md",
462
+ "title": "plugin-registry.schema",
463
+ "section": "Schemas",
464
+ "source": "schemas/plugin-registry.schema.json"
465
+ },
466
+ {
467
+ "path": "/schemas/plugin-schemas-notes",
468
+ "htmlPath": "/schemas/plugin-schemas-notes.html",
469
+ "rawPath": "/_raw/schemas/plugin-schemas-notes.md",
470
+ "title": "Plugin Schema Notes",
471
+ "section": "Schemas",
472
+ "source": "schemas/plugin-schemas-notes.md",
473
+ "description": "Rationale and validation rules for plugin.yaml and registry/plugins.yaml schemas"
474
+ },
475
+ {
476
+ "path": "/schemas/plugin.schema",
477
+ "htmlPath": "/schemas/plugin.schema.html",
478
+ "rawPath": "/_raw/schemas/plugin.schema.md",
479
+ "title": "plugin.schema",
480
+ "section": "Schemas",
481
+ "source": "schemas/plugin.schema.json"
482
+ },
483
+ {
484
+ "path": "/schemas/plugins.schema",
485
+ "htmlPath": "/schemas/plugins.schema.html",
486
+ "rawPath": "/_raw/schemas/plugins.schema.md",
487
+ "title": "plugins.schema",
488
+ "section": "Schemas",
489
+ "source": "schemas/plugins.schema.json"
490
+ },
491
+ {
492
+ "path": "/schemas",
493
+ "htmlPath": "/schemas.html",
494
+ "rawPath": "/_raw/schemas.md",
495
+ "title": "Kitfly Schemas",
496
+ "section": "Schemas",
497
+ "source": "schemas/README.md",
498
+ "description": "Schema versioning policy for site.yaml and theme.yaml"
499
+ },
500
+ {
501
+ "path": "/schemas/v0/common.schema",
502
+ "htmlPath": "/schemas/v0/common.schema.html",
503
+ "rawPath": "/_raw/schemas/v0/common.schema.md",
504
+ "title": "common.schema",
505
+ "section": "Schemas",
506
+ "source": "schemas/v0/common.schema.json"
507
+ },
508
+ {
509
+ "path": "/schemas/v0/plugin-registry.schema",
510
+ "htmlPath": "/schemas/v0/plugin-registry.schema.html",
511
+ "rawPath": "/_raw/schemas/v0/plugin-registry.schema.md",
512
+ "title": "plugin-registry.schema",
513
+ "section": "Schemas",
514
+ "source": "schemas/v0/plugin-registry.schema.json"
515
+ },
516
+ {
517
+ "path": "/schemas/v0/plugin.schema",
518
+ "htmlPath": "/schemas/v0/plugin.schema.html",
519
+ "rawPath": "/_raw/schemas/v0/plugin.schema.md",
520
+ "title": "plugin.schema",
521
+ "section": "Schemas",
522
+ "source": "schemas/v0/plugin.schema.json"
523
+ },
524
+ {
525
+ "path": "/schemas/v0/plugins.schema",
526
+ "htmlPath": "/schemas/v0/plugins.schema.html",
527
+ "rawPath": "/_raw/schemas/v0/plugins.schema.md",
528
+ "title": "plugins.schema",
529
+ "section": "Schemas",
530
+ "source": "schemas/v0/plugins.schema.json"
531
+ },
532
+ {
533
+ "path": "/schemas/v0/site.schema",
534
+ "htmlPath": "/schemas/v0/site.schema.html",
535
+ "rawPath": "/_raw/schemas/v0/site.schema.md",
536
+ "title": "site.schema",
537
+ "section": "Schemas",
538
+ "source": "schemas/v0/site.schema.json"
539
+ },
540
+ {
541
+ "path": "/schemas/v0/theme.schema",
542
+ "htmlPath": "/schemas/v0/theme.schema.html",
543
+ "rawPath": "/_raw/schemas/v0/theme.schema.md",
544
+ "title": "theme.schema",
545
+ "section": "Schemas",
546
+ "source": "schemas/v0/theme.schema.json"
547
+ }
548
+ ]
549
+ }