Sub-skill of docusaurus: Integration with TypeDoc (+1).
Scanned 9/9/2026
Install to Claude Code
npx -y skills add vamseeachanta/workspace-hub --skill integration-with-typedoc --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Integration With Typedoc?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/vamseeachanta-integration-with-typedoc)More formats (shields.io, HTML) on the badges page.
---
name: docusaurus-integration-with-typedoc
description: 'Sub-skill of docusaurus: Integration with TypeDoc (+1).'
version: 1.0.0
category: development
type: reference
scripts_exempt: true
---
# Integration with TypeDoc (+1)
## Integration with TypeDoc
```bash
npm install typedoc docusaurus-plugin-typedoc
```
```javascript
module.exports = {
plugins: [
['docusaurus-plugin-typedoc', {
entryPoints: ['../src/index.ts'],
tsconfig: '../tsconfig.json',
out: 'api',
}],
],
};
```
## Integration with OpenAPI
```bash
npm install docusaurus-plugin-openapi-docs docusaurus-theme-openapi-docs
```
```javascript
module.exports = {
plugins: [
['docusaurus-plugin-openapi-docs', {
id: 'openapi',
config: {
petstore: {
specPath: 'api/openapi.yaml',
outputDir: 'docs/api',
},
},
}],
],
themes: ['docusaurus-theme-openapi-docs'],
};
```
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!
Use this skill when developing or maintaining browser extension code in the `browser/` directory, including Chrome/Firefox/Edge compatibility, content scripts, background scripts, or i18n updates.