@voicenter-team/nuxt-llms-generator 0.1.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 ADDED
@@ -0,0 +1,617 @@
1
+ # ๐Ÿค– LLMS Documentation Generator for Nuxt 3
2
+
3
+ **Transform your Umbraco CMS content into AI-optimized documentation following the 2024 LLMS.txt standard**
4
+
5
+ [![TypeScript](https://img.shields.io/badge/TypeScript-007ACC?style=flat&logo=typescript&logoColor=white)](https://typescript.org)
6
+ [![Nuxt 3](https://img.shields.io/badge/Nuxt-00DC82?style=flat&logo=nuxt.js&logoColor=white)](https://nuxt.com)
7
+ [![Claude AI](https://img.shields.io/badge/Claude_AI-FF6B35?style=flat&logo=anthropic&logoColor=white)](https://claude.ai)
8
+ [![MIT License](https://img.shields.io/badge/License-MIT-green.svg)](LICENSE)
9
+
10
+ Generate high-quality, AI-optimized markdown documentation from your Umbraco CMS content using Claude AI. Perfect for creating LLMS.txt files that help AI systems understand your website.
11
+
12
+ ## ๐Ÿ”„ How It Works
13
+
14
+ ```mermaid
15
+ flowchart TB
16
+ subgraph "INPUT"
17
+ JSON[UmbracoData.json<br/>๐Ÿ“‹ CMS Content]
18
+ CONFIG[nuxt.config.ts<br/>โš™๏ธ Configuration]
19
+ API_KEY[๐Ÿ”‘ Anthropic API Key]
20
+ end
21
+
22
+ subgraph "PROCESSING PIPELINE"
23
+ START([๐Ÿš€ Build Process Starts])
24
+
25
+ subgraph "1๏ธโƒฃ INITIALIZATION"
26
+ LOAD[Load Configuration]
27
+ VALIDATE[Validate API Connection]
28
+ CACHE_CHECK[Check Template Cache]
29
+ end
30
+
31
+ subgraph "2๏ธโƒฃ CONTENT ANALYSIS"
32
+ FILTER[Filter Visible Pages<br/>๐Ÿ“Š Skip hidePage: "1"]
33
+ EXTRACT[Extract Page Content<br/>๐Ÿ” JSONPath Resolution]
34
+ HASH[Generate Structure Hash<br/>๐Ÿ—๏ธ Detect Changes]
35
+ end
36
+
37
+ subgraph "3๏ธโƒฃ TEMPLATE GENERATION"
38
+ CACHE_HIT{Cache Hit?}
39
+ CLAUDE[๐Ÿค– Claude AI Analysis<br/>Semantic Understanding]
40
+ TEMPLATE[Generate Mustache Template<br/>๐Ÿ“ AI-Optimized Structure]
41
+ STORE_CACHE[๐Ÿ’พ Store in Cache]
42
+ end
43
+
44
+ subgraph "4๏ธโƒฃ CLEANUP & OPTIMIZATION"
45
+ CLEANUP[๐Ÿงน Orphaned Template Cleanup<br/>Remove deleted/hidden pages]
46
+ HTML_CLEAN[๐Ÿ”ง HTML-to-Markdown<br/>Clean Artifacts & Entities]
47
+ end
48
+
49
+ subgraph "5๏ธโƒฃ FILE GENERATION"
50
+ RENDER[Render Templates<br/>๐ŸŽจ Mustache + Data]
51
+ POST_PROCESS[Post-Process Markdown<br/>โœจ Final Quality Pass]
52
+ end
53
+ end
54
+
55
+ subgraph "OUTPUT FILES"
56
+ LLMS_TXT[๐Ÿ“„ llms.txt<br/>Navigation Index]
57
+ LLMS_FULL[๐Ÿ“„ llms-full.txt<br/>Complete Documentation]
58
+ MD_FILES[๐Ÿ“ Individual .md Files<br/>Per-Page Documentation]
59
+ end
60
+
61
+ subgraph "MULTI-SITE SUPPORT"
62
+ ENV1[๐ŸŒ Site 1<br/>SITE_ENV=main]
63
+ ENV2[๐ŸŒ Site 2<br/>SITE_ENV=partner]
64
+ ENV3[๐ŸŒ Site 3<br/>SITE_ENV=staging]
65
+
66
+ CACHE1[๐Ÿ’พ .llms-cache/main/]
67
+ CACHE2[๐Ÿ’พ .llms-cache/partner/]
68
+ CACHE3[๐Ÿ’พ .llms-cache/staging/]
69
+
70
+ OUT1[๐Ÿ“‚ .output/llms/main/]
71
+ OUT2[๐Ÿ“‚ .output/llms/partner/]
72
+ OUT3[๐Ÿ“‚ .output/llms/staging/]
73
+ end
74
+
75
+ %% Flow connections
76
+ JSON --> START
77
+ CONFIG --> START
78
+ API_KEY --> START
79
+
80
+ START --> LOAD
81
+ LOAD --> VALIDATE
82
+ VALIDATE --> CACHE_CHECK
83
+
84
+ CACHE_CHECK --> FILTER
85
+ FILTER --> EXTRACT
86
+ EXTRACT --> HASH
87
+
88
+ HASH --> CACHE_HIT
89
+ CACHE_HIT -->|โŒ No| CLAUDE
90
+ CACHE_HIT -->|โœ… Yes| CLEANUP
91
+
92
+ CLAUDE --> TEMPLATE
93
+ TEMPLATE --> STORE_CACHE
94
+ STORE_CACHE --> CLEANUP
95
+
96
+ CLEANUP --> HTML_CLEAN
97
+ HTML_CLEAN --> RENDER
98
+ RENDER --> POST_PROCESS
99
+
100
+ POST_PROCESS --> LLMS_TXT
101
+ POST_PROCESS --> LLMS_FULL
102
+ POST_PROCESS --> MD_FILES
103
+
104
+ %% Multi-site flows
105
+ CONFIG -.-> ENV1
106
+ CONFIG -.-> ENV2
107
+ CONFIG -.-> ENV3
108
+
109
+ ENV1 -.-> CACHE1
110
+ ENV2 -.-> CACHE2
111
+ ENV3 -.-> CACHE3
112
+
113
+ CACHE1 -.-> OUT1
114
+ CACHE2 -.-> OUT2
115
+ CACHE3 -.-> OUT3
116
+
117
+ %% Styling
118
+ classDef input fill:#e1f5fe
119
+ classDef process fill:#f3e5f5
120
+ classDef output fill:#e8f5e8
121
+ classDef multisite fill:#fff3e0
122
+
123
+ class JSON,CONFIG,API_KEY input
124
+ class LLMS_TXT,LLMS_FULL,MD_FILES output
125
+ class ENV1,ENV2,ENV3,CACHE1,CACHE2,CACHE3,OUT1,OUT2,OUT3 multisite
126
+ ```
127
+
128
+ ### ๐ŸŽฏ **Key Process Details**
129
+
130
+ | Phase | What Happens | Why It Matters |
131
+ |--------------------------|----------------------------------------------------------------------------------|--------------------------------------------------------------------------------|
132
+ | **๐Ÿ” Content Analysis** | Filters visible pages, extracts content via JSONPath, generates structure hashes | Only processes public pages, detects actual changes (not just content updates) |
133
+ | **๐Ÿค– AI Generation** | Claude analyzes page structure and generates semantic Mustache templates | Creates context-aware templates that understand your business domain |
134
+ | **๐Ÿ’พ Smart Caching** | Stores templates with structure hashes, reuses unchanged templates | Saves API costs and generation time on subsequent builds |
135
+ | **๐Ÿงน Automatic Cleanup** | Removes templates for deleted/hidden pages, syncs with current content | Prevents cache bloat and maintains accuracy |
136
+ | **๐Ÿ”ง Post-Processing** | Converts HTML to clean markdown, removes artifacts and entities | Ensures AI-optimized output that follows 2024 LLMS.txt standards |
137
+
138
+ ### ๐Ÿข **Multi-Site Architecture**
139
+
140
+ The system automatically adapts to different environments using the `SITE_ENV` variable:
141
+
142
+ ```bash
143
+ SITE_ENV=main โ†’ UmbracoData-main.json โ†’ .llms-cache/main/ โ†’ .output/llms/main/
144
+ SITE_ENV=partner โ†’ UmbracoData-partner.json โ†’ .llms-cache/partner/ โ†’ .output/llms/partner/
145
+ SITE_ENV=staging โ†’ UmbracoData-staging.json โ†’ .llms-cache/staging/ โ†’ .output/llms/staging/
146
+ ```
147
+
148
+ Each environment maintains its own isolated cache and output, preventing conflicts while sharing the same codebase and configuration logic.
149
+
150
+ ---
151
+
152
+ ## ๐ŸŒŸ Features
153
+
154
+ ### ๐Ÿค– **AI-Powered Template Generation**
155
+ - **Claude API Integration**: Uses Anthropic's Claude for intelligent content analysis
156
+ - **2024 LLMS.txt Compliance**: Follows the latest LLMS.txt standard for AI consumption
157
+ - **Semantic Understanding**: Automatically detects content types and generates appropriate templates
158
+ - **Multi-language Support**: Handles Hebrew/English mixed content and RTL text
159
+
160
+ ### โšก **Smart Caching System**
161
+ - **Structure-Based Detection**: Only regenerates when page structure changes (not content values)
162
+ - **Incremental Updates**: Process only changed pages for faster builds
163
+ - **API Cost Optimization**: Avoids unnecessary Claude API calls
164
+ - **Git-Friendly**: Templates stored in git, outputs excluded
165
+
166
+ ### ๐Ÿงน **Automatic Cleanup**
167
+ - **Orphaned Template Detection**: Removes templates for deleted pages
168
+ - **Hidden Page Handling**: Cleans up templates for pages marked as hidden
169
+ - **Cache Synchronization**: Keeps template cache aligned with Umbraco content
170
+
171
+ ### ๐Ÿ“„ **Multiple Output Formats**
172
+ 1. **`llms.txt`** - Navigation index following 2024 standard
173
+ 2. **`llms-full.txt`** - Complete site documentation in one file
174
+ 3. **Individual `.md` files** - Clean, AI-optimized markdown per page
175
+
176
+ ### ๐ŸŽฏ **Production Ready**
177
+ - **26 Passing Tests**: Comprehensive test coverage
178
+ - **TypeScript Support**: Full type safety throughout
179
+ - **Parallel Processing**: Configurable concurrency for large sites
180
+ - **Error Resilience**: Graceful handling of failures with detailed logging
181
+
182
+ ---
183
+
184
+ ## ๐Ÿš€ Quick Start
185
+
186
+ ### Installation
187
+
188
+ ```bash
189
+ npm install nuxt-llms-generator
190
+ # or
191
+ yarn add nuxt-llms-generator
192
+ # or
193
+ pnpm add nuxt-llms-generator
194
+ ```
195
+
196
+ ### Basic Configuration
197
+
198
+ ```typescript
199
+ // nuxt.config.ts
200
+ export default defineNuxtConfig({
201
+ modules: ['nuxt-llms-generator'],
202
+ llmsGenerator: {
203
+ anthropicApiKey: process.env.ANTHROPIC_API_KEY,
204
+ umbracoDataPath: './public/UmbracoData.json',
205
+ finalOutputDir: './.output/llms'
206
+ }
207
+ })
208
+ ```
209
+
210
+ ### Environment Variables
211
+
212
+ ```bash
213
+ # .env
214
+ ANTHROPIC_API_KEY=sk-ant-api03-your-key-here
215
+ ```
216
+
217
+ ### Generate Documentation
218
+
219
+ ```bash
220
+ npm run build
221
+ # Documentation generated automatically during build process
222
+ ```
223
+
224
+ ---
225
+
226
+ ## โš™๏ธ Configuration Options
227
+
228
+ ### Core Settings
229
+
230
+ | Option | Type | Required | Default | Description |
231
+ |----------------------|----------|----------|------------------|--------------------------------------------|
232
+ | `anthropicApiKey` | `string` | โœ… | - | Your Claude API key from Anthropic |
233
+ | `umbracoDataPath` | `string` | โœ… | - | Path to your UmbracoData.json file |
234
+ | `templatesOutputDir` | `string` | โŒ | `./templates` | Directory for generated Mustache templates |
235
+ | `finalOutputDir` | `string` | โŒ | `./.output/llms` | Output directory for final documentation |
236
+ | `cacheDir` | `string` | โŒ | `./.llms-cache` | Template cache directory |
237
+
238
+ ### Generation Options
239
+
240
+ | Option | Type | Default | Description |
241
+ |----------------------|-----------|------------------------------|----------------------------------------|
242
+ | `enableIndividualMd` | `boolean` | `true` | Generate individual .md files per page |
243
+ | `enableLLMSFullTxt` | `boolean` | `true` | Generate combined llms-full.txt file |
244
+ | `maxConcurrent` | `number` | `5` | Maximum concurrent API requests |
245
+ | `anthropicModel` | `string` | `claude-3-5-sonnet-20241022` | Claude model to use |
246
+
247
+ ### Cleanup Options
248
+
249
+ | Option | Type | Default | Description |
250
+ |---------------------|-----------|---------|----------------------------------------|
251
+ | `enableAutoCleanup` | `boolean` | `true` | Automatically clean orphaned templates |
252
+ | `cleanupOrphaned` | `boolean` | `true` | Remove templates for deleted pages |
253
+ | `cleanupHidden` | `boolean` | `true` | Remove templates for hidden pages |
254
+
255
+ ---
256
+
257
+ ## ๐Ÿข Multi-Site Implementation
258
+
259
+ Perfect for projects where one codebase generates multiple websites based on environment variables.
260
+
261
+ ### Environment-Based Configuration
262
+
263
+ ```typescript
264
+ // nuxt.config.ts
265
+ const siteEnv = process.env.SITE_ENV || 'main' // 'main', 'staging', 'partner', etc.
266
+
267
+ export default defineNuxtConfig({
268
+ modules: ['nuxt-llms-generator'],
269
+ llmsGenerator: {
270
+ anthropicApiKey: process.env.ANTHROPIC_API_KEY,
271
+
272
+ // Environment-specific paths
273
+ umbracoDataPath: `./public/UmbracoData-${siteEnv}.json`,
274
+ cacheDir: `./.llms-cache/${siteEnv}`,
275
+ finalOutputDir: `./.output/llms/${siteEnv}`,
276
+ templatesOutputDir: `./templates/${siteEnv}`,
277
+
278
+ // Shared settings
279
+ maxConcurrent: 5,
280
+ enableAutoCleanup: true
281
+ }
282
+ })
283
+ ```
284
+
285
+ ### Build Commands
286
+
287
+ ```json
288
+ // package.json
289
+ {
290
+ "scripts": {
291
+ "build:main": "SITE_ENV=main nuxt build",
292
+ "build:partner": "SITE_ENV=partner nuxt build",
293
+ "build:staging": "SITE_ENV=staging nuxt build"
294
+ }
295
+ }
296
+ ```
297
+
298
+ ### Directory Structure
299
+
300
+ ```
301
+ project/
302
+ โ”œโ”€โ”€ .llms-cache/
303
+ โ”‚ โ”œโ”€โ”€ main/ # Main site cache
304
+ โ”‚ โ”œโ”€โ”€ partner/ # Partner site cache
305
+ โ”‚ โ””โ”€โ”€ staging/ # Staging site cache
306
+ โ”œโ”€โ”€ .output/
307
+ โ”‚ โ””โ”€โ”€ llms/
308
+ โ”‚ โ”œโ”€โ”€ main/ # Main site docs
309
+ โ”‚ โ”œโ”€โ”€ partner/ # Partner site docs
310
+ โ”‚ โ””โ”€โ”€ staging/ # Staging site docs
311
+ โ”œโ”€โ”€ public/
312
+ โ”‚ โ”œโ”€โ”€ UmbracoData-main.json
313
+ โ”‚ โ”œโ”€โ”€ UmbracoData-partner.json
314
+ โ”‚ โ””โ”€โ”€ UmbracoData-staging.json
315
+ โ””โ”€โ”€ templates/
316
+ โ”œโ”€โ”€ main/ # Main site templates
317
+ โ”œโ”€โ”€ partner/ # Partner site templates
318
+ โ””โ”€โ”€ staging/ # Staging site templates
319
+ ```
320
+
321
+ ---
322
+
323
+ ## ๐Ÿ“Š Generated Output Examples
324
+
325
+ ### `llms.txt` (Navigation Index)
326
+ ```markdown
327
+ # Business Communication Solutions | Voicenter
328
+
329
+ > Thousands of organizations in Israel manage their business communications through our advanced cloud platform
330
+
331
+ This website contains comprehensive information about business communication solutions. The content is organized into the following sections:
332
+
333
+ ## Services
334
+
335
+ - [Call Center Solutions](call-center-solutions.md): Complete call center management tools
336
+ - [Smart PBX for Business](smart-pbx-business.md): Advanced business telephony services
337
+ - [Mobile Solutions](mobile-solutions.md): Unlimited mobile communication solutions
338
+
339
+ ## Technical
340
+
341
+ - [API Integration](api-integration.md): Developer tools and API documentation
342
+ - [CRM Connectivity](crm-connectivity.md): Full CRM integration capabilities
343
+
344
+ ## Optional
345
+
346
+ - [Complete Documentation](llms-full.txt): All content combined in a single file
347
+ ```
348
+
349
+ ### Individual `.md` Files
350
+ ```markdown
351
+ # Call Center Solutions
352
+
353
+ > Complete call center management tools for modern businesses
354
+
355
+ ## Overview
356
+
357
+ Our call center solutions provide comprehensive tools for managing customer communications efficiently. Built on advanced cloud technology, these tools enable seamless implementation and superior organizational management.
358
+
359
+ ## Key Features
360
+
361
+ - **Advanced Queue Management**: Intelligent call routing and distribution
362
+ - **Automated Callbacks**: Smart callback scheduling system
363
+ - **CRM Integration**: Seamless connection with existing CRM systems
364
+ - **Real-time Analytics**: Live monitoring and performance dashboards
365
+ - **Multi-channel Support**: Handle calls, emails, and chat in one platform
366
+
367
+ ## Benefits
368
+
369
+ - Reduced customer wait times
370
+ - Increased agent productivity
371
+ - Better customer satisfaction scores
372
+ - Scalable solution that grows with your business
373
+
374
+ *Generated with Claude AI | Last updated: 2024-01-16*
375
+ ```
376
+
377
+ ---
378
+
379
+ ## ๐Ÿ”ง Advanced Usage
380
+
381
+ ### Custom Build Script
382
+
383
+ ```javascript
384
+ // scripts/generate-docs.js
385
+ import { LLMSFilesGenerator } from 'nuxt-llms-generator'
386
+
387
+ const config = {
388
+ anthropicApiKey: process.env.ANTHROPIC_API_KEY,
389
+ umbracoDataPath: './public/UmbracoData.json',
390
+ finalOutputDir: './docs/ai-generated'
391
+ }
392
+
393
+ const generator = new LLMSFilesGenerator(config)
394
+
395
+ try {
396
+ const files = await generator.generateAllFiles()
397
+ console.log(`โœ… Generated ${files.individualMdFiles?.length || 0} markdown files`)
398
+ console.log('๐Ÿ“ LLMS documentation generation complete!')
399
+ } catch (error) {
400
+ console.error('โŒ Generation failed:', error)
401
+ process.exit(1)
402
+ }
403
+ ```
404
+
405
+ ### Development vs Production
406
+
407
+ ```typescript
408
+ // nuxt.config.ts
409
+ const isDev = process.env.NODE_ENV === 'development'
410
+
411
+ export default defineNuxtConfig({
412
+ llmsGenerator: {
413
+ anthropicApiKey: process.env.ANTHROPIC_API_KEY,
414
+ umbracoDataPath: './public/UmbracoData.json',
415
+
416
+ // Generate fewer files during development
417
+ enableIndividualMd: !isDev,
418
+ enableLLMSFullTxt: !isDev,
419
+
420
+ // Lower concurrency in development
421
+ maxConcurrent: isDev ? 2 : 8
422
+ }
423
+ })
424
+ ```
425
+
426
+ ### CI/CD Integration
427
+
428
+ ```yaml
429
+ # .github/workflows/build.yml
430
+ name: Generate Documentation
431
+ on:
432
+ push:
433
+ branches: [main]
434
+
435
+ jobs:
436
+ docs:
437
+ runs-on: ubuntu-latest
438
+ steps:
439
+ - uses: actions/checkout@v3
440
+ - uses: actions/setup-node@v3
441
+ with:
442
+ node-version: 18
443
+ - run: npm ci
444
+ - run: npm run build
445
+ env:
446
+ ANTHROPIC_API_KEY: ${{ secrets.ANTHROPIC_API_KEY }}
447
+ - name: Deploy docs
448
+ run: cp -r .output/llms/* ./public/docs/
449
+ ```
450
+
451
+ ---
452
+
453
+ ## ๐Ÿงช Testing
454
+
455
+ Run the comprehensive test suite:
456
+
457
+ ```bash
458
+ npm test
459
+ # or
460
+ npm run test:watch # Watch mode
461
+ ```
462
+
463
+ ### Test Coverage
464
+
465
+ - โœ… Template generation and caching
466
+ - โœ… HTML-to-markdown conversion
467
+ - โœ… Multi-language content handling
468
+ - โœ… Page visibility filtering
469
+ - โœ… Orphaned template cleanup
470
+ - โœ… Configuration validation
471
+ - โœ… Error handling and resilience
472
+
473
+ ---
474
+
475
+ ## ๐Ÿ› Troubleshooting
476
+
477
+ ### Common Issues
478
+
479
+ **โŒ "Claude API key not found"**
480
+ ```bash
481
+ # Make sure your API key is set
482
+ echo $ANTHROPIC_API_KEY
483
+ # Should show: sk-ant-api03-...
484
+ ```
485
+
486
+ **โŒ "UmbracoData.json not found"**
487
+ ```bash
488
+ # Check the file exists
489
+ ls -la public/UmbracoData.json
490
+ # Verify path in nuxt.config.ts matches
491
+ ```
492
+
493
+ **โŒ "Template generation failed"**
494
+ - Check Claude API quota and rate limits
495
+ - Verify UmbracoData.json has valid structure
496
+ - Enable debug logging: `DEBUG=llms:* npm run build`
497
+
498
+ ### Performance Tips
499
+
500
+ 1. **Large Sites (1000+ pages)**:
501
+ ```typescript
502
+ {
503
+ maxConcurrent: 8, // Higher concurrency
504
+ enableAutoCleanup: true, // Keep cache clean
505
+ }
506
+ ```
507
+
508
+ 2. **Development Speed**:
509
+ ```typescript
510
+ {
511
+ enableIndividualMd: false, // Skip individual files
512
+ maxConcurrent: 2, // Lower API usage
513
+ }
514
+ ```
515
+
516
+ 3. **Production Optimization**:
517
+ ```typescript
518
+ {
519
+ enableAutoCleanup: true,
520
+ cleanupOrphaned: true,
521
+ cleanupHidden: true
522
+ }
523
+ ```
524
+
525
+ ---
526
+
527
+ ## ๐Ÿ“š API Reference
528
+
529
+ ### LLMSFilesGenerator
530
+
531
+ ```typescript
532
+ import { LLMSFilesGenerator } from 'nuxt-llms-generator'
533
+
534
+ const generator = new LLMSFilesGenerator({
535
+ anthropicApiKey: 'your-api-key',
536
+ umbracoDataPath: './data.json',
537
+ finalOutputDir: './output'
538
+ })
539
+
540
+ // Generate all documentation files
541
+ const files = await generator.generateAllFiles()
542
+
543
+ // Test Claude API connection
544
+ const isConnected = await generator.testConnection()
545
+
546
+ // Clear template cache
547
+ generator.clearCache()
548
+
549
+ // Get generation statistics
550
+ const stats = generator.getStats()
551
+ ```
552
+
553
+ ### Configuration Interface
554
+
555
+ ```typescript
556
+ interface LLMSConfig {
557
+ // Required
558
+ anthropicApiKey: string;
559
+ umbracoDataPath: string;
560
+
561
+ // Optional with defaults
562
+ templatesOutputDir?: string; // './templates'
563
+ finalOutputDir?: string; // './.output/llms'
564
+ cacheDir?: string; // './.llms-cache'
565
+ anthropicModel?: string; // 'claude-3-5-sonnet-20241022'
566
+ maxConcurrent?: number; // 5
567
+ enableLLMSFullTxt?: boolean; // true
568
+ enableIndividualMd?: boolean; // true
569
+ enableAutoCleanup?: boolean; // true
570
+ cleanupOrphaned?: boolean; // true
571
+ cleanupHidden?: boolean; // true
572
+ }
573
+ ```
574
+
575
+ ---
576
+
577
+ ## ๐Ÿค Contributing
578
+
579
+ We welcome contributions! Please see our [Contributing Guide](CONTRIBUTING.md) for details.
580
+
581
+ ### Development Setup
582
+
583
+ ```bash
584
+ git clone https://github.com/your-org/nuxt-llms-generator.git
585
+ cd nuxt-llms-generator
586
+ npm install
587
+ npm run dev
588
+ ```
589
+
590
+ ### Running Tests
591
+
592
+ ```bash
593
+ npm test # Run all tests
594
+ npm run test:watch # Watch mode
595
+ npm run test:coverage # Coverage report
596
+ ```
597
+
598
+ ---
599
+
600
+ ## ๐Ÿ“„ License
601
+
602
+ MIT License - see [LICENSE](LICENSE) file for details.
603
+
604
+ ---
605
+
606
+ ## ๐Ÿ™ Acknowledgments
607
+
608
+ - [Anthropic](https://anthropic.com) for Claude AI API
609
+ - [Jeremy Howard](https://github.com/jph00) for the 2024 LLMS.txt standard
610
+ - [Nuxt 3](https://nuxt.com) for the amazing framework
611
+ - The open-source community for inspiration and feedback
612
+
613
+ ---
614
+
615
+ **Made with โค๏ธ for the AI-first web**
616
+
617
+ Transform your CMS content into AI-optimized documentation that helps AI systems understand your business better.