@knowcode/doc-builder 1.9.11 → 1.9.13
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.
- package/README.md +54 -9
- package/assets/css/notion-style.css +65 -1
- package/doc-builder.config.js +1 -1
- package/doc-builder.config.js.backup.1753945707032 +115 -0
- package/html/README.html +39 -28
- package/html/auth.js +17 -7
- package/html/documentation-index.html +14 -5
- package/html/guides/authentication-default-change.html +7 -3
- package/html/guides/authentication-guide.html +35 -15
- package/html/guides/claude-workflow-guide.html +14 -10
- package/html/guides/configuration-guide.html +443 -0
- package/html/guides/documentation-standards.html +11 -7
- package/html/guides/html-embedding-guide.html +17 -13
- package/html/guides/image-modal-guide.html +9 -5
- package/html/guides/phosphor-icons-guide.html +27 -23
- package/html/guides/private-directory-authentication-troubleshooting.html +21 -17
- package/html/guides/private-directory-authentication.html +7 -3
- package/html/guides/public-site-deployment.html +7 -3
- package/html/guides/search-engine-verification-guide.html +7 -3
- package/html/guides/seo-guide.html +7 -3
- package/html/guides/seo-optimization-guide.html +35 -31
- package/html/guides/supabase-authentication-complete-guide.html +860 -0
- package/html/guides/troubleshooting-guide.html +18 -14
- package/html/guides/windows-setup-guide.html +38 -34
- package/html/image-modal-test.html +7 -3
- package/html/index.html +39 -28
- package/html/js/auth.js +17 -7
- package/html/private/cache-control-anti-pattern.html +12 -8
- package/html/private/launch/README.html +15 -11
- package/html/private/launch/auth-cleanup-summary.html +24 -20
- package/html/private/launch/bubble-plugin-specification.html +7 -3
- package/html/private/launch/go-to-market-strategy.html +9 -5
- package/html/private/launch/launch-announcements.html +23 -19
- package/html/private/launch/vercel-deployment-auth-setup.html +9 -5
- package/html/private/next-steps-walkthrough.html +14 -10
- package/html/private/supabase-auth-implementation-completed.html +20 -16
- package/html/private/supabase-auth-implementation-plan.html +13 -9
- package/html/private/supabase-auth-integration-plan.html +19 -15
- package/html/private/supabase-auth-setup-guide.html +16 -12
- package/html/private/test-private-doc.html +7 -3
- package/html/private/user-management-tooling.html +7 -3
- package/html/prompts/beautiful-documentation-design.html +778 -0
- package/html/prompts/markdown-document-standards.html +11 -7
- package/html/sitemap.xml +69 -51
- package/html/vercel-cli-setup-guide.html +10 -6
- package/html/vercel-first-time-setup-guide.html +7 -3
- package/package.json +1 -1
package/html/js/auth.js
CHANGED
|
@@ -27,6 +27,10 @@
|
|
|
27
27
|
// Check authentication and site access
|
|
28
28
|
async function checkAuth() {
|
|
29
29
|
try {
|
|
30
|
+
// Check authentication mode
|
|
31
|
+
const isGlobalAuthEnabled = false;
|
|
32
|
+
const isPrivateDirectoryAuthEnabled = true;
|
|
33
|
+
|
|
30
34
|
// Check if current page is in private directory
|
|
31
35
|
const currentPath = window.location.pathname;
|
|
32
36
|
const isPrivatePage = currentPath.includes('/private/');
|
|
@@ -35,11 +39,11 @@
|
|
|
35
39
|
const { data: { user }, error: userError } = await supabaseClient.auth.getUser();
|
|
36
40
|
|
|
37
41
|
if (userError || !user) {
|
|
38
|
-
//
|
|
39
|
-
if (isPrivatePage) {
|
|
42
|
+
// Redirect if global auth is enabled OR if we're on a private page with private auth enabled
|
|
43
|
+
if (isGlobalAuthEnabled || (isPrivateDirectoryAuthEnabled && isPrivatePage)) {
|
|
40
44
|
redirectToLogin();
|
|
41
45
|
} else {
|
|
42
|
-
// Public page
|
|
46
|
+
// Public page (no global auth and either no private auth or not on private page)
|
|
43
47
|
document.body.classList.add('authenticated'); // Use same class to show body
|
|
44
48
|
updateAuthButton(false);
|
|
45
49
|
}
|
|
@@ -55,7 +59,7 @@
|
|
|
55
59
|
.single();
|
|
56
60
|
|
|
57
61
|
if (accessError || !access) {
|
|
58
|
-
if (isPrivatePage) {
|
|
62
|
+
if (isGlobalAuthEnabled || (isPrivateDirectoryAuthEnabled && isPrivatePage)) {
|
|
59
63
|
showAccessDenied();
|
|
60
64
|
} else {
|
|
61
65
|
// Public page, show it but don't grant private navigation access
|
|
@@ -65,15 +69,21 @@
|
|
|
65
69
|
return;
|
|
66
70
|
}
|
|
67
71
|
|
|
68
|
-
// User is authenticated and has domain access - grant
|
|
72
|
+
// User is authenticated and has domain access - grant appropriate access
|
|
69
73
|
console.log('User authenticated and authorized');
|
|
70
74
|
document.body.classList.add('authenticated');
|
|
71
|
-
|
|
75
|
+
|
|
76
|
+
// Grant private navigation access if private directory auth is enabled
|
|
77
|
+
if (isPrivateDirectoryAuthEnabled || isGlobalAuthEnabled) {
|
|
78
|
+
document.body.classList.add('has-private-access');
|
|
79
|
+
}
|
|
80
|
+
|
|
72
81
|
updateAuthButton(true);
|
|
73
82
|
|
|
74
83
|
} catch (error) {
|
|
75
84
|
console.error('Auth check failed:', error);
|
|
76
|
-
|
|
85
|
+
const isPrivatePage = window.location.pathname.includes('/private/');
|
|
86
|
+
if (isGlobalAuthEnabled || (isPrivateDirectoryAuthEnabled && isPrivatePage)) {
|
|
77
87
|
redirectToLogin();
|
|
78
88
|
} else {
|
|
79
89
|
// Public page, show it anyway
|
|
@@ -6,6 +6,7 @@
|
|
|
6
6
|
<meta name="description" content="This guide documents how to implement aggressive cache-busting headers in doc-builder, but we strongly recommend against using this approach. This...">
|
|
7
7
|
<title>Cache Control Anti-Pattern: Why Aggressive Cach...</title>
|
|
8
8
|
|
|
9
|
+
<meta name="generator" content="@knowcode/doc-builder by Knowcode Ltd">
|
|
9
10
|
<meta name="author" content="Lindsay Smith">
|
|
10
11
|
<meta name="keywords" content="documentation, markdown, static site generator, vercel, notion-style, cache, caching">
|
|
11
12
|
<meta name="robots" content="index, follow">
|
|
@@ -98,8 +99,8 @@
|
|
|
98
99
|
"name": "Knowcode Ltd",
|
|
99
100
|
"url": "https://knowcode.tech"
|
|
100
101
|
},
|
|
101
|
-
"datePublished": "2025-07-
|
|
102
|
-
"dateModified": "2025-07-
|
|
102
|
+
"datePublished": "2025-07-31T07:08:27.396Z",
|
|
103
|
+
"dateModified": "2025-07-31T07:08:27.396Z",
|
|
103
104
|
"mainEntityOfPage": {
|
|
104
105
|
"@type": "WebPage",
|
|
105
106
|
"@id": "https://doc-builder-delta.vercel.app/private/cache-control-anti-pattern.html"
|
|
@@ -138,7 +139,7 @@
|
|
|
138
139
|
|
|
139
140
|
<div class="header-actions">
|
|
140
141
|
<div class="deployment-info">
|
|
141
|
-
<span class="deployment-date" title="Built with doc-builder v1.9.
|
|
142
|
+
<span class="deployment-date" title="Built with doc-builder v1.9.11">Last updated: Jul 31, 2025, 07:08 AM UTC</span>
|
|
142
143
|
</div>
|
|
143
144
|
|
|
144
145
|
|
|
@@ -204,6 +205,7 @@
|
|
|
204
205
|
<a href="/guides/authentication-default-change.html" class="nav-item" data-tooltip="Starting from version 1.7.4, @knowcode/doc-builder now defaults to no authentication for all documentation sites."><i class="ph ph-file-text"></i> Authentication Default Change</a>
|
|
205
206
|
<a href="/guides/authentication-guide.html" class="nav-item" data-tooltip="@knowcode/doc-builder supports enterprise-grade authentication through Supabase - a secure, scalable authentication platform."><i class="ph ph-check-circle" style="color: #059669;"></i> Authentication Guide</a>
|
|
206
207
|
<a href="/guides/claude-workflow-guide.html" class="nav-item" data-tooltip="This guide demonstrates an efficient workflow for using Claude Code with a refined CLAUDE.md file to create high-quality documentation and deploy it..."><i class="ph ph-pencil-simple" style="color: #d97706;"></i> Claude Workflow Guide</a>
|
|
208
|
+
<a href="/guides/configuration-guide.html" class="nav-item" data-tooltip="This guide explains how @knowcode/doc-builder handles configuration files and settings."><i class="ph ph-check-circle" style="color: #059669;"></i> Configuration Guide</a>
|
|
207
209
|
<a href="/guides/documentation-standards.html" class="nav-item" data-tooltip="This document defines the documentation standards and conventions for the @knowcode/doc-builder project."><i class="ph ph-pencil-simple" style="color: #d97706;"></i> Documentation Standards</a>
|
|
208
210
|
<a href="/guides/html-embedding-guide.html" class="nav-item" data-tooltip="Starting from version 1.9.2, doc-builder treats HTML files ( and ) as attachments that are automatically copied to your output directory during the..."><i class="ph ph-check-circle" style="color: #059669;"></i> Html Embedding Guide</a>
|
|
209
211
|
<a href="/guides/image-modal-guide.html" class="nav-item" data-tooltip="When users click on any image in your generated documentation, it opens in a professional modal overlay with: Full-screen viewing experience Smooth..."><i class="ph ph-check-circle" style="color: #059669;"></i> Image Modal Guide</a>
|
|
@@ -214,6 +216,7 @@
|
|
|
214
216
|
<a href="/guides/search-engine-verification-guide.html" class="nav-item" data-tooltip="Search engine verification provides access to powerful webmaster tools:."><i class="ph ph-check-circle" style="color: #059669;"></i> Search Engine Verification Guide</a>
|
|
215
217
|
<a href="/guides/seo-guide.html" class="nav-item" data-tooltip="@knowcode/doc-builder includes comprehensive SEO (Search Engine Optimization) features to help your documentation rank better in search results and..."><i class="ph ph-check-circle" style="color: #059669;"></i> Seo Guide</a>
|
|
216
218
|
<a href="/guides/seo-optimization-guide.html" class="nav-item" data-tooltip="Comprehensive guide to optimizing documentation for search engines. Learn SEO best practices, use built-in features, and improve your rankings."><i class="ph ph-check-circle" style="color: #059669;"></i> Seo Optimization Guide</a>
|
|
219
|
+
<a href="/guides/supabase-authentication-complete-guide.html" class="nav-item" data-tooltip="@knowcode/doc-builder includes built-in Supabase authentication that provides enterprise-grade security with zero configuration."><i class="ph ph-check-circle" style="color: #059669;"></i> Supabase Authentication Complete Guide</a>
|
|
217
220
|
<a href="/guides/troubleshooting-guide.html" class="nav-item" data-tooltip="This guide helps you resolve common issues when using @knowcode/doc-builder."><i class="ph ph-check-circle" style="color: #059669;"></i> Troubleshooting Guide</a>
|
|
218
221
|
<a href="/guides/windows-setup-guide.html" class="nav-item" data-tooltip="This guide helps Windows users set up the complete AI-powered documentation workflow using Claude Code, @knowcode/doc-builder, and Vercel."><i class="ph ph-check-circle" style="color: #059669;"></i> Windows Setup Guide</a></div></div>
|
|
219
222
|
<div class="nav-section private-nav" data-level="1">
|
|
@@ -245,6 +248,7 @@
|
|
|
245
248
|
<i class="ph ph-caret-right collapse-icon"></i><i class="ph ph-chat-circle-dots"></i> Prompts
|
|
246
249
|
</a>
|
|
247
250
|
<div class="nav-content collapsed" id="nav-prompts-1">
|
|
251
|
+
<a href="/prompts/beautiful-documentation-design.html" class="nav-item" data-tooltip="🎨 Beautiful Documentation Design Guide."><i class="ph ph-check-circle" style="color: #059669;"></i> Beautiful Documentation Design</a>
|
|
248
252
|
<a href="/prompts/markdown-document-standards.html" class="nav-item" data-tooltip="Detailed introduction to the topic..."><i class="ph ph-pencil-simple" style="color: #d97706;"></i> Markdown Document Standards</a></div></div>
|
|
249
253
|
</nav>
|
|
250
254
|
<div class="resize-handle"></div>
|
|
@@ -254,7 +258,7 @@
|
|
|
254
258
|
<main class="content">
|
|
255
259
|
<div class="content-inner">
|
|
256
260
|
<h1>Cache Control Anti-Pattern: Why Aggressive Cache-Busting is Bad for Documentation Sites</h1>
|
|
257
|
-
<h2><i class="ph ph-warning-circle" aria-label="warning"></i> Important Notice</h2>
|
|
261
|
+
<h2><i style="font-size: 1.2em" class="ph ph-warning-circle" aria-label="warning"></i> Important Notice</h2>
|
|
258
262
|
<p>This guide documents how to implement aggressive cache-busting headers in doc-builder, but <strong>we strongly recommend against using this approach</strong>. This documentation exists for educational purposes and to explain why this is considered an anti-pattern for static documentation sites.</p>
|
|
259
263
|
<h2>Why Cache-Busting is a Bad Idea for Documentation</h2>
|
|
260
264
|
<h3>1. Performance Degradation</h3>
|
|
@@ -385,10 +389,10 @@ module.exports = {
|
|
|
385
389
|
<h2>Conclusion</h2>
|
|
386
390
|
<p>Aggressive cache-busting is an anti-pattern for documentation sites. The performance and user experience costs far outweigh any benefits. Instead:</p>
|
|
387
391
|
<ol>
|
|
388
|
-
<li><i class="ph ph-check-circle" aria-label="checked"></i> Use intelligent caching strategies</li>
|
|
389
|
-
<li><i class="ph ph-check-circle" aria-label="checked"></i> Implement version-based cache busting for assets</li>
|
|
390
|
-
<li><i class="ph ph-check-circle" aria-label="checked"></i> Trust browsers to handle HTML caching appropriately</li>
|
|
391
|
-
<li><i class="ph ph-x-circle" aria-label="error"></i> Don't disable caching entirely</li>
|
|
392
|
+
<li><i style="font-size: 1.2em" class="ph ph-check-circle" aria-label="checked"></i> Use intelligent caching strategies</li>
|
|
393
|
+
<li><i style="font-size: 1.2em" class="ph ph-check-circle" aria-label="checked"></i> Implement version-based cache busting for assets</li>
|
|
394
|
+
<li><i style="font-size: 1.2em" class="ph ph-check-circle" aria-label="checked"></i> Trust browsers to handle HTML caching appropriately</li>
|
|
395
|
+
<li><i style="font-size: 1.2em" class="ph ph-x-circle" aria-label="error"></i> Don't disable caching entirely</li>
|
|
392
396
|
</ol>
|
|
393
397
|
<p>Remember: Documentation sites are meant to be fast, reliable, and accessible. Proper caching is essential to achieving these goals.</p>
|
|
394
398
|
<h2>See Also</h2>
|
|
@@ -6,6 +6,7 @@
|
|
|
6
6
|
<meta name="description" content="This directory contains all documentation related to the commercial launch of @knowcode/doc-builder, including go-to-market strategy, platform integrations,...">
|
|
7
7
|
<title>Launch Documentation | @knowcode/doc-builder</title>
|
|
8
8
|
|
|
9
|
+
<meta name="generator" content="@knowcode/doc-builder by Knowcode Ltd">
|
|
9
10
|
<meta name="author" content="Lindsay Smith">
|
|
10
11
|
<meta name="keywords" content="documentation, markdown, static site generator, vercel, notion-style, launch, marketing">
|
|
11
12
|
<meta name="robots" content="index, follow">
|
|
@@ -98,8 +99,8 @@
|
|
|
98
99
|
"name": "Knowcode Ltd",
|
|
99
100
|
"url": "https://knowcode.tech"
|
|
100
101
|
},
|
|
101
|
-
"datePublished": "2025-07-
|
|
102
|
-
"dateModified": "2025-07-
|
|
102
|
+
"datePublished": "2025-07-31T07:08:27.397Z",
|
|
103
|
+
"dateModified": "2025-07-31T07:08:27.397Z",
|
|
103
104
|
"mainEntityOfPage": {
|
|
104
105
|
"@type": "WebPage",
|
|
105
106
|
"@id": "https://doc-builder-delta.vercel.app/private/launch/README.html"
|
|
@@ -144,7 +145,7 @@
|
|
|
144
145
|
|
|
145
146
|
<div class="header-actions">
|
|
146
147
|
<div class="deployment-info">
|
|
147
|
-
<span class="deployment-date" title="Built with doc-builder v1.9.
|
|
148
|
+
<span class="deployment-date" title="Built with doc-builder v1.9.11">Last updated: Jul 31, 2025, 07:08 AM UTC</span>
|
|
148
149
|
</div>
|
|
149
150
|
|
|
150
151
|
|
|
@@ -210,6 +211,7 @@
|
|
|
210
211
|
<a href="/guides/authentication-default-change.html" class="nav-item" data-tooltip="Starting from version 1.7.4, @knowcode/doc-builder now defaults to no authentication for all documentation sites."><i class="ph ph-file-text"></i> Authentication Default Change</a>
|
|
211
212
|
<a href="/guides/authentication-guide.html" class="nav-item" data-tooltip="@knowcode/doc-builder supports enterprise-grade authentication through Supabase - a secure, scalable authentication platform."><i class="ph ph-check-circle" style="color: #059669;"></i> Authentication Guide</a>
|
|
212
213
|
<a href="/guides/claude-workflow-guide.html" class="nav-item" data-tooltip="This guide demonstrates an efficient workflow for using Claude Code with a refined CLAUDE.md file to create high-quality documentation and deploy it..."><i class="ph ph-pencil-simple" style="color: #d97706;"></i> Claude Workflow Guide</a>
|
|
214
|
+
<a href="/guides/configuration-guide.html" class="nav-item" data-tooltip="This guide explains how @knowcode/doc-builder handles configuration files and settings."><i class="ph ph-check-circle" style="color: #059669;"></i> Configuration Guide</a>
|
|
213
215
|
<a href="/guides/documentation-standards.html" class="nav-item" data-tooltip="This document defines the documentation standards and conventions for the @knowcode/doc-builder project."><i class="ph ph-pencil-simple" style="color: #d97706;"></i> Documentation Standards</a>
|
|
214
216
|
<a href="/guides/html-embedding-guide.html" class="nav-item" data-tooltip="Starting from version 1.9.2, doc-builder treats HTML files ( and ) as attachments that are automatically copied to your output directory during the..."><i class="ph ph-check-circle" style="color: #059669;"></i> Html Embedding Guide</a>
|
|
215
217
|
<a href="/guides/image-modal-guide.html" class="nav-item" data-tooltip="When users click on any image in your generated documentation, it opens in a professional modal overlay with: Full-screen viewing experience Smooth..."><i class="ph ph-check-circle" style="color: #059669;"></i> Image Modal Guide</a>
|
|
@@ -220,6 +222,7 @@
|
|
|
220
222
|
<a href="/guides/search-engine-verification-guide.html" class="nav-item" data-tooltip="Search engine verification provides access to powerful webmaster tools:."><i class="ph ph-check-circle" style="color: #059669;"></i> Search Engine Verification Guide</a>
|
|
221
223
|
<a href="/guides/seo-guide.html" class="nav-item" data-tooltip="@knowcode/doc-builder includes comprehensive SEO (Search Engine Optimization) features to help your documentation rank better in search results and..."><i class="ph ph-check-circle" style="color: #059669;"></i> Seo Guide</a>
|
|
222
224
|
<a href="/guides/seo-optimization-guide.html" class="nav-item" data-tooltip="Comprehensive guide to optimizing documentation for search engines. Learn SEO best practices, use built-in features, and improve your rankings."><i class="ph ph-check-circle" style="color: #059669;"></i> Seo Optimization Guide</a>
|
|
225
|
+
<a href="/guides/supabase-authentication-complete-guide.html" class="nav-item" data-tooltip="@knowcode/doc-builder includes built-in Supabase authentication that provides enterprise-grade security with zero configuration."><i class="ph ph-check-circle" style="color: #059669;"></i> Supabase Authentication Complete Guide</a>
|
|
223
226
|
<a href="/guides/troubleshooting-guide.html" class="nav-item" data-tooltip="This guide helps you resolve common issues when using @knowcode/doc-builder."><i class="ph ph-check-circle" style="color: #059669;"></i> Troubleshooting Guide</a>
|
|
224
227
|
<a href="/guides/windows-setup-guide.html" class="nav-item" data-tooltip="This guide helps Windows users set up the complete AI-powered documentation workflow using Claude Code, @knowcode/doc-builder, and Vercel."><i class="ph ph-check-circle" style="color: #059669;"></i> Windows Setup Guide</a></div></div>
|
|
225
228
|
<div class="nav-section private-nav" data-level="1">
|
|
@@ -251,6 +254,7 @@
|
|
|
251
254
|
<i class="ph ph-caret-right collapse-icon"></i><i class="ph ph-chat-circle-dots"></i> Prompts
|
|
252
255
|
</a>
|
|
253
256
|
<div class="nav-content collapsed" id="nav-prompts-1">
|
|
257
|
+
<a href="/prompts/beautiful-documentation-design.html" class="nav-item" data-tooltip="🎨 Beautiful Documentation Design Guide."><i class="ph ph-check-circle" style="color: #059669;"></i> Beautiful Documentation Design</a>
|
|
254
258
|
<a href="/prompts/markdown-document-standards.html" class="nav-item" data-tooltip="Detailed introduction to the topic..."><i class="ph ph-pencil-simple" style="color: #d97706;"></i> Markdown Document Standards</a></div></div>
|
|
255
259
|
</nav>
|
|
256
260
|
<div class="resize-handle"></div>
|
|
@@ -263,24 +267,24 @@
|
|
|
263
267
|
<h2>Overview</h2>
|
|
264
268
|
<p>This directory contains all documentation related to the commercial launch of @knowcode/doc-builder, including go-to-market strategy, platform integrations, and marketing materials.</p>
|
|
265
269
|
<h2>Documents</h2>
|
|
266
|
-
<h3><i class="ph ph-clipboard-text" aria-label="clipboard"></i> Strategic Planning</h3>
|
|
270
|
+
<h3><i style="font-size: 1.2em" class="ph ph-clipboard-text" aria-label="clipboard"></i> Strategic Planning</h3>
|
|
267
271
|
<ul>
|
|
268
272
|
<li><strong><a href="./go-to-market-strategy.md">Go-to-Market Strategy</a></strong> - Comprehensive launch plan including gap analysis, pricing, and roadmap</li>
|
|
269
273
|
<li><strong><a href="./bubble-plugin-specification.md">Bubble.io Plugin Specification</a></strong> - Technical specification for Bubble.io integration</li>
|
|
270
274
|
</ul>
|
|
271
|
-
<h3><i class="ph ph-megaphone" aria-label="announce"></i> Marketing Materials</h3>
|
|
275
|
+
<h3><i style="font-size: 1.2em" class="ph ph-megaphone" aria-label="announce"></i> Marketing Materials</h3>
|
|
272
276
|
<ul>
|
|
273
277
|
<li><strong><a href="./launch-announcements.md">Launch Announcements</a></strong> - Ready-to-use templates for Product Hunt, Hacker News, social media, and more</li>
|
|
274
278
|
</ul>
|
|
275
279
|
<h2>Quick Links</h2>
|
|
276
280
|
<h3>Current Status</h3>
|
|
277
281
|
<ul>
|
|
278
|
-
<li><i class="ph ph-check-circle" aria-label="checked"></i> Core product stable (v1.5.21)</li>
|
|
279
|
-
<li><i class="ph ph-check-circle" aria-label="checked"></i> Documentation complete</li>
|
|
280
|
-
<li><i class="ph ph-check-circle" aria-label="checked"></i> npm package published</li>
|
|
281
|
-
<li><i class="ph ph-x-circle" aria-label="error"></i> Payment infrastructure</li>
|
|
282
|
-
<li><i class="ph ph-x-circle" aria-label="error"></i> Marketing website</li>
|
|
283
|
-
<li><i class="ph ph-x-circle" aria-label="error"></i> Bubble.io plugin</li>
|
|
282
|
+
<li><i style="font-size: 1.2em" class="ph ph-check-circle" aria-label="checked"></i> Core product stable (v1.5.21)</li>
|
|
283
|
+
<li><i style="font-size: 1.2em" class="ph ph-check-circle" aria-label="checked"></i> Documentation complete</li>
|
|
284
|
+
<li><i style="font-size: 1.2em" class="ph ph-check-circle" aria-label="checked"></i> npm package published</li>
|
|
285
|
+
<li><i style="font-size: 1.2em" class="ph ph-x-circle" aria-label="error"></i> Payment infrastructure</li>
|
|
286
|
+
<li><i style="font-size: 1.2em" class="ph ph-x-circle" aria-label="error"></i> Marketing website</li>
|
|
287
|
+
<li><i style="font-size: 1.2em" class="ph ph-x-circle" aria-label="error"></i> Bubble.io plugin</li>
|
|
284
288
|
</ul>
|
|
285
289
|
<h3>Next Steps</h3>
|
|
286
290
|
<ol>
|
|
@@ -6,6 +6,7 @@
|
|
|
6
6
|
<meta name="description" content="All references to the old client-side authentication system have been removed from @knowcode/doc-builder. The project now exclusively uses Supabase for...">
|
|
7
7
|
<title>Authentication System Cleanup Summary</title>
|
|
8
8
|
|
|
9
|
+
<meta name="generator" content="@knowcode/doc-builder by Knowcode Ltd">
|
|
9
10
|
<meta name="author" content="Lindsay Smith">
|
|
10
11
|
<meta name="keywords" content="documentation, markdown, static site generator, vercel, notion-style, supabase, authentication">
|
|
11
12
|
<meta name="robots" content="index, follow">
|
|
@@ -98,8 +99,8 @@
|
|
|
98
99
|
"name": "Knowcode Ltd",
|
|
99
100
|
"url": "https://knowcode.tech"
|
|
100
101
|
},
|
|
101
|
-
"datePublished": "2025-07-
|
|
102
|
-
"dateModified": "2025-07-
|
|
102
|
+
"datePublished": "2025-07-31T07:08:27.398Z",
|
|
103
|
+
"dateModified": "2025-07-31T07:08:27.398Z",
|
|
103
104
|
"mainEntityOfPage": {
|
|
104
105
|
"@type": "WebPage",
|
|
105
106
|
"@id": "https://doc-builder-delta.vercel.app/private/launch/auth-cleanup-summary.html"
|
|
@@ -144,7 +145,7 @@
|
|
|
144
145
|
|
|
145
146
|
<div class="header-actions">
|
|
146
147
|
<div class="deployment-info">
|
|
147
|
-
<span class="deployment-date" title="Built with doc-builder v1.9.
|
|
148
|
+
<span class="deployment-date" title="Built with doc-builder v1.9.11">Last updated: Jul 31, 2025, 07:08 AM UTC</span>
|
|
148
149
|
</div>
|
|
149
150
|
|
|
150
151
|
|
|
@@ -210,6 +211,7 @@
|
|
|
210
211
|
<a href="/guides/authentication-default-change.html" class="nav-item" data-tooltip="Starting from version 1.7.4, @knowcode/doc-builder now defaults to no authentication for all documentation sites."><i class="ph ph-file-text"></i> Authentication Default Change</a>
|
|
211
212
|
<a href="/guides/authentication-guide.html" class="nav-item" data-tooltip="@knowcode/doc-builder supports enterprise-grade authentication through Supabase - a secure, scalable authentication platform."><i class="ph ph-check-circle" style="color: #059669;"></i> Authentication Guide</a>
|
|
212
213
|
<a href="/guides/claude-workflow-guide.html" class="nav-item" data-tooltip="This guide demonstrates an efficient workflow for using Claude Code with a refined CLAUDE.md file to create high-quality documentation and deploy it..."><i class="ph ph-pencil-simple" style="color: #d97706;"></i> Claude Workflow Guide</a>
|
|
214
|
+
<a href="/guides/configuration-guide.html" class="nav-item" data-tooltip="This guide explains how @knowcode/doc-builder handles configuration files and settings."><i class="ph ph-check-circle" style="color: #059669;"></i> Configuration Guide</a>
|
|
213
215
|
<a href="/guides/documentation-standards.html" class="nav-item" data-tooltip="This document defines the documentation standards and conventions for the @knowcode/doc-builder project."><i class="ph ph-pencil-simple" style="color: #d97706;"></i> Documentation Standards</a>
|
|
214
216
|
<a href="/guides/html-embedding-guide.html" class="nav-item" data-tooltip="Starting from version 1.9.2, doc-builder treats HTML files ( and ) as attachments that are automatically copied to your output directory during the..."><i class="ph ph-check-circle" style="color: #059669;"></i> Html Embedding Guide</a>
|
|
215
217
|
<a href="/guides/image-modal-guide.html" class="nav-item" data-tooltip="When users click on any image in your generated documentation, it opens in a professional modal overlay with: Full-screen viewing experience Smooth..."><i class="ph ph-check-circle" style="color: #059669;"></i> Image Modal Guide</a>
|
|
@@ -220,6 +222,7 @@
|
|
|
220
222
|
<a href="/guides/search-engine-verification-guide.html" class="nav-item" data-tooltip="Search engine verification provides access to powerful webmaster tools:."><i class="ph ph-check-circle" style="color: #059669;"></i> Search Engine Verification Guide</a>
|
|
221
223
|
<a href="/guides/seo-guide.html" class="nav-item" data-tooltip="@knowcode/doc-builder includes comprehensive SEO (Search Engine Optimization) features to help your documentation rank better in search results and..."><i class="ph ph-check-circle" style="color: #059669;"></i> Seo Guide</a>
|
|
222
224
|
<a href="/guides/seo-optimization-guide.html" class="nav-item" data-tooltip="Comprehensive guide to optimizing documentation for search engines. Learn SEO best practices, use built-in features, and improve your rankings."><i class="ph ph-check-circle" style="color: #059669;"></i> Seo Optimization Guide</a>
|
|
225
|
+
<a href="/guides/supabase-authentication-complete-guide.html" class="nav-item" data-tooltip="@knowcode/doc-builder includes built-in Supabase authentication that provides enterprise-grade security with zero configuration."><i class="ph ph-check-circle" style="color: #059669;"></i> Supabase Authentication Complete Guide</a>
|
|
223
226
|
<a href="/guides/troubleshooting-guide.html" class="nav-item" data-tooltip="This guide helps you resolve common issues when using @knowcode/doc-builder."><i class="ph ph-check-circle" style="color: #059669;"></i> Troubleshooting Guide</a>
|
|
224
227
|
<a href="/guides/windows-setup-guide.html" class="nav-item" data-tooltip="This guide helps Windows users set up the complete AI-powered documentation workflow using Claude Code, @knowcode/doc-builder, and Vercel."><i class="ph ph-check-circle" style="color: #059669;"></i> Windows Setup Guide</a></div></div>
|
|
225
228
|
<div class="nav-section private-nav" data-level="1">
|
|
@@ -251,6 +254,7 @@
|
|
|
251
254
|
<i class="ph ph-caret-right collapse-icon"></i><i class="ph ph-chat-circle-dots"></i> Prompts
|
|
252
255
|
</a>
|
|
253
256
|
<div class="nav-content collapsed" id="nav-prompts-1">
|
|
257
|
+
<a href="/prompts/beautiful-documentation-design.html" class="nav-item" data-tooltip="🎨 Beautiful Documentation Design Guide."><i class="ph ph-check-circle" style="color: #059669;"></i> Beautiful Documentation Design</a>
|
|
254
258
|
<a href="/prompts/markdown-document-standards.html" class="nav-item" data-tooltip="Detailed introduction to the topic..."><i class="ph ph-pencil-simple" style="color: #d97706;"></i> Markdown Document Standards</a></div></div>
|
|
255
259
|
</nav>
|
|
256
260
|
<div class="resize-handle"></div>
|
|
@@ -265,27 +269,27 @@
|
|
|
265
269
|
<h2>Changes Made</h2>
|
|
266
270
|
<h3>1. Removed Files</h3>
|
|
267
271
|
<ul>
|
|
268
|
-
<li><i class="ph ph-check-circle" aria-label="checked"></i> <code>/assets/js/auth.js</code> - Old client-side auth script deleted</li>
|
|
272
|
+
<li><i style="font-size: 1.2em" class="ph ph-check-circle" aria-label="checked"></i> <code>/assets/js/auth.js</code> - Old client-side auth script deleted</li>
|
|
269
273
|
</ul>
|
|
270
274
|
<h3>2. Updated Documentation</h3>
|
|
271
275
|
<ul>
|
|
272
|
-
<li><i class="ph ph-check-circle" aria-label="checked"></i> <code>/docs/guides/authentication-guide.md</code> - Completely rewritten for Supabase only</li>
|
|
273
|
-
<li><i class="ph ph-check-circle" aria-label="checked"></i> <code>/docs/guides/public-site-deployment.md</code> - Updated migration section</li>
|
|
274
|
-
<li><i class="ph ph-check-circle" aria-label="checked"></i> <code>/docs/guides/supabase-auth-setup-guide.md</code> - Removed old auth references</li>
|
|
275
|
-
<li><i class="ph ph-check-circle" aria-label="checked"></i> <code>/docs/launch/bubble-plugin-specification.md</code> - Updated to Supabase auth</li>
|
|
276
|
-
<li><i class="ph ph-check-circle" aria-label="checked"></i> Created <code>/docs/guides/supabase-auth-implementation-completed.md</code> - Records completion</li>
|
|
276
|
+
<li><i style="font-size: 1.2em" class="ph ph-check-circle" aria-label="checked"></i> <code>/docs/guides/authentication-guide.md</code> - Completely rewritten for Supabase only</li>
|
|
277
|
+
<li><i style="font-size: 1.2em" class="ph ph-check-circle" aria-label="checked"></i> <code>/docs/guides/public-site-deployment.md</code> - Updated migration section</li>
|
|
278
|
+
<li><i style="font-size: 1.2em" class="ph ph-check-circle" aria-label="checked"></i> <code>/docs/guides/supabase-auth-setup-guide.md</code> - Removed old auth references</li>
|
|
279
|
+
<li><i style="font-size: 1.2em" class="ph ph-check-circle" aria-label="checked"></i> <code>/docs/launch/bubble-plugin-specification.md</code> - Updated to Supabase auth</li>
|
|
280
|
+
<li><i style="font-size: 1.2em" class="ph ph-check-circle" aria-label="checked"></i> Created <code>/docs/guides/supabase-auth-implementation-completed.md</code> - Records completion</li>
|
|
277
281
|
</ul>
|
|
278
282
|
<h3>3. CLI Updates</h3>
|
|
279
283
|
<ul>
|
|
280
|
-
<li><i class="ph ph-check-circle" aria-label="checked"></i> Updated help text in <code>cli.js</code> to reference Supabase authentication</li>
|
|
281
|
-
<li><i class="ph ph-check-circle" aria-label="checked"></i> Removed "password protection" terminology</li>
|
|
282
|
-
<li><i class="ph ph-check-circle" aria-label="checked"></i> All auth references now point to Supabase</li>
|
|
284
|
+
<li><i style="font-size: 1.2em" class="ph ph-check-circle" aria-label="checked"></i> Updated help text in <code>cli.js</code> to reference Supabase authentication</li>
|
|
285
|
+
<li><i style="font-size: 1.2em" class="ph ph-check-circle" aria-label="checked"></i> Removed "password protection" terminology</li>
|
|
286
|
+
<li><i style="font-size: 1.2em" class="ph ph-check-circle" aria-label="checked"></i> All auth references now point to Supabase</li>
|
|
283
287
|
</ul>
|
|
284
288
|
<h3>4. Configuration Changes</h3>
|
|
285
289
|
<ul>
|
|
286
|
-
<li><i class="ph ph-check-circle" aria-label="checked"></i> Default config has <code>authentication: false</code></li>
|
|
287
|
-
<li><i class="ph ph-check-circle" aria-label="checked"></i> Notion preset has <code>authentication: false</code> </li>
|
|
288
|
-
<li><i class="ph ph-check-circle" aria-label="checked"></i> Only Supabase auth can be enabled with <code>authentication: 'supabase'</code></li>
|
|
290
|
+
<li><i style="font-size: 1.2em" class="ph ph-check-circle" aria-label="checked"></i> Default config has <code>authentication: false</code></li>
|
|
291
|
+
<li><i style="font-size: 1.2em" class="ph ph-check-circle" aria-label="checked"></i> Notion preset has <code>authentication: false</code> </li>
|
|
292
|
+
<li><i style="font-size: 1.2em" class="ph ph-check-circle" aria-label="checked"></i> Only Supabase auth can be enabled with <code>authentication: 'supabase'</code></li>
|
|
289
293
|
</ul>
|
|
290
294
|
<h2>Current State</h2>
|
|
291
295
|
<h3>Authentication Options</h3>
|
|
@@ -322,11 +326,11 @@ auth: {
|
|
|
322
326
|
</ol>
|
|
323
327
|
<h2>No Traces Remain</h2>
|
|
324
328
|
<ul>
|
|
325
|
-
<li><i class="ph ph-check-circle" aria-label="checked"></i> No username/password fields in config</li>
|
|
326
|
-
<li><i class="ph ph-check-circle" aria-label="checked"></i> No client-side credential checking</li>
|
|
327
|
-
<li><i class="ph ph-check-circle" aria-label="checked"></i> No references to "basic auth" in active code</li>
|
|
328
|
-
<li><i class="ph ph-check-circle" aria-label="checked"></i> No old auth.js files</li>
|
|
329
|
-
<li><i class="ph ph-check-circle" aria-label="checked"></i> All documentation updated</li>
|
|
329
|
+
<li><i style="font-size: 1.2em" class="ph ph-check-circle" aria-label="checked"></i> No username/password fields in config</li>
|
|
330
|
+
<li><i style="font-size: 1.2em" class="ph ph-check-circle" aria-label="checked"></i> No client-side credential checking</li>
|
|
331
|
+
<li><i style="font-size: 1.2em" class="ph ph-check-circle" aria-label="checked"></i> No references to "basic auth" in active code</li>
|
|
332
|
+
<li><i style="font-size: 1.2em" class="ph ph-check-circle" aria-label="checked"></i> No old auth.js files</li>
|
|
333
|
+
<li><i style="font-size: 1.2em" class="ph ph-check-circle" aria-label="checked"></i> All documentation updated</li>
|
|
330
334
|
</ul>
|
|
331
335
|
<p>The cleanup is complete. @knowcode/doc-builder now has a clean, secure authentication system powered exclusively by Supabase.</p>
|
|
332
336
|
|
|
@@ -6,6 +6,7 @@
|
|
|
6
6
|
<meta name="description" content="This document outlines the technical specification for creating a Bubble.io plugin that integrates @knowcode/doc-builder, enabling Bubble developers to...">
|
|
7
7
|
<title>Bubble.io Plugin Specification | @knowcode/doc-builder</title>
|
|
8
8
|
|
|
9
|
+
<meta name="generator" content="@knowcode/doc-builder by Knowcode Ltd">
|
|
9
10
|
<meta name="author" content="Lindsay Smith">
|
|
10
11
|
<meta name="keywords" content="documentation, markdown, static site generator, vercel, notion-style, text, bubble">
|
|
11
12
|
<meta name="robots" content="index, follow">
|
|
@@ -98,8 +99,8 @@
|
|
|
98
99
|
"name": "Knowcode Ltd",
|
|
99
100
|
"url": "https://knowcode.tech"
|
|
100
101
|
},
|
|
101
|
-
"datePublished": "2025-07-
|
|
102
|
-
"dateModified": "2025-07-
|
|
102
|
+
"datePublished": "2025-07-31T07:08:27.400Z",
|
|
103
|
+
"dateModified": "2025-07-31T07:08:27.400Z",
|
|
103
104
|
"mainEntityOfPage": {
|
|
104
105
|
"@type": "WebPage",
|
|
105
106
|
"@id": "https://doc-builder-delta.vercel.app/private/launch/bubble-plugin-specification.html"
|
|
@@ -144,7 +145,7 @@
|
|
|
144
145
|
|
|
145
146
|
<div class="header-actions">
|
|
146
147
|
<div class="deployment-info">
|
|
147
|
-
<span class="deployment-date" title="Built with doc-builder v1.9.
|
|
148
|
+
<span class="deployment-date" title="Built with doc-builder v1.9.11">Last updated: Jul 31, 2025, 07:08 AM UTC</span>
|
|
148
149
|
</div>
|
|
149
150
|
|
|
150
151
|
|
|
@@ -210,6 +211,7 @@
|
|
|
210
211
|
<a href="/guides/authentication-default-change.html" class="nav-item" data-tooltip="Starting from version 1.7.4, @knowcode/doc-builder now defaults to no authentication for all documentation sites."><i class="ph ph-file-text"></i> Authentication Default Change</a>
|
|
211
212
|
<a href="/guides/authentication-guide.html" class="nav-item" data-tooltip="@knowcode/doc-builder supports enterprise-grade authentication through Supabase - a secure, scalable authentication platform."><i class="ph ph-check-circle" style="color: #059669;"></i> Authentication Guide</a>
|
|
212
213
|
<a href="/guides/claude-workflow-guide.html" class="nav-item" data-tooltip="This guide demonstrates an efficient workflow for using Claude Code with a refined CLAUDE.md file to create high-quality documentation and deploy it..."><i class="ph ph-pencil-simple" style="color: #d97706;"></i> Claude Workflow Guide</a>
|
|
214
|
+
<a href="/guides/configuration-guide.html" class="nav-item" data-tooltip="This guide explains how @knowcode/doc-builder handles configuration files and settings."><i class="ph ph-check-circle" style="color: #059669;"></i> Configuration Guide</a>
|
|
213
215
|
<a href="/guides/documentation-standards.html" class="nav-item" data-tooltip="This document defines the documentation standards and conventions for the @knowcode/doc-builder project."><i class="ph ph-pencil-simple" style="color: #d97706;"></i> Documentation Standards</a>
|
|
214
216
|
<a href="/guides/html-embedding-guide.html" class="nav-item" data-tooltip="Starting from version 1.9.2, doc-builder treats HTML files ( and ) as attachments that are automatically copied to your output directory during the..."><i class="ph ph-check-circle" style="color: #059669;"></i> Html Embedding Guide</a>
|
|
215
217
|
<a href="/guides/image-modal-guide.html" class="nav-item" data-tooltip="When users click on any image in your generated documentation, it opens in a professional modal overlay with: Full-screen viewing experience Smooth..."><i class="ph ph-check-circle" style="color: #059669;"></i> Image Modal Guide</a>
|
|
@@ -220,6 +222,7 @@
|
|
|
220
222
|
<a href="/guides/search-engine-verification-guide.html" class="nav-item" data-tooltip="Search engine verification provides access to powerful webmaster tools:."><i class="ph ph-check-circle" style="color: #059669;"></i> Search Engine Verification Guide</a>
|
|
221
223
|
<a href="/guides/seo-guide.html" class="nav-item" data-tooltip="@knowcode/doc-builder includes comprehensive SEO (Search Engine Optimization) features to help your documentation rank better in search results and..."><i class="ph ph-check-circle" style="color: #059669;"></i> Seo Guide</a>
|
|
222
224
|
<a href="/guides/seo-optimization-guide.html" class="nav-item" data-tooltip="Comprehensive guide to optimizing documentation for search engines. Learn SEO best practices, use built-in features, and improve your rankings."><i class="ph ph-check-circle" style="color: #059669;"></i> Seo Optimization Guide</a>
|
|
225
|
+
<a href="/guides/supabase-authentication-complete-guide.html" class="nav-item" data-tooltip="@knowcode/doc-builder includes built-in Supabase authentication that provides enterprise-grade security with zero configuration."><i class="ph ph-check-circle" style="color: #059669;"></i> Supabase Authentication Complete Guide</a>
|
|
223
226
|
<a href="/guides/troubleshooting-guide.html" class="nav-item" data-tooltip="This guide helps you resolve common issues when using @knowcode/doc-builder."><i class="ph ph-check-circle" style="color: #059669;"></i> Troubleshooting Guide</a>
|
|
224
227
|
<a href="/guides/windows-setup-guide.html" class="nav-item" data-tooltip="This guide helps Windows users set up the complete AI-powered documentation workflow using Claude Code, @knowcode/doc-builder, and Vercel."><i class="ph ph-check-circle" style="color: #059669;"></i> Windows Setup Guide</a></div></div>
|
|
225
228
|
<div class="nav-section private-nav" data-level="1">
|
|
@@ -251,6 +254,7 @@
|
|
|
251
254
|
<i class="ph ph-caret-right collapse-icon"></i><i class="ph ph-chat-circle-dots"></i> Prompts
|
|
252
255
|
</a>
|
|
253
256
|
<div class="nav-content collapsed" id="nav-prompts-1">
|
|
257
|
+
<a href="/prompts/beautiful-documentation-design.html" class="nav-item" data-tooltip="🎨 Beautiful Documentation Design Guide."><i class="ph ph-check-circle" style="color: #059669;"></i> Beautiful Documentation Design</a>
|
|
254
258
|
<a href="/prompts/markdown-document-standards.html" class="nav-item" data-tooltip="Detailed introduction to the topic..."><i class="ph ph-pencil-simple" style="color: #d97706;"></i> Markdown Document Standards</a></div></div>
|
|
255
259
|
</nav>
|
|
256
260
|
<div class="resize-handle"></div>
|
|
@@ -6,6 +6,7 @@
|
|
|
6
6
|
<meta name="description" content="@knowcode/doc-builder has reached a functional MVP state with 21 published versions on npm. To transition from an open-source tool to a fully launched...">
|
|
7
7
|
<title>Go-to-Market Strategy & Product Launch Plan</title>
|
|
8
8
|
|
|
9
|
+
<meta name="generator" content="@knowcode/doc-builder by Knowcode Ltd">
|
|
9
10
|
<meta name="author" content="Lindsay Smith">
|
|
10
11
|
<meta name="keywords" content="documentation, markdown, static site generator, vercel, notion-style, launch, bubble">
|
|
11
12
|
<meta name="robots" content="index, follow">
|
|
@@ -98,8 +99,8 @@
|
|
|
98
99
|
"name": "Knowcode Ltd",
|
|
99
100
|
"url": "https://knowcode.tech"
|
|
100
101
|
},
|
|
101
|
-
"datePublished": "2025-07-
|
|
102
|
-
"dateModified": "2025-07-
|
|
102
|
+
"datePublished": "2025-07-31T07:08:27.403Z",
|
|
103
|
+
"dateModified": "2025-07-31T07:08:27.403Z",
|
|
103
104
|
"mainEntityOfPage": {
|
|
104
105
|
"@type": "WebPage",
|
|
105
106
|
"@id": "https://doc-builder-delta.vercel.app/private/launch/go-to-market-strategy.html"
|
|
@@ -144,7 +145,7 @@
|
|
|
144
145
|
|
|
145
146
|
<div class="header-actions">
|
|
146
147
|
<div class="deployment-info">
|
|
147
|
-
<span class="deployment-date" title="Built with doc-builder v1.9.
|
|
148
|
+
<span class="deployment-date" title="Built with doc-builder v1.9.11">Last updated: Jul 31, 2025, 07:08 AM UTC</span>
|
|
148
149
|
</div>
|
|
149
150
|
|
|
150
151
|
|
|
@@ -210,6 +211,7 @@
|
|
|
210
211
|
<a href="/guides/authentication-default-change.html" class="nav-item" data-tooltip="Starting from version 1.7.4, @knowcode/doc-builder now defaults to no authentication for all documentation sites."><i class="ph ph-file-text"></i> Authentication Default Change</a>
|
|
211
212
|
<a href="/guides/authentication-guide.html" class="nav-item" data-tooltip="@knowcode/doc-builder supports enterprise-grade authentication through Supabase - a secure, scalable authentication platform."><i class="ph ph-check-circle" style="color: #059669;"></i> Authentication Guide</a>
|
|
212
213
|
<a href="/guides/claude-workflow-guide.html" class="nav-item" data-tooltip="This guide demonstrates an efficient workflow for using Claude Code with a refined CLAUDE.md file to create high-quality documentation and deploy it..."><i class="ph ph-pencil-simple" style="color: #d97706;"></i> Claude Workflow Guide</a>
|
|
214
|
+
<a href="/guides/configuration-guide.html" class="nav-item" data-tooltip="This guide explains how @knowcode/doc-builder handles configuration files and settings."><i class="ph ph-check-circle" style="color: #059669;"></i> Configuration Guide</a>
|
|
213
215
|
<a href="/guides/documentation-standards.html" class="nav-item" data-tooltip="This document defines the documentation standards and conventions for the @knowcode/doc-builder project."><i class="ph ph-pencil-simple" style="color: #d97706;"></i> Documentation Standards</a>
|
|
214
216
|
<a href="/guides/html-embedding-guide.html" class="nav-item" data-tooltip="Starting from version 1.9.2, doc-builder treats HTML files ( and ) as attachments that are automatically copied to your output directory during the..."><i class="ph ph-check-circle" style="color: #059669;"></i> Html Embedding Guide</a>
|
|
215
217
|
<a href="/guides/image-modal-guide.html" class="nav-item" data-tooltip="When users click on any image in your generated documentation, it opens in a professional modal overlay with: Full-screen viewing experience Smooth..."><i class="ph ph-check-circle" style="color: #059669;"></i> Image Modal Guide</a>
|
|
@@ -220,6 +222,7 @@
|
|
|
220
222
|
<a href="/guides/search-engine-verification-guide.html" class="nav-item" data-tooltip="Search engine verification provides access to powerful webmaster tools:."><i class="ph ph-check-circle" style="color: #059669;"></i> Search Engine Verification Guide</a>
|
|
221
223
|
<a href="/guides/seo-guide.html" class="nav-item" data-tooltip="@knowcode/doc-builder includes comprehensive SEO (Search Engine Optimization) features to help your documentation rank better in search results and..."><i class="ph ph-check-circle" style="color: #059669;"></i> Seo Guide</a>
|
|
222
224
|
<a href="/guides/seo-optimization-guide.html" class="nav-item" data-tooltip="Comprehensive guide to optimizing documentation for search engines. Learn SEO best practices, use built-in features, and improve your rankings."><i class="ph ph-check-circle" style="color: #059669;"></i> Seo Optimization Guide</a>
|
|
225
|
+
<a href="/guides/supabase-authentication-complete-guide.html" class="nav-item" data-tooltip="@knowcode/doc-builder includes built-in Supabase authentication that provides enterprise-grade security with zero configuration."><i class="ph ph-check-circle" style="color: #059669;"></i> Supabase Authentication Complete Guide</a>
|
|
223
226
|
<a href="/guides/troubleshooting-guide.html" class="nav-item" data-tooltip="This guide helps you resolve common issues when using @knowcode/doc-builder."><i class="ph ph-check-circle" style="color: #059669;"></i> Troubleshooting Guide</a>
|
|
224
227
|
<a href="/guides/windows-setup-guide.html" class="nav-item" data-tooltip="This guide helps Windows users set up the complete AI-powered documentation workflow using Claude Code, @knowcode/doc-builder, and Vercel."><i class="ph ph-check-circle" style="color: #059669;"></i> Windows Setup Guide</a></div></div>
|
|
225
228
|
<div class="nav-section private-nav" data-level="1">
|
|
@@ -251,6 +254,7 @@
|
|
|
251
254
|
<i class="ph ph-caret-right collapse-icon"></i><i class="ph ph-chat-circle-dots"></i> Prompts
|
|
252
255
|
</a>
|
|
253
256
|
<div class="nav-content collapsed" id="nav-prompts-1">
|
|
257
|
+
<a href="/prompts/beautiful-documentation-design.html" class="nav-item" data-tooltip="🎨 Beautiful Documentation Design Guide."><i class="ph ph-check-circle" style="color: #059669;"></i> Beautiful Documentation Design</a>
|
|
254
258
|
<a href="/prompts/markdown-document-standards.html" class="nav-item" data-tooltip="Detailed introduction to the topic..."><i class="ph ph-pencil-simple" style="color: #d97706;"></i> Markdown Document Standards</a></div></div>
|
|
255
259
|
</nav>
|
|
256
260
|
<div class="resize-handle"></div>
|
|
@@ -263,7 +267,7 @@
|
|
|
263
267
|
<h2>Executive Summary</h2>
|
|
264
268
|
<p>@knowcode/doc-builder has reached a functional MVP state with 21 published versions on npm. To transition from an open-source tool to a fully launched commercial product, we need to address several key areas including monetization strategy, platform integrations, marketing infrastructure, and enterprise features.</p>
|
|
265
269
|
<h2>Current State Analysis</h2>
|
|
266
|
-
<h3><i class="ph ph-check-circle" aria-label="checked"></i> What We Have</h3>
|
|
270
|
+
<h3><i style="font-size: 1.2em" class="ph ph-check-circle" aria-label="checked"></i> What We Have</h3>
|
|
267
271
|
<h4>Core Product</h4>
|
|
268
272
|
<ul>
|
|
269
273
|
<li><strong>Stable npm package</strong> (v1.5.21) with 21 releases</li>
|
|
@@ -289,7 +293,7 @@
|
|
|
289
293
|
<li><strong>Command-line interface</strong> with intuitive commands</li>
|
|
290
294
|
<li><strong>Zero-configuration</strong> setup for ease of use</li>
|
|
291
295
|
</ul>
|
|
292
|
-
<h3><i class="ph ph-x-circle" aria-label="error"></i> What's Missing for Full Launch</h3>
|
|
296
|
+
<h3><i style="font-size: 1.2em" class="ph ph-x-circle" aria-label="error"></i> What's Missing for Full Launch</h3>
|
|
293
297
|
<h2>Gap Analysis</h2>
|
|
294
298
|
<h3>1. Monetization Infrastructure</h3>
|
|
295
299
|
<h4>Payment Processing</h4>
|