docusaurus-build-fails-with-module-not-found
Sub-skill of docusaurus: Build Fails with Module Not Found (+6).
Best use case
docusaurus-build-fails-with-module-not-found is best used when you need a repeatable AI agent workflow instead of a one-off prompt.
Sub-skill of docusaurus: Build Fails with Module Not Found (+6).
Teams using docusaurus-build-fails-with-module-not-found should expect a more consistent output, faster repeated execution, less prompt rewriting.
When to use this skill
- You want a reusable workflow that can be run more than once with consistent structure.
When not to use this skill
- You only need a quick one-off answer and do not need a reusable workflow.
- You cannot install or maintain the underlying files, dependencies, or repository context.
Installation
Claude Code / Cursor / Codex
Manual Installation
- Download SKILL.md from GitHub
- Place it in
.claude/skills/build-fails-with-module-not-found/SKILL.mdinside your project - Restart your AI agent — it will auto-discover the skill
How docusaurus-build-fails-with-module-not-found Compares
| Feature / Agent | docusaurus-build-fails-with-module-not-found | Standard Approach |
|---|---|---|
| Platform Support | Not specified | Limited / Varies |
| Context Awareness | High | Baseline |
| Installation Complexity | Unknown | N/A |
Frequently Asked Questions
What does this skill do?
Sub-skill of docusaurus: Build Fails with Module Not Found (+6).
Where can I find the source code?
You can find the source code on GitHub using the link provided at the top of the page.
SKILL.md Source
# Build Fails with Module Not Found (+6)
## Build Fails with Module Not Found
```bash
rm -rf node_modules .docusaurus build
npm install
npm run build
```
## Hot Reload Not Working
```bash
npm run clear
npm run start
```
## Broken Links
```javascript
module.exports = {
onBrokenLinks: 'warn', // Change from 'throw' for debugging
};
```
## i18n Build Issues
```bash
npm run build -- --locale en
npm run write-translations -- --locale fr
```
## Debug Mode
```bash
DEBUG=docusaurus* npm run build
npm run start -- --port 3001
```
## Algolia Indexing Issues
```javascript
// Check Algolia configuration
module.exports = {
themeConfig: {
algolia: {
appId: 'YOUR_APP_ID', // Not the API key
apiKey: 'SEARCH_ONLY_KEY', // Search-only API key
indexName: 'your_index',
debug: true, // Enable debug mode
},
},
};
```
## Version Dropdown Not Showing
```javascript
// Ensure versions.json exists and navbar is configured
module.exports = {
themeConfig: {
navbar: {
items: [
{ type: 'docsVersionDropdown', position: 'right' },
],
},
},
};
```Related Skills
module-lookup
Query the digitalmodel module registry to discover modules by capability, standard, or maturity without reading source code.
static-site-build-artifact-plan-review
Plan-review pattern for static-site fixes where the deployed artifact is generated from source files (e.g. sitemap/robots/static assets). Prevents review churn by separating durable regression checks from one-time migration verification and by validating built output, not just source files.
mcp-builder
Guide for building high-quality Model Context Protocol (MCP) servers that allow LLMs to interact with external services. Use when creating new MCP integrations, tools, or servers for Codex or other AI systems.
rag-system-builder
Build Retrieval-Augmented Generation (RAG) Q&A systems with Codex or OpenAI. Use for creating AI assistants that answer questions from document collections, technical libraries, or knowledge bases.
knowledge-base-builder
Build searchable knowledge bases from document collections (PDFs, Word, text files). Use for creating technical libraries, standards repositories, research databases, or any large document collection requiring full-text search.
interactive-dashboard-builder
Create self-contained HTML/JavaScript dashboards with Chart.js, filters, and professional styling
repo-cleanup-1-build-artifacts
Sub-skill of repo-cleanup: 1. Build Artifacts (+5).
module-based-refactor
Reorganize a repository from flat structure to a module-based 5-layer architecture (src/tests/specs/docs/examples) while preserving git history. Use when restructuring a codebase into modules, migrating import paths, cleaning up hidden folders, consolidating duplicate directories, removing root-level artifacts, or archiving completed plan files. Capabilities: parallel agent spawn strategy, hidden-folder consolidation patterns, benchmark fixture separation, 4-phase atomic commit workflow.
discipline-refactor-standard-folders-module-structure
Sub-skill of discipline-refactor: Standard Folders → Module Structure (+1).
web-artifacts-builder-self-contained-architecture
Sub-skill of web-artifacts-builder: Self-Contained Architecture (+1).
web-artifacts-builder-file-naming
Sub-skill of web-artifacts-builder: File Naming (+2).
web-artifacts-builder-common-cdn-libraries
Sub-skill of web-artifacts-builder: Common CDN Libraries.