knowledge-lookup

Retrieves stored knowledge articles from the dev-knowledge public JSON API.

Updated Jun 20, 2026
One-click install
npx skills add https://github.com/DIO0550/d-market-knowledge --skill knowledge-lookup-dio0550
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: knowledge-lookup
Source: https://github.com/DIO0550/d-market-knowledge/tree/main/plugins/knowledge-vault/skills/knowledge-lookup
Command: npx skills add https://github.com/DIO0550/d-market-knowledge --skill knowledge-lookup-dio0550

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? It prevents duplicate research by letting you search previously accumulated knowledge in the dev-knowledge repository before investigating a problem from scratch. ## Core Features & Use Cases - Table-of-contents retrieval: Fetches /api/docs.json once to get titles, categories, and tags of all articles without cloning the repository. - Tag-based filtering: Uses /api/tags.json to narrow articles by tag when the topic area is already known. - Full-text fetch with citations: Retrieves article bodies via contentUrl and answers with source article URLs attached. - Use Case: When you hit an error that feels familiar, ask whether dev-knowledge already covers it; the Skill pulls the index, finds candidate articles, reads their Markdown bodies, and answers with links to the source pages. ## Quick Start Ask the AI to search dev-knowledge for existing notes about the error or topic you are currently investigating.

Frequently Asked Questions about knowledge-lookup

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I search the dev-knowledge knowledge base?

Fetch https://DIO0550.github.io/dev-knowledge/api/docs.json once to get the full table of contents with titles, categories, and tags. Then pick candidate articles and retrieve their bodies through each entry's contentUrl.

How do I filter dev-knowledge articles by tag?

Fetch /api/tags.json to list all tags with counts, then follow the tag's url to get the articles under that tag. The response has the same shape as docs.json and includes contentUrl for each article.

Does searching dev-knowledge require cloning the repository or authentication?

No. The site is public, so plain HTTPS requests to the JSON API are enough. No gh authentication, git clone, vector search, or embeddings are needed.

What should I do if the dev-knowledge JSON API returns 404?

A 404 means the JSON API is not deployed on that site yet. Fall back to reading the Markdown files under dev-knowledge/docs/ directly via gh search code or raw URLs, and tell the user the JSON API is unavailable.

What happens when no matching knowledge article exists?

State clearly that dev-knowledge has no entry for the topic rather than guessing. Then route the finding to the knowledge-article or knowledge-issue skills so the gap becomes a new article or tracked issue.