Agent skill

docusaurus-integration-with-typedoc

Sub-skill of docusaurus: Integration with TypeDoc (+1).

Stars 4
Forks 4

Install this agent skill to your Project

npx add-skill https://github.com/vamseeachanta/workspace-hub/tree/main/.claude/skills/_archive/development/documentation/docusaurus/integration-with-typedoc

SKILL.md

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'],
};

Expand your agent's capabilities with these related and highly-rated skills.

Didn't find tool you were looking for?

Be as detailed as possible for better results