deepwiki_summarize
Generate AI-powered summaries of GitHub repository documentation, tailored to specific needs like overview, technical details, quickstart, or API insights, with customizable length.
Instructions
Generates AI-powered summaries of GitHub repository documentation with different focus types (overview, technical, quickstart, api).
Input Schema
Name | Required | Description | Default |
---|---|---|---|
maxLength | No | Maximum length of summary in words (default: 1000) | |
summaryType | No | Type of summary: overview (default), technical, quickstart, or api | |
url | Yes | DeepWiki URL or GitHub repository identifier (e.g., 'https://deepwiki.com/owner/repo' or 'owner/repo') |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"maxLength": {
"description": "Maximum length of summary in words (default: 1000)",
"maximum": 5000,
"minimum": 100,
"type": "integer"
},
"summaryType": {
"description": "Type of summary: overview (default), technical, quickstart, or api",
"enum": [
"overview",
"technical",
"quickstart",
"api"
],
"type": "string"
},
"url": {
"description": "DeepWiki URL or GitHub repository identifier (e.g., 'https://deepwiki.com/owner/repo' or 'owner/repo')",
"type": "string"
}
},
"required": [
"url"
],
"type": "object"
}