botdocs 0.1.1 → 0.2.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.
package/README.md CHANGED
@@ -1,5 +1,7 @@
1
1
  # Botdocs
2
2
 
3
+ [![npm version](https://img.shields.io/npm/v/botdocs.svg)](https://www.npmjs.com/package/botdocs)
4
+
3
5
  Convert markdown documentation into beautiful static sites with AI-powered semantic search — no backend required.
4
6
 
5
7
  ## Features
@@ -33,8 +35,35 @@ botdocs ./docs -o ./public
33
35
 
34
36
  # Verbose logging
35
37
  botdocs ./docs -v
38
+
39
+ # Use a specific theme
40
+ botdocs ./docs -t material
41
+
42
+ # Custom config file
43
+ botdocs ./docs -c ./my-config.json
44
+
45
+ # Combine multiple options
46
+ botdocs ./docs -o ./public -t slate -v
36
47
  ```
37
48
 
49
+ ### CLI Options
50
+
51
+ | Option | Alias | Description | Default |
52
+ |--------|-------|-------------|---------|
53
+ | `--output <dir>` | `-o` | Output directory for generated site | `output` |
54
+ | `--no-chat` | | Disable AI chatbot functionality | `false` |
55
+ | `--config <file>` | `-c` | Path to config file | `botdocs.config.json` |
56
+ | `--theme <theme>` | `-t` | Theme to use | `classic` |
57
+ | `--verbose` | `-v` | Enable verbose logging | `false` |
58
+
59
+ ### Available Themes
60
+
61
+ - **classic** - Clean, professional theme (default)
62
+ - **material** - Material Design theme
63
+ - **minimal** - Clean, minimalist theme
64
+ - **slate** - Dark slate theme
65
+ - **modern** - Modern documentation theme
66
+
38
67
  ## Configuration
39
68
 
40
69
  Create `botdocs.config.json` in your docs directory:
@@ -43,15 +72,31 @@ Create `botdocs.config.json` in your docs directory:
43
72
  {
44
73
  "title": "My Documentation",
45
74
  "description": "Project docs",
75
+ "theme": "classic",
76
+ "attribution": true,
46
77
  "chat": { "enabled": true },
47
78
  "build": {
48
79
  "chunkSize": 500,
49
80
  "chunkOverlap": 50,
50
- "topK": 5
81
+ "topK": 3
51
82
  }
52
83
  }
53
84
  ```
54
85
 
86
+ ### Configuration Options
87
+
88
+ | Option | Type | Default | Description |
89
+ |--------|------|---------|-------------|
90
+ | `title` | string | `"Documentation"` | Site title |
91
+ | `description` | string | `"Project documentation"` | Site description |
92
+ | `theme` | string | `"classic"` | Theme to use (classic, material, minimal, slate, modern) |
93
+ | `attribution` | boolean | `true` | Show "Built with Botdocs" footer link |
94
+ | `chat.enabled` | boolean | `true` | Enable AI chatbot |
95
+ | `chat.welcomeMessage` | string | `"Ask me anything about the docs!"` | Chatbot welcome message |
96
+ | `build.chunkSize` | number | `500` | Text chunk size for embeddings |
97
+ | `build.chunkOverlap` | number | `50` | Overlap between chunks |
98
+ | `build.topK` | number | `3` | Number of results to return |
99
+
55
100
  ## Front Matter
56
101
 
57
102
  ```markdown
@@ -13,7 +13,7 @@ const __dirname = dirname(__filename);
13
13
  * Main build orchestrator
14
14
  */
15
15
  export async function build(options) {
16
- const { inputDir, outputDir, chatEnabled, configPath, verbose } = options;
16
+ const { inputDir, outputDir, chatEnabled, configPath, verbose, theme } = options;
17
17
  // Validate input directory
18
18
  if (!existsSync(inputDir)) {
19
19
  throw new Error(`Input directory does not exist: ${inputDir}`);
@@ -25,6 +25,10 @@ export async function build(options) {
25
25
  config.chat = config.chat || {};
26
26
  config.chat.enabled = chatEnabled;
27
27
  }
28
+ // Override theme if specified in CLI
29
+ if (theme) {
30
+ config.theme = theme;
31
+ }
28
32
  if (verbose) {
29
33
  console.log('Configuration:', JSON.stringify(config, null, 2));
30
34
  }
@@ -107,9 +111,12 @@ export async function build(options) {
107
111
  console.log('Copying styles...');
108
112
  // From dist/src/builder, go to project root, then to src/styles
109
113
  const stylesDir = resolve(__dirname, '../../../src/styles');
114
+ const themesDir = join(stylesDir, 'themes');
110
115
  const outputCssDir = join(assetsDir, 'css');
111
- // Combine all CSS files into one bundle
112
- const cssFiles = ['main.css', 'themes.css', 'chat.css'];
116
+ // Determine which theme to use
117
+ const selectedTheme = config.theme || defaultConfig.theme || 'classic';
118
+ // Combine CSS files: base styles + selected theme + chat
119
+ const cssFiles = ['themes.css', 'chat.css'];
113
120
  let bundledCss = '';
114
121
  for (const cssFile of cssFiles) {
115
122
  const cssPath = join(stylesDir, cssFile);
@@ -117,6 +124,21 @@ export async function build(options) {
117
124
  bundledCss += readFileSync(cssPath, 'utf-8') + '\n\n';
118
125
  }
119
126
  }
127
+ // Add selected theme CSS
128
+ const themePath = join(themesDir, `${selectedTheme}.css`);
129
+ if (existsSync(themePath)) {
130
+ bundledCss += readFileSync(themePath, 'utf-8') + '\n\n';
131
+ if (verbose) {
132
+ console.log(`Using theme: ${selectedTheme}`);
133
+ }
134
+ }
135
+ else {
136
+ console.warn(`Theme '${selectedTheme}' not found, falling back to classic`);
137
+ const fallbackPath = join(themesDir, 'classic.css');
138
+ if (existsSync(fallbackPath)) {
139
+ bundledCss += readFileSync(fallbackPath, 'utf-8') + '\n\n';
140
+ }
141
+ }
120
142
  writeFileSync(join(outputCssDir, 'bundle.css'), bundledCss, 'utf-8');
121
143
  if (verbose) {
122
144
  console.log('Styles copied');
@@ -92,6 +92,7 @@ export class SiteGenerator {
92
92
  content,
93
93
  navigation: this.renderNavigation(navigation, doc.url),
94
94
  chatEnabled: config.chat?.enabled,
95
+ attribution: config.attribution !== false, // defaults to true
95
96
  });
96
97
  // Write HTML file
97
98
  const outputPath = join(outputDir, doc.relativePath.replace(/\.md$/, '.html'));
@@ -18,6 +18,7 @@ program
18
18
  .option('-o, --output <dir>', 'Output directory for generated site', defaultOptions.output)
19
19
  .option('--no-chat', 'Disable AI chatbot functionality')
20
20
  .option('-c, --config <file>', 'Path to config file (botdocs.config.json)')
21
+ .option('-t, --theme <theme>', 'Theme to use (classic, material, minimal, slate, modern)', defaultOptions.theme)
21
22
  .option('-v, --verbose', 'Enable verbose logging')
22
23
  .action(async (input, options) => {
23
24
  try {
@@ -28,6 +29,7 @@ program
28
29
  console.log(`Input: ${inputDir}`);
29
30
  console.log(`Output: ${outputDir}`);
30
31
  console.log(`Chat enabled: ${!options.noChat}`);
32
+ console.log(`Theme: ${options.theme || defaultOptions.theme}`);
31
33
  }
32
34
  await build({
33
35
  inputDir,
@@ -35,6 +37,7 @@ program
35
37
  chatEnabled: !options.noChat,
36
38
  configPath: options.config,
37
39
  verbose: options.verbose || false,
40
+ theme: options.theme,
38
41
  });
39
42
  console.log('Build complete!');
40
43
  console.log(`Site generated at: ${outputDir}`);
@@ -1,7 +1,9 @@
1
+ export type Theme = 'classic' | 'material' | 'minimal' | 'slate' | 'modern';
1
2
  export interface CliOptions {
2
3
  output?: string;
3
4
  noChat?: boolean;
4
5
  config?: string;
5
6
  verbose?: boolean;
7
+ theme?: Theme;
6
8
  }
7
9
  export declare const defaultOptions: Partial<CliOptions>;
@@ -2,4 +2,5 @@ export const defaultOptions = {
2
2
  output: 'output',
3
3
  noChat: false,
4
4
  verbose: false,
5
+ theme: 'classic',
5
6
  };
@@ -1,9 +1,9 @@
1
+ export type Theme = 'classic' | 'material' | 'minimal' | 'slate' | 'modern';
1
2
  export interface BotdocsConfig {
2
3
  title?: string;
3
4
  description?: string;
4
- theme?: {
5
- primaryColor?: string;
6
- };
5
+ theme?: Theme;
6
+ attribution?: boolean;
7
7
  chat?: {
8
8
  enabled?: boolean;
9
9
  welcomeMessage?: string;
@@ -20,5 +20,6 @@ export interface BuildOptions {
20
20
  chatEnabled: boolean;
21
21
  configPath?: string;
22
22
  verbose: boolean;
23
+ theme?: Theme;
23
24
  }
24
25
  export declare const defaultConfig: BotdocsConfig;
@@ -1,9 +1,8 @@
1
1
  export const defaultConfig = {
2
2
  title: 'Documentation',
3
3
  description: 'Project documentation',
4
- theme: {
5
- primaryColor: '#3b82f6',
6
- },
4
+ theme: 'classic',
5
+ attribution: true,
7
6
  chat: {
8
7
  enabled: true,
9
8
  welcomeMessage: 'Ask me anything about the docs!',
@@ -11,6 +10,6 @@ export const defaultConfig = {
11
10
  build: {
12
11
  chunkSize: 500,
13
12
  chunkOverlap: 50,
14
- topK: 5,
13
+ topK: 3,
15
14
  },
16
15
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "botdocs",
3
- "version": "0.1.1",
3
+ "version": "0.2.0",
4
4
  "description": "An npm CLI tool that converts markdown documentation into a static website with an optional client-side AI chatbot",
5
5
  "author": "usr-wwelsh <https://wwel.sh>",
6
6
  "license": "MIT",
@@ -503,6 +503,29 @@ img {
503
503
  font-size: 0.875rem;
504
504
  }
505
505
 
506
+ /* Footer Attribution */
507
+ .botdocs-attribution {
508
+ margin-top: 4rem;
509
+ padding-top: 2rem;
510
+ border-top: 1px solid var(--border-color);
511
+ text-align: center;
512
+ font-size: 0.875rem;
513
+ color: var(--text-secondary);
514
+ opacity: 0.8;
515
+ }
516
+
517
+ .botdocs-attribution a {
518
+ color: var(--text-secondary);
519
+ text-decoration: none;
520
+ font-weight: 500;
521
+ transition: color 0.2s;
522
+ }
523
+
524
+ .botdocs-attribution a:hover {
525
+ color: var(--link-color);
526
+ text-decoration: none;
527
+ }
528
+
506
529
  /* Responsive */
507
530
  @media (max-width: 768px) {
508
531
  .sidebar {