Claude-skill-registry edge-verifier
install
source · Clone the upstream repo
git clone https://github.com/majiayu000/claude-skill-registry
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/majiayu000/claude-skill-registry "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/data/edge-verifier" ~/.claude/skills/majiayu000-claude-skill-registry-edge-verifier && rm -rf "$T"
manifest:
skills/data/edge-verifier/SKILL.mdsource content
Edge Verifier
This skill links new content to the existing Knowledge Graph by:
- Recall: Running a KNN/Hybrid search (
) to find potential related lessons.graph_memory.search - Verify: Using
(LLM) to audit the relationship, classifying it asscillm
,verifies
, orcontradicts
.neutral - Link: Creating verified
in ArangoDB.lesson_edges
Usage
Manual Execution
# Verify edges for a specific source text .agents/skills/edge-verifier/run.sh --source_id <ID> --text "Content to verify..." # With explicit options .agents/skills/edge-verifier/run.sh --source_id <ID> --text "..." --type "episode_turn"
Scheduling (Mom Integration)
This skill is designed to be scheduled via mom (Master Of Mischief) to ensure continuous verification of new memory artifacts.
To schedule this, copy the provided
schedule_template.json to mom's events directory (e.g., data/events/).
Template (schedule_template.json
)
schedule_template.json{ "type": "periodic", "channelId": "YOUR_CHANNEL_ID", "text": "Run .agents/skills/edge-verifier/run.sh on recent data", "schedule": "0 2 * * *", "timezone": "America/New_York" }
Setup Steps for Mom
- Link Skill: Ensure
can see this skill.momln -s $(pwd)/.agents/skills/edge-verifier ~/.pi/mom/data/skills/edge-verifier - Schedule: Copy the template.
cp .agents/skills/edge-verifier/schedule_template.json ~/.pi/mom/data/events/verify-daily.json # Edit the channelId in the new file!
Prerequisites
must expose ArangoDB credentials..env
for LLM calls.CHUTES_API_KEY