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.
Guides completion of development work by verifying tests, detecting environment, and presenting structured options for merge, PR, or cleanup.
Guides creation and editing of skills using test-driven development with pressure scenarios and subagents to verify agent compliance.
Dispatches multiple subagents concurrently for independent tasks without shared state. Use when facing 2+ unrelated failures or subsystems that can be investigated in parallel.
npx claudepluginhub terrylica/cc-skills --plugin graphify-tools