jekyll-theme-zer0 0.22.20 → 0.22.22
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 +74 -4
- data/README.md +325 -40
- data/_data/README.md +1 -0
- data/_data/roadmap.yml +215 -0
- data/scripts/bin/install +717 -0
- data/scripts/bin/test +45 -2
- data/scripts/generate-roadmap.rb +200 -0
- data/scripts/generate-roadmap.sh +21 -0
- data/scripts/lib/install/README.md +63 -0
- data/scripts/lib/install/agents.sh +166 -0
- data/scripts/lib/install/ai/diagnose.sh +199 -0
- data/scripts/lib/install/ai/openai.sh +233 -0
- data/scripts/lib/install/ai/suggest.sh +182 -0
- data/scripts/lib/install/ai/wizard.sh +160 -0
- data/scripts/lib/install/config.sh +56 -0
- data/scripts/lib/install/deploy/README.md +52 -0
- data/scripts/lib/install/deploy/azure-swa.sh +50 -0
- data/scripts/lib/install/deploy/docker-prod.sh +71 -0
- data/scripts/lib/install/deploy/github-pages.sh +44 -0
- data/scripts/lib/install/deploy/registry.sh +190 -0
- data/scripts/lib/install/doctor.sh +301 -0
- data/scripts/lib/install/fs.sh +52 -0
- data/scripts/lib/install/logging.sh +33 -0
- data/scripts/lib/install/pages.sh +255 -0
- data/scripts/lib/install/platform.sh +71 -0
- data/scripts/lib/install/profile.sh +113 -0
- data/scripts/lib/install/template.sh +137 -0
- data/scripts/lib/install/upgrade.sh +184 -0
- data/scripts/lib/install/wizard_interactive.sh +189 -0
- metadata +27 -2
data/_data/roadmap.yml
ADDED
|
@@ -0,0 +1,215 @@
|
|
|
1
|
+
# =============================================================================
|
|
2
|
+
# zer0-mistakes Roadmap — Single Source of Truth
|
|
3
|
+
# =============================================================================
|
|
4
|
+
#
|
|
5
|
+
# This file is the canonical source for the project roadmap. It powers:
|
|
6
|
+
#
|
|
7
|
+
# 1. The Mermaid gantt diagram and summary table in README.md
|
|
8
|
+
# (auto-generated by `scripts/generate-roadmap.sh` between
|
|
9
|
+
# <!-- ROADMAP_MERMAID:START --> / <!-- ROADMAP_MERMAID:END -->
|
|
10
|
+
# and <!-- ROADMAP_TABLE:START --> / <!-- ROADMAP_TABLE:END --> markers).
|
|
11
|
+
#
|
|
12
|
+
# 2. The /roadmap/ Jekyll page (`pages/roadmap.md`), which renders the
|
|
13
|
+
# diagram, release history, and per-version sections directly from
|
|
14
|
+
# this file via Liquid (always live on the site).
|
|
15
|
+
#
|
|
16
|
+
# To update the roadmap:
|
|
17
|
+
# 1. Edit this file.
|
|
18
|
+
# 2. Run `./scripts/generate-roadmap.sh` to refresh the README.
|
|
19
|
+
# 3. Commit both this file and the resulting README.md changes.
|
|
20
|
+
#
|
|
21
|
+
# A GitHub Actions workflow (`.github/workflows/roadmap-sync.yml`) also runs
|
|
22
|
+
# the generator automatically on push when this file changes.
|
|
23
|
+
#
|
|
24
|
+
# =============================================================================
|
|
25
|
+
# Schema
|
|
26
|
+
# =============================================================================
|
|
27
|
+
#
|
|
28
|
+
# meta:
|
|
29
|
+
# title: Title displayed in the Mermaid gantt chart
|
|
30
|
+
# tagline: Short tagline shown on the roadmap page
|
|
31
|
+
# updated: Last-reviewed date (YYYY-MM-DD)
|
|
32
|
+
#
|
|
33
|
+
# milestones:
|
|
34
|
+
# - version: Semantic version string (e.g. "0.22")
|
|
35
|
+
# title: Theme/feature name (short)
|
|
36
|
+
# status: completed | active | planned | milestone
|
|
37
|
+
# section: Group label in the gantt (Completed / Current / Future)
|
|
38
|
+
# start: Start month (YYYY-MM) — required
|
|
39
|
+
# end: End month (YYYY-MM) — required for ranges
|
|
40
|
+
# target: Human-readable target (e.g. "Q2 2026")
|
|
41
|
+
# released: Actual release date for shipped versions (YYYY-MM-DD)
|
|
42
|
+
# summary: One-line description
|
|
43
|
+
# features: List of bullet points (used on the roadmap page)
|
|
44
|
+
#
|
|
45
|
+
# =============================================================================
|
|
46
|
+
|
|
47
|
+
meta:
|
|
48
|
+
title: "zer0-mistakes Roadmap"
|
|
49
|
+
tagline: "Past releases, current focus, and future plans for the zer0-mistakes Jekyll theme."
|
|
50
|
+
updated: 2026-04-18
|
|
51
|
+
|
|
52
|
+
milestones:
|
|
53
|
+
# --- Completed -------------------------------------------------------------
|
|
54
|
+
|
|
55
|
+
- version: "0.17"
|
|
56
|
+
title: "ES6 Navigation"
|
|
57
|
+
status: completed
|
|
58
|
+
section: Completed
|
|
59
|
+
start: 2025-12
|
|
60
|
+
end: 2025-12
|
|
61
|
+
released: 2025-12-15
|
|
62
|
+
summary: "ES6 modular navigation with auto-hide navbar, hover dropdowns, keyboard navigation, and touch gestures."
|
|
63
|
+
features:
|
|
64
|
+
- "ES6 navigation modules"
|
|
65
|
+
- "Auto-hide navbar on scroll"
|
|
66
|
+
- "Hover dropdowns with keyboard navigation"
|
|
67
|
+
- "Touch gestures for mobile"
|
|
68
|
+
|
|
69
|
+
- version: "0.18"
|
|
70
|
+
title: "Site Search"
|
|
71
|
+
status: completed
|
|
72
|
+
section: Completed
|
|
73
|
+
start: 2026-01
|
|
74
|
+
end: 2026-01
|
|
75
|
+
released: 2026-01-15
|
|
76
|
+
summary: "Client-side site search with a keyboard-shortcut search modal."
|
|
77
|
+
features:
|
|
78
|
+
- "Client-side search index"
|
|
79
|
+
- "Search modal with keyboard shortcuts"
|
|
80
|
+
- "GitHub Pages compatible (no server required)"
|
|
81
|
+
|
|
82
|
+
- version: "0.19"
|
|
83
|
+
title: "Feature Discovery"
|
|
84
|
+
status: completed
|
|
85
|
+
section: Completed
|
|
86
|
+
start: 2026-01
|
|
87
|
+
end: 2026-01
|
|
88
|
+
released: 2026-01-25
|
|
89
|
+
summary: "43 documented features with a comprehensive feature registry."
|
|
90
|
+
features:
|
|
91
|
+
- "Feature registry in `_data/features.yml`"
|
|
92
|
+
- "User-facing feature pages"
|
|
93
|
+
- "Cross-linked from documentation"
|
|
94
|
+
|
|
95
|
+
- version: "0.20"
|
|
96
|
+
title: "Navigation Redesign"
|
|
97
|
+
status: completed
|
|
98
|
+
section: Completed
|
|
99
|
+
start: 2026-02
|
|
100
|
+
end: 2026-02
|
|
101
|
+
released: 2026-02-01
|
|
102
|
+
summary: "Local Docker publishing pipeline and CI variable abstraction."
|
|
103
|
+
features:
|
|
104
|
+
- "Local Docker publishing pipeline"
|
|
105
|
+
- "CI variable abstraction"
|
|
106
|
+
- "Navigation refactor"
|
|
107
|
+
|
|
108
|
+
- version: "0.21"
|
|
109
|
+
title: "Env Switcher"
|
|
110
|
+
status: completed
|
|
111
|
+
section: Completed
|
|
112
|
+
start: 2026-02
|
|
113
|
+
end: 2026-03
|
|
114
|
+
released: 2026-02-01
|
|
115
|
+
summary: "Environment switcher, settings modal redesign, and RubyGems API-key auth."
|
|
116
|
+
features:
|
|
117
|
+
- "Environment switcher"
|
|
118
|
+
- "Settings modal with tabs"
|
|
119
|
+
- "RubyGems API-key authentication"
|
|
120
|
+
- "Dependency updates"
|
|
121
|
+
|
|
122
|
+
# --- Current ---------------------------------------------------------------
|
|
123
|
+
|
|
124
|
+
- version: "0.22"
|
|
125
|
+
title: "AIEO & Customization"
|
|
126
|
+
status: active
|
|
127
|
+
section: Current
|
|
128
|
+
start: 2026-03
|
|
129
|
+
end: 2026-04
|
|
130
|
+
target: "Q1–Q2 2026"
|
|
131
|
+
summary: "AI Engine Optimization (AIEO), structured data, and visual customization tools."
|
|
132
|
+
features:
|
|
133
|
+
- "JSON-LD `SoftwareApplication`, `WebPage`, `Person`, and `FAQPage` schemas"
|
|
134
|
+
- "Author E-E-A-T visibility block on the landing page"
|
|
135
|
+
- "FAQ page with FAQPage schema"
|
|
136
|
+
- "Glossary with key term definitions"
|
|
137
|
+
- "Roadmap page with temporal anchoring"
|
|
138
|
+
- "Citation hooks on project stats"
|
|
139
|
+
- "Skin editor with live color pickers and palette generator"
|
|
140
|
+
- "Admin layout and configuration dashboards"
|
|
141
|
+
- "Playwright visual regression tests"
|
|
142
|
+
- "Vendored assets (Bootstrap, Icons, Mermaid — no runtime CDN)"
|
|
143
|
+
- "Copilot Agent prompt button with data-driven prompt registry"
|
|
144
|
+
- "Universal installer (remote / github / codespaces modes)"
|
|
145
|
+
- "Dynamic collection-based navigation fallback for zero-config sites"
|
|
146
|
+
|
|
147
|
+
# --- Future ----------------------------------------------------------------
|
|
148
|
+
|
|
149
|
+
- version: "0.23"
|
|
150
|
+
title: "CMS Integration"
|
|
151
|
+
status: planned
|
|
152
|
+
section: Future
|
|
153
|
+
start: 2026-05
|
|
154
|
+
end: 2026-07
|
|
155
|
+
target: "Q2 2026"
|
|
156
|
+
summary: "Headless CMS integration with a content API and admin dashboard."
|
|
157
|
+
features:
|
|
158
|
+
- "Headless CMS integration (Decap CMS or Tina)"
|
|
159
|
+
- "Content API for programmatic access"
|
|
160
|
+
- "Admin dashboard for content management"
|
|
161
|
+
- "Draft preview workflow"
|
|
162
|
+
- "Multi-author collaboration"
|
|
163
|
+
|
|
164
|
+
- version: "0.24"
|
|
165
|
+
title: "i18n Support"
|
|
166
|
+
status: planned
|
|
167
|
+
section: Future
|
|
168
|
+
start: 2026-07
|
|
169
|
+
end: 2026-09
|
|
170
|
+
target: "Q3 2026"
|
|
171
|
+
summary: "Multi-language content support with locale-aware routing."
|
|
172
|
+
features:
|
|
173
|
+
- "Multi-language content support"
|
|
174
|
+
- "Locale-aware routing"
|
|
175
|
+
- "Translated UI strings via `_data/ui-text.yml`"
|
|
176
|
+
- "Right-to-left (RTL) layout support"
|
|
177
|
+
|
|
178
|
+
- version: "0.25"
|
|
179
|
+
title: "Advanced Analytics"
|
|
180
|
+
status: planned
|
|
181
|
+
section: Future
|
|
182
|
+
start: 2026-09
|
|
183
|
+
end: 2026-11
|
|
184
|
+
target: "Q4 2026"
|
|
185
|
+
summary: "Visual theme customizer, A/B testing, and conversion funnels."
|
|
186
|
+
features:
|
|
187
|
+
- "A/B testing framework"
|
|
188
|
+
- "Conversion funnels"
|
|
189
|
+
- "Heatmap visualization"
|
|
190
|
+
- "Visual theme customizer enhancements"
|
|
191
|
+
|
|
192
|
+
- version: "1.0"
|
|
193
|
+
title: "Stable Release"
|
|
194
|
+
status: milestone
|
|
195
|
+
section: Future
|
|
196
|
+
start: 2027-01
|
|
197
|
+
end: 2027-01
|
|
198
|
+
target: "Q1 2027"
|
|
199
|
+
summary: "Stable public API, 90%+ test coverage, and long-term support commitment."
|
|
200
|
+
features:
|
|
201
|
+
- "Stable public API for theme customization"
|
|
202
|
+
- "90%+ automated test coverage"
|
|
203
|
+
- "Migration guide from Minima and other themes"
|
|
204
|
+
- "Performance benchmarks met"
|
|
205
|
+
- "Security audit passed"
|
|
206
|
+
- "Long-term support (LTS) commitment"
|
|
207
|
+
|
|
208
|
+
# =============================================================================
|
|
209
|
+
# Prioritization signals
|
|
210
|
+
# =============================================================================
|
|
211
|
+
prioritization:
|
|
212
|
+
- "Community feedback — GitHub Issues and Discussions"
|
|
213
|
+
- "Usage analytics — privacy-compliant PostHog data on feature adoption"
|
|
214
|
+
- "Ecosystem changes — Jekyll, Bootstrap, and GitHub Pages updates"
|
|
215
|
+
- "Contributor interest — open feature requests that attract PRs"
|