From graphify-tools
Keep a graphify knowledge graph current automatically: --watch mode (live rebuild on file save) or a post-commit git hook (rebuild per commit). TRIGGERS - graphify watch, auto-sync graph, keep graph updated, graphify git hook, graph out of date.
How this skill is triggered — by the user, by Claude, or both
Slash command
/graphify-tools:auto-syncThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
> **Self-Evolving Skill**: This skill improves through use. If the hook behavior or `--watch` semantics drift — fix this file immediately, don't defer. Only update for real, reproducible issues.
Self-Evolving Skill: This skill improves through use. If the hook behavior or
--watchsemantics drift — fix this file immediately, don't defer. Only update for real, reproducible issues.
Two mechanisms keep graphify-out/ in step with a changing corpus. They don't conflict — pick per repo temperament.
Prerequisite: engine installed (
graphify-tools:setup) and an initial graph built (graphify-tools:build-graph).
cd <repo> && graphify hook install
.git dir config; a hook installed in the main checkout fires for worktree commits too — install once per repo, not per worktreeVerify:
cat <repo>/.git/hooks/post-commit | grep -n graphify
graphify <target> --watch
graphify <target> --update for the LLM re-pass| Situation | Pick |
|---|---|
| Normal repo, commit-granularity freshness is fine | Hook (A) |
| Active multi-agent session mutating files continuously | Watch (B) |
| Both installed | Fine — watch covers between-commit drift; hook covers sessions where watch isn't running |
# Watch: kill the foreground process
# Hook: remove the graphify stanza
sed -i '' '/graphify/d' <repo>/.git/hooks/post-commit
After this skill completes, reflect before closing the task:
references/backends.md) that no longer matches reality.Do NOT defer. The next invocation inherits whatever you leave behind.
npx claudepluginhub terrylica/cc-skills --plugin graphify-toolsBuilds or incrementally updates the repository code knowledge graph for review. Use for initial setup, after refactors or branch switches; supports Python, TypeScript/JS, Go; SQLite storage.
Build a multimodal knowledge graph from any folder (code, markdown, PDFs, images) using graphify. Produces graph.html, GRAPH_REPORT.md, graph.json, Obsidian vault, optional agent wiki. TRIGGERS - graphify, build knowledge graph, graph this folder, map this codebase, concept graph, god nodes, surprising connections.
Builds a local knowledge graph of code, docs, and mixed media using tree-sitter extraction and LLM-based relationship inference. Query via CLI commands instead of reading raw files.