What problem does it solve?
This Skill removes the repetitive setup work needed to start a new knowledge-graph module by generating a complete, domain-ready package structure with consistent KGModule patterns and tests.
Core Features & Use Cases
- KGModule scaffolding: Creates a ready-to-extend package with extractor, module, adapter, and tests for a new knowledge domain.
- Domain-driven templates: Fills stubs using your answers for node kinds, edge kinds, and KGKind so you replace TODOs with real domain logic quickly.
- Optional CLI integration: Adds a click-based CLI with build, query/pack, analyze, and snapshot commands to manage and run your KG over time.
- Config support: Adds configuration loading hooks from pyproject.toml so include/exclude directories are user-controlled rather than hardcoded.
Quick Start
Tell the Skill to scaffold a new module named filetreekg for a doc-style knowledge graph, specifying node kinds ["file","directory"] and edge kinds ["CONTAINS","REFERENCES"] so you can immediately implement extraction and query logic in the generated package.