Agent Plugins Marketplace
All plugins

fetch-external-knowledge

v0.3.0

Code intelligence and docs-first external knowledge retrieval

Claude CodeAgent Plugins2 Skills

By HernandoR0 GitHub starsUpdated 4 days ago

Directory evidence

Runtimes
Claude Code and Agent Plugins
Parsed components
2 skill or MCP entries
Source updated
Sep 20, 2026
Manifest status
Canonical path parsed

The directory validates manifest shape and source location. It does not execute the plugin or provide a security endorsement. Review the indexing methodology

Install fetch-external-knowledge for Claude Code

Installs for the current user
claude plugin marketplace add IchenDEV/agent-plugin-mkt
claude plugin marketplace update agent-plugin-marketplace
claude plugin install fetch-external-knowledge@agent-plugin-marketplace

Paste and run these commands in a terminal with Claude Code. They add and refresh the PluginsMP catalog, then install this plugin.

The installer fetches third-party code from the source repository shown on this page. This directory validates manifest structure and source location, but does not perform a security audit; review the manifest, components, and source before installing.

Get the source manually
git clone https://github.com/HernandoR/agent-skillset

Clone the source repository, then follow its setup instructions to add the plugin to a compatible client. The plugin root is plugins/fetch-external-knowledge/.

Plugin files

plugins/fetch-external-knowledge/
├── .claude-plugin/plugin.json
├── plugin.json
├── skills/codegraph-usage/SKILL.md
└── skills/context7-docs-first/SKILL.md

Included Skills2

codegraph-usageskills/codegraph-usage/SKILL.md

Use when exploring code, finding symbols, tracing call paths, understanding architecture, analyzing impact of changes, or building code context for a task. This is a code intelligence skill over an indexed knowledge graph — consult it BEFORE writing or editing code when you need to understand code structure, symbol relationships, or call flows. Also activates when the user asks how code works, where things are defined, what calls/references a symbol, what would break from a change, or how data flows through the system.

context7-docs-firstskills/context7-docs-first/SKILL.md

Use when implementing against an external library, framework, SDK, protocol, or public API that is unknown, unstable, undocumented in-repo, or lacks a local example.

Plugin manifests2

plugins/fetch-external-knowledge/.claude-plugin/plugin.json
{
  "name": "fetch-external-knowledge",
  "version": "0.3.0",
  "description": "Code intelligence and docs-first external knowledge retrieval",
  "keywords": [
    "codegraph",
    "context7",
    "docs",
    "code-search"
  ],
  "skills": "./skills",
  "interface": {
    "displayName": "Fetch External Knowledge",
    "shortDescription": "Pull in what the session does not know: code graph queries and current library docs",
    "longDescription": "Skills for closing knowledge gaps before writing code. Query an indexed code graph to find symbols, trace call paths, and scope the impact of a change, and fetch current documentation for external libraries and APIs instead of relying on training data that may be out of date.",
    "developerName": "HernandoR",
    "category": "Productivity",
    "capabilities": [
      "Interactive"
    ],
    "defaultPrompt": [
      "Trace how this function gets called.",
      "Check the current docs for this API.",
      "What would break if I change this signature?"
    ]
  }
}
plugins/fetch-external-knowledge/plugin.json
{
  "$schema": "https://agent-plugins.org/schemas/1.0.0/plugin.schema.json",
  "name": "fetch-external-knowledge",
  "version": "0.3.0",
  "description": "Code intelligence and docs-first external knowledge retrieval",
  "author": {
    "name": "HernandoR",
    "email": "[email protected]"
  },
  "homepage": "https://github.com/HernandoR/agent-skillset",
  "repository": "https://github.com/HernandoR/agent-skillset",
  "keywords": [
    "codegraph",
    "context7",
    "docs",
    "code-search"
  ]
}

If you maintain this plugin, link to this source-backed listing from your README so users can review its manifest and indexed components.

[fetch-external-knowledge on Agent Plugins Marketplace](https://pluginsmp.com/plugins/fetch-external-knowledge)