From aahl-skills
Accesses DeepWiki docs for GitHub repos: reads wiki structure/contents and answers AI-powered questions about open-source code.
npx claudepluginhub joshuarweaver/cascade-code-languages-misc-2 --plugin aahl-skillsThis skill uses the workspace's default tool permissions.
The DeepWiki MCP server provides programmatic access to DeepWiki’s public repository documentation and search capabilities (Ask Devin).
Guides Next.js Cache Components and Partial Prerendering (PPR) with cacheComponents enabled. Implements 'use cache', cacheLife(), cacheTag(), revalidateTag(), static/dynamic optimization, and cache debugging.
Guides building MCP servers enabling LLMs to interact with external services via tools. Covers best practices, TypeScript/Node (MCP SDK), Python (FastMCP).
Generates original PNG/PDF visual art via design philosophy manifestos for posters, graphics, and static designs on user request.
The DeepWiki MCP server provides programmatic access to DeepWiki’s public repository documentation and search capabilities (Ask Devin).
MCP Server URL: https://mcp.deepwiki.com/mcp
The tool's results are generated by AI, requiring at least 1 minute or more of timeout time.
npx -y mcporter call "${MCP_URL}.ask_question" repoName:owner/repo question:"User's questions"npx -y mcporter call "${MCP_URL}.read_wiki_structure" repoName:owner/reponpx -y mcporter call "${MCP_URL}.read_wiki_contents" repoName:owner/repo/**
* Get a list of documentation topics for a GitHub repository.
* Args:
* repoName: GitHub repository in owner/repo format (e.g. "facebook/react")
*/
function read_wiki_structure(repoName: string): object;
{
"type": "object",
"properties": {
"repoName": {
"type": "string"
}
},
"required": [
"repoName"
]
}
/**
* View documentation about a GitHub repository.
* Args:
* repoName: GitHub repository in owner/repo format (e.g. "facebook/react")
*/
function read_wiki_contents(repoName: string): object;
{
"type": "object",
"properties": {
"repoName": {
"type": "string"
}
},
"required": [
"repoName"
]
}
/**
* Ask any question about a GitHub repository and get an AI-powered, context-grounded response.
* Args:
* repoName: GitHub repository or list of repositories (max 10) in owner/repo format
* question: The question to ask about the repository
*/
function ask_question(repoName: unknown, question: string): object;
{
"type": "object",
"properties": {
"repoName": {
"anyOf": [
{
"type": "string"
},
{
"items": {
"type": "string"
},
"type": "array"
}
]
},
"question": {
"type": "string"
}
},
"required": [
"repoName",
"question"
]
}