This standalone module packages a Claude Code and Codex skill for answering questions about the Apache HugeGraph source repository.
DeepWiki is used as the online knowledge and MCP transport layer:
https://deepwiki.com/apache/hugegraph
https://mcp.deepwiki.com/mcp
- Answers repository-grounded questions about HugeGraph architecture, modules, APIs, storage backends, schema, traversal, configuration, build, tests, and implementation details.
- Uses
read_wiki_contentsto build a local DeepWiki wiki cache and searches that cache before answering. - Uses
ask_questionwhen the cached context does not directly and precisely answer the question. - Avoids cloning upstream repositories for ordinary Q&A.
- Python 3.9 or later for the bundled MCP client script.
- Network access to
https://mcp.deepwiki.com/mcp.
tools/ai/hugegraph-deepwiki-skill/
├── README.md
├── README-zh.md
├── .agents/plugins/marketplace.json
├── .claude-plugin/marketplace.json
└── plugins/hugegraph-deepwiki-skill/
├── .claude-plugin/plugin.json
├── .codex-plugin/plugin.json
└── skills/hugegraph-deepwiki-skill/
├── SKILL.md
├── agents/openai.yaml
├── references/repos.json
└── scripts/deepwiki_mcp.py
From this repository:
cd tools/ai/hugegraph-deepwiki-skill
claude plugin marketplace add "$(pwd)"
claude plugin install hugegraph-deepwiki-skill@hugegraph-deepwiki-skillFrom a published branch, clone the repository first and install from the local module path:
git clone -b <branch> https://github.com/<owner>/hugegraph.git
cd hugegraph/tools/ai/hugegraph-deepwiki-skill
claude plugin marketplace add "$(pwd)"
claude plugin install hugegraph-deepwiki-skill@hugegraph-deepwiki-skillManual user-level skill install:
mkdir -p ~/.claude/skills
cp -R plugins/hugegraph-deepwiki-skill/skills/hugegraph-deepwiki-skill ~/.claude/skills/Paste this into Claude Code from the HugeGraph repository root:
Install the HugeGraph repository assistant from this checkout. Enter `tools/ai/hugegraph-deepwiki-skill`, run `claude plugin marketplace add "$(pwd)"`, then run `claude plugin install hugegraph-deepwiki-skill@hugegraph-deepwiki-skill`. Do not hardcode absolute paths.
From this repository:
cd tools/ai/hugegraph-deepwiki-skill
codex plugin marketplace add "$(pwd)"
codex plugin add hugegraph-deepwiki-skill@hugegraph-deepwiki-skillFrom a published branch, clone the repository first and install from the local module path:
git clone -b <branch> https://github.com/<owner>/hugegraph.git
cd hugegraph/tools/ai/hugegraph-deepwiki-skill
codex plugin marketplace add "$(pwd)"
codex plugin add hugegraph-deepwiki-skill@hugegraph-deepwiki-skillIf your Codex build cannot install plugins directly, install the raw skill:
CODEX_HOME="${CODEX_HOME:-$HOME/.codex}"
mkdir -p "$CODEX_HOME/skills"
cp -R plugins/hugegraph-deepwiki-skill/skills/hugegraph-deepwiki-skill "$CODEX_HOME/skills/"Paste this into Codex from the HugeGraph repository root:
Install the HugeGraph repository assistant from this checkout. Enter `tools/ai/hugegraph-deepwiki-skill`, run `codex plugin marketplace add "$(pwd)"`, then run `codex plugin add hugegraph-deepwiki-skill@hugegraph-deepwiki-skill`. If this Codex build has no plugin add command, copy `plugins/hugegraph-deepwiki-skill/skills/hugegraph-deepwiki-skill` into `${CODEX_HOME:-$HOME/.codex}/skills`. Do not hardcode absolute paths.
After installation, ask for the skill explicitly when needed:
Use $hugegraph-deepwiki-skill to explain HugeGraph schema and traversal behavior.
For HugeGraph AI questions, install the separate HugeGraph AI repository assistant from the apache/hugegraph-ai repository instead.