Sync the CodeEagle knowledge graph with latest code changes. Supports diff-aware incremental sync and full re-index.
Install
npx skillscat add imyousuf/codeeagle/codeeagle-sync Install via the SkillsCat registry.
SKILL.md
CodeEagle Sync
Sync the CodeEagle knowledge graph with the latest code changes.
Usage
Use the Bash tool to run:
codeeagle syncFor a full re-index (ignoring incremental state):
codeeagle sync --fullTo export the graph after syncing:
codeeagle sync --exportPrerequisites
- CodeEagle must be installed and on PATH
- Project must be initialized (
codeeagle init)
To run linker phases on an existing graph without re-indexing:
codeeagle backpop # new phases only (implements + tests)
codeeagle backpop --all # all 7 linker phasesNotes
- By default performs a diff-aware incremental sync (only processes changed files)
- Use
--fullto rebuild the entire knowledge graph from scratch - Use
--exportto export the graph data after syncing - Sync automatically runs the cross-service linker (7 phases: services, endpoints, API calls, dependencies, imports, implements, tests)
- Use
backpopto run linker phases without re-indexing (useful after adding new linker features)