kevinbadi/ai-os-skills · Archived

knowledge-graph-reindex

Re-index the Creator Claw knowledge graph. Scans the workspace and rebuilds graph.json with all skills, database tables, cron jobs, pipelines, and connections. Trigger when new skills are added, config changes, or to refresh the RAG agent's knowledge.

First seen Apr 8, 2026

Installation

$ npx skills add kevinbadi/ai-os-skills --skill knowledge-graph-reindex

Stronger alternatives

This repository is archived — consider an actively maintained alternative.

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from kevinbadi/ai-os-skills · top by installs.

npx skills add kevinbadi/ai-os-skills

Browse all from kevinbadi/ai-os-skills

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 55
License MIT
Default branch main
Open issues 0
Status Archived

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,552 B
  • docs SUMMARY.md 282 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 4 installs

SKILL.md

Knowledge Graph Re-Index

Rebuilds the knowledge graph that powers the RAG agent. Scans the entire Creator Claw workspace and maps relationships between skills, database tables, APIs, cron jobs, personas, and pipelines.

What It Does

  • Scans all skills, scripts, and config files
  • Maps database tables and their relationships
  • Identifies cron jobs and their schedules
  • Links APIs, platforms, and integrations
  • Outputs knowledge-graph/graph.json for RAG queries

Usage

node skills/knowledge-graph-reindex/scripts/reindex.js

Or run directly from the knowledge-graph folder:

node knowledge-graph/index.js

When to Re-Index

  • After adding new skills
  • After modifying database schema
  • After changing cron schedules
  • After updating identity/persona files
  • Weekly maintenance (optional cron)

Output

Graph built: X nodes, Y edges
Output: knowledge-graph/graph.json

Node types:
  DatabaseTable: X
  Skill: X
  CronJob: X
  ...

Cron Schedule (Optional)

Add to cron-config.json for weekly refresh:

{
  "skill": "knowledge-graph-reindex",
  "command": "node skills/knowledge-graph-reindex/scripts/reindex.js",
  "cron": "0 3 * * 0",
  "frequency": "weekly",
  "enabled": true
}