jekyll-theme-zer0 0.15.2 → 0.17.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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +138 -10
- data/README.md +7 -7
- data/_data/authors.yml +2 -2
- data/_data/features.yml +676 -0
- data/_data/navigation/README.md +54 -0
- data/_data/navigation/about.yml +7 -5
- data/_data/navigation/docs.yml +77 -31
- data/_data/navigation/home.yml +4 -3
- data/_data/navigation/main.yml +16 -7
- data/_data/navigation/quickstart.yml +4 -2
- data/_includes/components/js-cdn.html +2 -2
- data/_includes/components/preview-image.html +20 -3
- data/_includes/content/intro.html +11 -2
- data/_includes/content/seo.html +12 -1
- data/_includes/landing/landing-install-cards.html +8 -8
- data/_includes/landing/landing-quick-links.html +4 -4
- data/_includes/navigation/breadcrumbs.html +29 -6
- data/_includes/navigation/nav-tree.html +181 -0
- data/_includes/navigation/navbar.html +262 -9
- data/_includes/navigation/sidebar-left.html +22 -23
- data/_layouts/default.html +1 -1
- data/_layouts/landing.html +1 -1
- data/_layouts/notebook.html +4 -4
- data/_layouts/root.html +2 -2
- data/_plugins/preview_image_generator.rb +29 -8
- data/_sass/core/_nav-tree.scss +145 -0
- data/_sass/custom.scss +3 -0
- data/assets/images/previews/site-personalization-configuration.png +0 -0
- data/assets/js/modules/navigation/config.js +149 -0
- data/assets/js/modules/navigation/focus.js +189 -0
- data/assets/js/modules/navigation/gestures.js +179 -0
- data/assets/js/modules/navigation/index.js +227 -0
- data/assets/js/modules/navigation/keyboard.js +237 -0
- data/assets/js/modules/navigation/scroll-spy.js +219 -0
- data/assets/js/modules/navigation/sidebar-state.js +267 -0
- data/assets/js/modules/navigation/smooth-scroll.js +153 -0
- data/scripts/README.md +8 -1
- data/scripts/lib/preview_generator.py +164 -8
- data/scripts/migrate-nav-modes.sh +146 -0
- data/scripts/update-preview-paths.sh +145 -0
- metadata +17 -3
- data/assets/js/sidebar.js +0 -511
data/_data/features.yml
ADDED
|
@@ -0,0 +1,676 @@
|
|
|
1
|
+
# zer0-mistakes Theme Features Registry
|
|
2
|
+
# Comprehensive feature tracking for the zer0-mistakes Jekyll theme
|
|
3
|
+
# Version: 0.15.1
|
|
4
|
+
# Last Updated: 2025-12-16
|
|
5
|
+
|
|
6
|
+
features:
|
|
7
|
+
# ============================================================================
|
|
8
|
+
# CORE INFRASTRUCTURE
|
|
9
|
+
# ============================================================================
|
|
10
|
+
|
|
11
|
+
- id: ZER0-001
|
|
12
|
+
title: "Bootstrap 5.3.3 Theme Integration"
|
|
13
|
+
description: "Professional Jekyll theme with Bootstrap 5.3.3 CDN integration, responsive design, and custom styling"
|
|
14
|
+
implemented: true
|
|
15
|
+
version: "0.1.0"
|
|
16
|
+
link: "/"
|
|
17
|
+
docs: "README.md"
|
|
18
|
+
tags: [jekyll, theme, bootstrap, ui, responsive]
|
|
19
|
+
date: 2025-01-27
|
|
20
|
+
references:
|
|
21
|
+
layouts: ["_layouts/root.html", "_layouts/default.html"]
|
|
22
|
+
includes: ["_includes/core/head.html"]
|
|
23
|
+
styles: ["_sass/custom.scss", "_sass/core/"]
|
|
24
|
+
config: "_config.yml"
|
|
25
|
+
components:
|
|
26
|
+
- "Bootstrap 5.3.3 CSS/JS via CDN"
|
|
27
|
+
- "Bootstrap Icons 1.10.3"
|
|
28
|
+
- "Custom SCSS theming"
|
|
29
|
+
- "Responsive grid system"
|
|
30
|
+
- "Mobile-first design"
|
|
31
|
+
|
|
32
|
+
- id: ZER0-002
|
|
33
|
+
title: "Docker-First Development Environment"
|
|
34
|
+
description: "Universal cross-platform development with Docker Compose. Supports macOS (Intel/Apple Silicon), Linux, and Windows WSL with zero local dependencies"
|
|
35
|
+
implemented: true
|
|
36
|
+
version: "0.1.0"
|
|
37
|
+
link: "/"
|
|
38
|
+
docs: "README.md"
|
|
39
|
+
tags: [docker, devops, development, cross-platform]
|
|
40
|
+
date: 2025-01-27
|
|
41
|
+
references:
|
|
42
|
+
config: ["docker-compose.yml", "docker-compose.prod.yml", "docker-compose.test.yml"]
|
|
43
|
+
dockerfile: "docker/Dockerfile"
|
|
44
|
+
scripts: ["scripts/setup.sh"]
|
|
45
|
+
features:
|
|
46
|
+
- "Platform specification: linux/amd64 for Apple Silicon compatibility"
|
|
47
|
+
- "Live reload with volume mounting"
|
|
48
|
+
- "Port 4000:4000 mapping"
|
|
49
|
+
- "Development and production configurations"
|
|
50
|
+
- "Automated dependency installation"
|
|
51
|
+
|
|
52
|
+
- id: ZER0-003
|
|
53
|
+
title: "AI-Powered Installation System"
|
|
54
|
+
description: "Self-healing installation script with 95% success rate. 1,090-line Bash script with intelligent error recovery, platform detection, and automated fixes for 27+ common scenarios"
|
|
55
|
+
implemented: true
|
|
56
|
+
version: "0.6.0"
|
|
57
|
+
link: "/"
|
|
58
|
+
docs: "README.md"
|
|
59
|
+
tags: [ai, automation, installation, error-handling, bash]
|
|
60
|
+
date: 2025-01-27
|
|
61
|
+
references:
|
|
62
|
+
script: "install.sh"
|
|
63
|
+
init: "init_setup.sh"
|
|
64
|
+
features:
|
|
65
|
+
- "One-line installation command"
|
|
66
|
+
- "Automatic platform detection"
|
|
67
|
+
- "Docker dependency validation"
|
|
68
|
+
- "Self-healing error recovery"
|
|
69
|
+
- "Comprehensive logging"
|
|
70
|
+
- "Rollback capability"
|
|
71
|
+
- "Progress indicators"
|
|
72
|
+
|
|
73
|
+
# ============================================================================
|
|
74
|
+
# AI-POWERED FEATURES
|
|
75
|
+
# ============================================================================
|
|
76
|
+
|
|
77
|
+
- id: ZER0-004
|
|
78
|
+
title: "AI Preview Image Generator"
|
|
79
|
+
description: "AI-powered automatic preview image generation for posts using OpenAI DALL-E, Stability AI, or local placeholders. Configurable via _config.yml with retro pixel art style defaults"
|
|
80
|
+
implemented: true
|
|
81
|
+
version: "0.8.0"
|
|
82
|
+
link: "/docs/features/preview-image-generator/"
|
|
83
|
+
docs: "README.md"
|
|
84
|
+
tags: [ai, images, automation, openai, content]
|
|
85
|
+
date: 2025-01-28
|
|
86
|
+
references:
|
|
87
|
+
plugin: "_plugins/preview_image_generator.rb"
|
|
88
|
+
script: "scripts/generate-preview-images.sh"
|
|
89
|
+
install: "scripts/install-preview-generator.sh"
|
|
90
|
+
config: "_config.yml"
|
|
91
|
+
include: "_includes/components/preview-image.html"
|
|
92
|
+
installation:
|
|
93
|
+
script: "scripts/install-preview-generator.sh"
|
|
94
|
+
config_section: "preview_images"
|
|
95
|
+
dependencies:
|
|
96
|
+
required: [curl, jq]
|
|
97
|
+
optional: [yq, python3]
|
|
98
|
+
providers:
|
|
99
|
+
- name: openai
|
|
100
|
+
description: "OpenAI DALL-E 3 image generation"
|
|
101
|
+
env_var: OPENAI_API_KEY
|
|
102
|
+
- name: stability
|
|
103
|
+
description: "Stability AI Stable Diffusion"
|
|
104
|
+
env_var: STABILITY_API_KEY
|
|
105
|
+
- name: local
|
|
106
|
+
description: "Local placeholder (no API needed)"
|
|
107
|
+
env_var: null
|
|
108
|
+
features:
|
|
109
|
+
- "Multiple AI provider support"
|
|
110
|
+
- "Automatic image optimization"
|
|
111
|
+
- "Retro pixel art default style"
|
|
112
|
+
- "Front matter integration"
|
|
113
|
+
- "Batch processing"
|
|
114
|
+
|
|
115
|
+
- id: ZER0-005
|
|
116
|
+
title: "GitHub Copilot Integration"
|
|
117
|
+
description: "Comprehensive AI development assistance with structured instructions, file-specific guidance, and front matter optimization for maximum AI productivity"
|
|
118
|
+
implemented: true
|
|
119
|
+
version: "0.15.0"
|
|
120
|
+
link: "/.github/copilot-instructions.md"
|
|
121
|
+
docs: ".github/copilot-instructions.md"
|
|
122
|
+
tags: [ai, copilot, development, documentation]
|
|
123
|
+
date: 2025-11-15
|
|
124
|
+
references:
|
|
125
|
+
instructions:
|
|
126
|
+
- ".github/copilot-instructions.md"
|
|
127
|
+
- ".github/instructions/layouts.instructions.md"
|
|
128
|
+
- ".github/instructions/includes.instructions.md"
|
|
129
|
+
- ".github/instructions/scripts.instructions.md"
|
|
130
|
+
- ".github/instructions/testing.instructions.md"
|
|
131
|
+
- ".github/instructions/version-control.instructions.md"
|
|
132
|
+
- ".github/instructions/documentation.instructions.md"
|
|
133
|
+
features:
|
|
134
|
+
- "File-pattern specific instructions"
|
|
135
|
+
- "Development workflow guidance"
|
|
136
|
+
- "Best practices documentation"
|
|
137
|
+
- "AI-optimized front matter"
|
|
138
|
+
- "Automated code generation helpers"
|
|
139
|
+
|
|
140
|
+
# ============================================================================
|
|
141
|
+
# ANALYTICS & PRIVACY
|
|
142
|
+
# ============================================================================
|
|
143
|
+
|
|
144
|
+
- id: ZER0-006
|
|
145
|
+
title: "PostHog Privacy-First Analytics"
|
|
146
|
+
description: "GDPR/CCPA compliant analytics with PostHog integration. Environment-aware loading with granular user consent management"
|
|
147
|
+
implemented: true
|
|
148
|
+
version: "0.6.0"
|
|
149
|
+
link: "/"
|
|
150
|
+
docs: "pages/privacy-policy.md"
|
|
151
|
+
tags: [analytics, privacy, gdpr, ccpa, posthog]
|
|
152
|
+
date: 2025-11-15
|
|
153
|
+
references:
|
|
154
|
+
include: "_includes/analytics/posthog.html"
|
|
155
|
+
config: "_config.yml"
|
|
156
|
+
privacy: "pages/privacy-policy.md"
|
|
157
|
+
features:
|
|
158
|
+
- "Production-only loading"
|
|
159
|
+
- "Custom event tracking"
|
|
160
|
+
- "Download tracking"
|
|
161
|
+
- "External link tracking"
|
|
162
|
+
- "Scroll depth measurement"
|
|
163
|
+
- "Session recording (opt-in)"
|
|
164
|
+
- "Feature flags"
|
|
165
|
+
- "A/B testing ready"
|
|
166
|
+
|
|
167
|
+
- id: ZER0-007
|
|
168
|
+
title: "Cookie Consent Management"
|
|
169
|
+
description: "GDPR/CCPA compliant cookie consent system with granular permissions, 365-day persistence, and Bootstrap modal preferences"
|
|
170
|
+
implemented: true
|
|
171
|
+
version: "0.6.0"
|
|
172
|
+
link: "/"
|
|
173
|
+
docs: "pages/privacy-policy.md"
|
|
174
|
+
tags: [privacy, gdpr, ccpa, cookies, consent]
|
|
175
|
+
date: 2025-11-15
|
|
176
|
+
references:
|
|
177
|
+
include: "_includes/components/cookie-consent.html"
|
|
178
|
+
config: "_config.yml"
|
|
179
|
+
features:
|
|
180
|
+
- "Granular consent categories"
|
|
181
|
+
- "LocalStorage persistence"
|
|
182
|
+
- "Bootstrap modal UI"
|
|
183
|
+
- "Accept/Decline/Manage options"
|
|
184
|
+
- "DNT (Do Not Track) support"
|
|
185
|
+
- "Analytics integration"
|
|
186
|
+
|
|
187
|
+
# ============================================================================
|
|
188
|
+
# NAVIGATION & USER INTERFACE
|
|
189
|
+
# ============================================================================
|
|
190
|
+
|
|
191
|
+
- id: ZER0-008
|
|
192
|
+
title: "Enhanced Sidebar Navigation System"
|
|
193
|
+
description: "Modern sidebar with Intersection Observer scroll spy, smooth scrolling, keyboard shortcuts, and swipe gestures. 70% reduction in scroll event overhead"
|
|
194
|
+
implemented: true
|
|
195
|
+
version: "0.14.0"
|
|
196
|
+
link: "/"
|
|
197
|
+
docs: "docs/SIDEBAR_IMPROVEMENTS.md"
|
|
198
|
+
tags: [navigation, ui, accessibility, performance, sidebar]
|
|
199
|
+
date: 2025-12-01
|
|
200
|
+
references:
|
|
201
|
+
javascript: "assets/js/sidebar.js"
|
|
202
|
+
layouts: ["_layouts/default.html"]
|
|
203
|
+
includes:
|
|
204
|
+
- "_includes/navigation/sidebar-left.html"
|
|
205
|
+
- "_includes/navigation/sidebar-right.html"
|
|
206
|
+
- "_includes/navigation/sidebar-categories.html"
|
|
207
|
+
- "_includes/navigation/sidebar-folders.html"
|
|
208
|
+
styles: ["_sass/core/_docs.scss", "_sass/custom.scss"]
|
|
209
|
+
docs: "docs/SIDEBAR_IMPROVEMENTS.md"
|
|
210
|
+
features:
|
|
211
|
+
- "Intersection Observer scroll spy"
|
|
212
|
+
- "Smooth scrolling with offset"
|
|
213
|
+
- "Keyboard shortcuts ([/] navigation)"
|
|
214
|
+
- "Swipe gestures for mobile"
|
|
215
|
+
- "Unified Bootstrap Icons"
|
|
216
|
+
- "Active section highlighting"
|
|
217
|
+
- "Focus management"
|
|
218
|
+
- "Responsive design"
|
|
219
|
+
|
|
220
|
+
- id: ZER0-009
|
|
221
|
+
title: "Keyboard Navigation System"
|
|
222
|
+
description: "Comprehensive keyboard shortcuts for power users. Navigate sections, toggle sidebars, and access features without mouse"
|
|
223
|
+
implemented: true
|
|
224
|
+
version: "0.14.0"
|
|
225
|
+
link: "/"
|
|
226
|
+
docs: "docs/keyboard-navigation.md"
|
|
227
|
+
tags: [accessibility, keyboard, navigation, ux]
|
|
228
|
+
date: 2025-12-01
|
|
229
|
+
references:
|
|
230
|
+
javascript: "assets/js/sidebar.js"
|
|
231
|
+
docs: "docs/keyboard-navigation.md"
|
|
232
|
+
shortcuts:
|
|
233
|
+
- key: "["
|
|
234
|
+
action: "Previous section"
|
|
235
|
+
- key: "]"
|
|
236
|
+
action: "Next section"
|
|
237
|
+
- key: "Tab"
|
|
238
|
+
action: "Skip to content"
|
|
239
|
+
- key: "Swipe"
|
|
240
|
+
action: "Toggle sidebar (mobile)"
|
|
241
|
+
|
|
242
|
+
- id: ZER0-010
|
|
243
|
+
title: "Mobile TOC Floating Action Button"
|
|
244
|
+
description: "Redesigned mobile table of contents access with FAB pattern. Bottom-right positioned 56x56px circular button with proper z-index stacking"
|
|
245
|
+
implemented: true
|
|
246
|
+
version: "0.14.0"
|
|
247
|
+
link: "/"
|
|
248
|
+
docs: "docs/SIDEBAR_IMPROVEMENTS.md"
|
|
249
|
+
tags: [mobile, navigation, ui, toc, fab]
|
|
250
|
+
date: 2025-12-01
|
|
251
|
+
references:
|
|
252
|
+
include: "_includes/navigation/sidebar-right.html"
|
|
253
|
+
styles: "_sass/custom.scss"
|
|
254
|
+
features:
|
|
255
|
+
- "FAB pattern design"
|
|
256
|
+
- "Bottom-right positioning"
|
|
257
|
+
- "56x56px circular button"
|
|
258
|
+
- "Shadow elevation"
|
|
259
|
+
- "z-index: 1030"
|
|
260
|
+
- "Bootstrap Icons"
|
|
261
|
+
|
|
262
|
+
- id: ZER0-011
|
|
263
|
+
title: "Skip-to-Content Accessibility Link"
|
|
264
|
+
description: "WCAG 2.1 Level AA compliant skip link. Visually hidden until Tab focus, direct jump to main content bypassing navigation"
|
|
265
|
+
implemented: true
|
|
266
|
+
version: "0.14.0"
|
|
267
|
+
link: "/"
|
|
268
|
+
docs: "docs/SIDEBAR_IMPROVEMENTS.md"
|
|
269
|
+
tags: [accessibility, wcag, navigation, a11y]
|
|
270
|
+
date: 2025-12-01
|
|
271
|
+
references:
|
|
272
|
+
include: "_includes/core/header.html"
|
|
273
|
+
styles: "_sass/custom.scss"
|
|
274
|
+
|
|
275
|
+
# ============================================================================
|
|
276
|
+
# CONTENT MANAGEMENT
|
|
277
|
+
# ============================================================================
|
|
278
|
+
|
|
279
|
+
- id: ZER0-012
|
|
280
|
+
title: "Jupyter Notebook Integration"
|
|
281
|
+
description: "Full Jupyter notebook support with GitHub Pages compatibility. Automated nbconvert conversion, rich content rendering, and responsive design"
|
|
282
|
+
implemented: true
|
|
283
|
+
version: "0.13.0"
|
|
284
|
+
link: "/"
|
|
285
|
+
docs: "docs/JUPYTER_NOTEBOOKS.md"
|
|
286
|
+
tags: [jupyter, notebooks, python, data-science, content]
|
|
287
|
+
date: 2025-11-29
|
|
288
|
+
references:
|
|
289
|
+
script: "scripts/convert-notebooks.sh"
|
|
290
|
+
layout: "_layouts/notebook.html"
|
|
291
|
+
styles: "_sass/notebooks.scss"
|
|
292
|
+
workflow: ".github/workflows/convert-notebooks.yml"
|
|
293
|
+
config: "_config.yml"
|
|
294
|
+
collection: "pages/_notebooks/"
|
|
295
|
+
docs: "docs/JUPYTER_NOTEBOOKS.md"
|
|
296
|
+
makefile: "Makefile"
|
|
297
|
+
features:
|
|
298
|
+
- "Automatic .ipynb to Markdown conversion"
|
|
299
|
+
- "Image extraction to assets/"
|
|
300
|
+
- "MathJax LaTeX rendering"
|
|
301
|
+
- "Code syntax highlighting"
|
|
302
|
+
- "Matplotlib/PNG output support"
|
|
303
|
+
- "Pandas DataFrame tables"
|
|
304
|
+
- "GitHub Actions automation"
|
|
305
|
+
- "Responsive mobile layout"
|
|
306
|
+
- "Makefile targets"
|
|
307
|
+
|
|
308
|
+
- id: ZER0-013
|
|
309
|
+
title: "Mermaid Diagram Support"
|
|
310
|
+
description: "Client-side Mermaid.js integration for 10+ diagram types. GitHub Pages compatible with no build plugins required"
|
|
311
|
+
implemented: true
|
|
312
|
+
version: "0.3.0"
|
|
313
|
+
link: "/"
|
|
314
|
+
docs: "README.md"
|
|
315
|
+
tags: [mermaid, diagrams, visualization, documentation]
|
|
316
|
+
date: 2025-01-27
|
|
317
|
+
references:
|
|
318
|
+
include: "_includes/components/mermaid.html"
|
|
319
|
+
config: "_config.yml"
|
|
320
|
+
diagram_types:
|
|
321
|
+
- "Flowchart (graph TD)"
|
|
322
|
+
- "Sequence Diagram"
|
|
323
|
+
- "Class Diagram"
|
|
324
|
+
- "State Diagram"
|
|
325
|
+
- "ER Diagram"
|
|
326
|
+
- "Gantt Chart"
|
|
327
|
+
- "Pie Chart"
|
|
328
|
+
- "Git Graph"
|
|
329
|
+
- "User Journey"
|
|
330
|
+
- "Requirement Diagram"
|
|
331
|
+
|
|
332
|
+
- id: ZER0-014
|
|
333
|
+
title: "Jekyll Collections System"
|
|
334
|
+
description: "Organized content collections for posts, docs, notebooks, about pages, and quickstart guides with custom permalinks and front matter defaults"
|
|
335
|
+
implemented: true
|
|
336
|
+
version: "0.1.0"
|
|
337
|
+
link: "/"
|
|
338
|
+
docs: "_config.yml"
|
|
339
|
+
tags: [jekyll, collections, content, organization]
|
|
340
|
+
date: 2025-01-27
|
|
341
|
+
references:
|
|
342
|
+
config: "_config.yml"
|
|
343
|
+
collections:
|
|
344
|
+
- "pages/_posts/"
|
|
345
|
+
- "pages/_docs/"
|
|
346
|
+
- "pages/_notebooks/"
|
|
347
|
+
- "pages/_about/"
|
|
348
|
+
- "pages/_quickstart/"
|
|
349
|
+
features:
|
|
350
|
+
- "Custom permalinks per collection"
|
|
351
|
+
- "Front matter defaults"
|
|
352
|
+
- "Collection-specific layouts"
|
|
353
|
+
- "Organized content structure"
|
|
354
|
+
|
|
355
|
+
# ============================================================================
|
|
356
|
+
# DEVELOPER EXPERIENCE
|
|
357
|
+
# ============================================================================
|
|
358
|
+
|
|
359
|
+
- id: ZER0-015
|
|
360
|
+
title: "Automated Release Management"
|
|
361
|
+
description: "Semantic versioning with automated commit analysis, changelog generation, gem publishing, and GitHub releases. Full release pipeline automation"
|
|
362
|
+
implemented: true
|
|
363
|
+
version: "0.5.0"
|
|
364
|
+
link: "/"
|
|
365
|
+
docs: ".github/instructions/version-control.instructions.md"
|
|
366
|
+
tags: [release, automation, semver, ci-cd, versioning]
|
|
367
|
+
date: 2025-11-15
|
|
368
|
+
references:
|
|
369
|
+
scripts:
|
|
370
|
+
- "scripts/release"
|
|
371
|
+
- "scripts/analyze-commits.sh"
|
|
372
|
+
version: "lib/jekyll-theme-zer0/version.rb"
|
|
373
|
+
workflow: ".github/workflows/release.yml"
|
|
374
|
+
changelog: "CHANGELOG.md"
|
|
375
|
+
features:
|
|
376
|
+
- "Semantic version bumping"
|
|
377
|
+
- "Commit message analysis"
|
|
378
|
+
- "Automatic changelog updates"
|
|
379
|
+
- "Gem building and publishing"
|
|
380
|
+
- "GitHub release creation"
|
|
381
|
+
- "Tag management"
|
|
382
|
+
- "Dry-run mode"
|
|
383
|
+
|
|
384
|
+
- id: ZER0-016
|
|
385
|
+
title: "Comprehensive Testing Suite"
|
|
386
|
+
description: "Automated testing with core, deployment, and quality test suites. Docker-based testing, CI/CD integration, and detailed reporting"
|
|
387
|
+
implemented: true
|
|
388
|
+
version: "0.10.0"
|
|
389
|
+
link: "/"
|
|
390
|
+
docs: ".github/instructions/testing.instructions.md"
|
|
391
|
+
tags: [testing, quality, ci-cd, automation]
|
|
392
|
+
date: 2025-11-15
|
|
393
|
+
references:
|
|
394
|
+
tests:
|
|
395
|
+
- "test/test_runner.sh"
|
|
396
|
+
- "test/test_core.sh"
|
|
397
|
+
- "test/test_deployment.sh"
|
|
398
|
+
- "test/test_quality.sh"
|
|
399
|
+
workflow: ".github/workflows/ci.yml"
|
|
400
|
+
features:
|
|
401
|
+
- "Core functionality tests"
|
|
402
|
+
- "Deployment validation"
|
|
403
|
+
- "Code quality checks"
|
|
404
|
+
- "Markdown linting"
|
|
405
|
+
- "YAML validation"
|
|
406
|
+
- "HTML validation"
|
|
407
|
+
- "Docker tests"
|
|
408
|
+
|
|
409
|
+
- id: ZER0-017
|
|
410
|
+
title: "Automated Version Bump Workflow"
|
|
411
|
+
description: "GitHub Actions workflow for manual version bumping with test execution, changelog updates, and automated tagging"
|
|
412
|
+
implemented: true
|
|
413
|
+
version: "0.14.2"
|
|
414
|
+
link: "/"
|
|
415
|
+
docs: ".github/workflows/version-bump.yml"
|
|
416
|
+
tags: [github-actions, automation, versioning, ci-cd]
|
|
417
|
+
date: 2025-12-07
|
|
418
|
+
references:
|
|
419
|
+
workflow: ".github/workflows/version-bump.yml"
|
|
420
|
+
version: "lib/jekyll-theme-zer0/version.rb"
|
|
421
|
+
features:
|
|
422
|
+
- "Manual workflow dispatch"
|
|
423
|
+
- "Version type selection (patch/minor/major)"
|
|
424
|
+
- "Automated testing"
|
|
425
|
+
- "Changelog updates"
|
|
426
|
+
- "Git tagging"
|
|
427
|
+
- "Bundler unfreezing"
|
|
428
|
+
|
|
429
|
+
- id: ZER0-018
|
|
430
|
+
title: "CodeQL Security Scanning"
|
|
431
|
+
description: "Automated security vulnerability scanning with GitHub CodeQL for Ruby and JavaScript code"
|
|
432
|
+
implemented: true
|
|
433
|
+
version: "0.10.0"
|
|
434
|
+
link: "/"
|
|
435
|
+
docs: ".github/workflows/codeql.yml"
|
|
436
|
+
tags: [security, codeql, scanning, ci-cd]
|
|
437
|
+
date: 2025-11-15
|
|
438
|
+
references:
|
|
439
|
+
workflow: ".github/workflows/codeql.yml"
|
|
440
|
+
features:
|
|
441
|
+
- "Ruby code analysis"
|
|
442
|
+
- "JavaScript code analysis"
|
|
443
|
+
- "Automated vulnerability detection"
|
|
444
|
+
- "Security advisories"
|
|
445
|
+
|
|
446
|
+
# ============================================================================
|
|
447
|
+
# LAYOUTS & TEMPLATES
|
|
448
|
+
# ============================================================================
|
|
449
|
+
|
|
450
|
+
- id: ZER0-019
|
|
451
|
+
title: "Comprehensive Layout System"
|
|
452
|
+
description: "15+ specialized layouts for different content types with consistent hierarchy and Bootstrap integration"
|
|
453
|
+
implemented: true
|
|
454
|
+
version: "0.1.0"
|
|
455
|
+
link: "/"
|
|
456
|
+
docs: ".github/instructions/layouts.instructions.md"
|
|
457
|
+
tags: [layouts, templates, jekyll, bootstrap]
|
|
458
|
+
date: 2025-01-27
|
|
459
|
+
references:
|
|
460
|
+
layouts:
|
|
461
|
+
- "_layouts/root.html"
|
|
462
|
+
- "_layouts/default.html"
|
|
463
|
+
- "_layouts/journals.html"
|
|
464
|
+
- "_layouts/home.html"
|
|
465
|
+
- "_layouts/landing.html"
|
|
466
|
+
- "_layouts/notebook.html"
|
|
467
|
+
- "_layouts/blog.html"
|
|
468
|
+
- "_layouts/category.html"
|
|
469
|
+
- "_layouts/collection.html"
|
|
470
|
+
- "_layouts/index.html"
|
|
471
|
+
- "_layouts/sitemap-collection.html"
|
|
472
|
+
- "_layouts/stats.html"
|
|
473
|
+
- "_layouts/tag.html"
|
|
474
|
+
docs: ".github/instructions/layouts.instructions.md"
|
|
475
|
+
layout_hierarchy:
|
|
476
|
+
- "root.html (base HTML structure)"
|
|
477
|
+
- "default.html (main content wrapper)"
|
|
478
|
+
- "journals.html (blog posts)"
|
|
479
|
+
- "notebook.html (Jupyter notebooks)"
|
|
480
|
+
- "landing.html (homepage)"
|
|
481
|
+
|
|
482
|
+
- id: ZER0-020
|
|
483
|
+
title: "Modular Include Components"
|
|
484
|
+
description: "70+ reusable include components organized by category for maximum flexibility and maintainability"
|
|
485
|
+
implemented: true
|
|
486
|
+
version: "0.1.0"
|
|
487
|
+
link: "/"
|
|
488
|
+
docs: ".github/instructions/includes.instructions.md"
|
|
489
|
+
tags: [includes, components, modular, jekyll]
|
|
490
|
+
date: 2025-01-27
|
|
491
|
+
references:
|
|
492
|
+
includes:
|
|
493
|
+
- "_includes/core/"
|
|
494
|
+
- "_includes/components/"
|
|
495
|
+
- "_includes/navigation/"
|
|
496
|
+
- "_includes/analytics/"
|
|
497
|
+
- "_includes/content/"
|
|
498
|
+
- "_includes/docs/"
|
|
499
|
+
- "_includes/landing/"
|
|
500
|
+
- "_includes/stats/"
|
|
501
|
+
docs: ".github/instructions/includes.instructions.md"
|
|
502
|
+
categories:
|
|
503
|
+
core: ["head.html", "header.html", "footer.html", "branding.html"]
|
|
504
|
+
components: ["cookie-consent.html", "theme-info.html", "mermaid.html", "searchbar.html"]
|
|
505
|
+
navigation: ["navbar.html", "breadcrumbs.html", "sidebar-left.html", "sidebar-right.html"]
|
|
506
|
+
analytics: ["posthog.html", "google-analytics.html"]
|
|
507
|
+
|
|
508
|
+
# ============================================================================
|
|
509
|
+
# PLUGINS & EXTENSIONS
|
|
510
|
+
# ============================================================================
|
|
511
|
+
|
|
512
|
+
- id: ZER0-021
|
|
513
|
+
title: "Theme Version Display Plugin"
|
|
514
|
+
description: "Automatic theme version extraction from gem specification with modal display and footer integration"
|
|
515
|
+
implemented: true
|
|
516
|
+
version: "0.11.0"
|
|
517
|
+
link: "/"
|
|
518
|
+
docs: "docs/THEME_VERSION_IMPLEMENTATION.md"
|
|
519
|
+
tags: [plugin, version, jekyll, metadata]
|
|
520
|
+
date: 2025-11-20
|
|
521
|
+
references:
|
|
522
|
+
plugin: "_plugins/theme_version.rb"
|
|
523
|
+
include: "_includes/components/theme-info.html"
|
|
524
|
+
docs: "docs/THEME_VERSION_IMPLEMENTATION.md"
|
|
525
|
+
features:
|
|
526
|
+
- "Gem specification parsing"
|
|
527
|
+
- "Remote theme support"
|
|
528
|
+
- "Version modal display"
|
|
529
|
+
- "Footer access point"
|
|
530
|
+
- "Multiple theme detection"
|
|
531
|
+
|
|
532
|
+
# ============================================================================
|
|
533
|
+
# LEGAL & COMPLIANCE
|
|
534
|
+
# ============================================================================
|
|
535
|
+
|
|
536
|
+
- id: ZER0-022
|
|
537
|
+
title: "Privacy Policy Page"
|
|
538
|
+
description: "GDPR/CCPA compliant privacy policy with comprehensive data collection transparency and PostHog analytics disclosure"
|
|
539
|
+
implemented: true
|
|
540
|
+
version: "0.15.0"
|
|
541
|
+
link: "/privacy-policy/"
|
|
542
|
+
docs: "pages/privacy-policy.md"
|
|
543
|
+
tags: [legal, privacy, gdpr, ccpa, compliance]
|
|
544
|
+
date: 2025-12-11
|
|
545
|
+
references:
|
|
546
|
+
page: "pages/privacy-policy.md"
|
|
547
|
+
features:
|
|
548
|
+
- "Data collection disclosure"
|
|
549
|
+
- "User rights explanation"
|
|
550
|
+
- "Cookie usage details"
|
|
551
|
+
- "Third-party services list"
|
|
552
|
+
- "Contact information"
|
|
553
|
+
|
|
554
|
+
- id: ZER0-023
|
|
555
|
+
title: "Terms of Service Page"
|
|
556
|
+
description: "Legal terms of service framework for site usage with customizable sections"
|
|
557
|
+
implemented: true
|
|
558
|
+
version: "0.15.0"
|
|
559
|
+
link: "/terms-of-service/"
|
|
560
|
+
docs: "pages/terms-of-service.md"
|
|
561
|
+
tags: [legal, terms, compliance]
|
|
562
|
+
date: 2025-12-11
|
|
563
|
+
references:
|
|
564
|
+
page: "pages/terms-of-service.md"
|
|
565
|
+
|
|
566
|
+
# ============================================================================
|
|
567
|
+
# DOCUMENTATION
|
|
568
|
+
# ============================================================================
|
|
569
|
+
|
|
570
|
+
- id: ZER0-024
|
|
571
|
+
title: "Product Requirements Document (PRD)"
|
|
572
|
+
description: "Comprehensive PRD detailing product vision, goals, architecture, personas, and feature requirements"
|
|
573
|
+
implemented: true
|
|
574
|
+
version: "0.15.0"
|
|
575
|
+
link: "/"
|
|
576
|
+
docs: "docs/PRD.md"
|
|
577
|
+
tags: [documentation, prd, product, planning]
|
|
578
|
+
date: 2025-11-25
|
|
579
|
+
references:
|
|
580
|
+
doc: "docs/PRD.md"
|
|
581
|
+
features:
|
|
582
|
+
- "Vision statement"
|
|
583
|
+
- "Target personas"
|
|
584
|
+
- "Feature requirements"
|
|
585
|
+
- "Success metrics"
|
|
586
|
+
- "Roadmap"
|
|
587
|
+
|
|
588
|
+
- id: ZER0-025
|
|
589
|
+
title: "Dual Documentation Architecture"
|
|
590
|
+
description: "Separate technical (/docs/) and public (/pages/_docs/) documentation with MDX support and conversion workflow"
|
|
591
|
+
implemented: true
|
|
592
|
+
version: "0.15.0"
|
|
593
|
+
link: "/"
|
|
594
|
+
docs: ".github/instructions/documentation.instructions.md"
|
|
595
|
+
tags: [documentation, mdx, markdown, workflow]
|
|
596
|
+
date: 2025-11-16
|
|
597
|
+
references:
|
|
598
|
+
technical: "docs/"
|
|
599
|
+
public: "pages/_docs/"
|
|
600
|
+
instructions: ".github/instructions/documentation.instructions.md"
|
|
601
|
+
features:
|
|
602
|
+
- "MDX for technical docs"
|
|
603
|
+
- "Markdown for public docs"
|
|
604
|
+
- "Conversion workflow"
|
|
605
|
+
- "Cross-references"
|
|
606
|
+
- "AI optimization"
|
|
607
|
+
|
|
608
|
+
# ============================================================================
|
|
609
|
+
# AUTOMATION & WORKFLOWS
|
|
610
|
+
# ============================================================================
|
|
611
|
+
|
|
612
|
+
- id: ZER0-026
|
|
613
|
+
title: "Automated Dependency Updates"
|
|
614
|
+
description: "GitHub Actions workflow for automated Ruby gem dependency updates with PR creation"
|
|
615
|
+
implemented: true
|
|
616
|
+
version: "0.14.2"
|
|
617
|
+
link: "/"
|
|
618
|
+
docs: ".github/workflows/update-dependencies.yml"
|
|
619
|
+
tags: [automation, dependencies, github-actions, maintenance]
|
|
620
|
+
date: 2025-12-07
|
|
621
|
+
references:
|
|
622
|
+
workflow: ".github/workflows/update-dependencies.yml"
|
|
623
|
+
features:
|
|
624
|
+
- "Automated gem updates"
|
|
625
|
+
- "PR creation"
|
|
626
|
+
- "Bundler compatibility"
|
|
627
|
+
- "Security updates"
|
|
628
|
+
|
|
629
|
+
- id: ZER0-027
|
|
630
|
+
title: "Continuous Integration (CI) Workflow"
|
|
631
|
+
description: "Comprehensive CI pipeline with multi-Ruby version testing, quality checks, and automated deployment validation"
|
|
632
|
+
implemented: true
|
|
633
|
+
version: "0.10.0"
|
|
634
|
+
link: "/"
|
|
635
|
+
docs: ".github/workflows/ci.yml"
|
|
636
|
+
tags: [ci-cd, testing, automation, github-actions]
|
|
637
|
+
date: 2025-11-15
|
|
638
|
+
references:
|
|
639
|
+
workflow: ".github/workflows/ci.yml"
|
|
640
|
+
features:
|
|
641
|
+
- "Multi-Ruby version testing"
|
|
642
|
+
- "Jekyll build validation"
|
|
643
|
+
- "Gem build testing"
|
|
644
|
+
- "Quality checks"
|
|
645
|
+
- "Deployment validation"
|
|
646
|
+
|
|
647
|
+
# ============================================================================
|
|
648
|
+
# UTILITY SCRIPTS
|
|
649
|
+
# ============================================================================
|
|
650
|
+
|
|
651
|
+
- id: ZER0-028
|
|
652
|
+
title: "Shell Script Automation Library"
|
|
653
|
+
description: "Collection of 15+ automation scripts for building, testing, releasing, and managing the theme"
|
|
654
|
+
implemented: true
|
|
655
|
+
version: "0.5.0"
|
|
656
|
+
link: "/"
|
|
657
|
+
docs: ".github/instructions/scripts.instructions.md"
|
|
658
|
+
tags: [scripts, automation, bash, utilities]
|
|
659
|
+
date: 2025-11-15
|
|
660
|
+
references:
|
|
661
|
+
scripts:
|
|
662
|
+
- "scripts/build"
|
|
663
|
+
- "scripts/release"
|
|
664
|
+
- "scripts/setup.sh"
|
|
665
|
+
- "scripts/convert-notebooks.sh"
|
|
666
|
+
- "scripts/generate-preview-images.sh"
|
|
667
|
+
- "scripts/analyze-commits.sh"
|
|
668
|
+
- "scripts/fix-markdown-format.sh"
|
|
669
|
+
docs: ".github/instructions/scripts.instructions.md"
|
|
670
|
+
features:
|
|
671
|
+
- "Build automation"
|
|
672
|
+
- "Release management"
|
|
673
|
+
- "Testing utilities"
|
|
674
|
+
- "Content conversion"
|
|
675
|
+
- "Error handling"
|
|
676
|
+
- "Platform detection"
|