Detect and sync drift between Loop configuration files in your repository.
When working in teams, Loop configurations can drift over time:
- STATE.md and LOOP.md get out of sync
- Skills are updated but not reflected in configuration
- Required files are missing
- Configuration drifts from starters
loop-sync detects these issues and provides actionable suggestions.
npm install -g @cobusgreyling/loop-sync
# or
npx @cobusgreyling/loop-sync .loop-sync [target-dir] [options]| Option | Description |
|---|---|
-a, --auto-fix |
Attempt to auto-fix issues (experimental) |
-d, --dry-run |
Show what would be done without making changes |
-v, --verbose |
Show detailed information |
--json |
Output JSON format |
-h, --help |
Show help |
# Basic sync check
loop-sync .
# Verbose output
loop-sync ./my-project -v
# JSON output for scripting
loop-sync ./my-project --json-
Required files
- STATE.md (required)
- LOOP.md (required)
- AGENTS.md (recommended)
-
STATE.md ↔ LOOP.md consistency
- Structural similarity
- State file references
- Pattern consistency
-
Skills directory
- Existence of
.claude/skills/ - Version information in SKILL.md files
- Existence of
-
Configuration drift
- Missing references
- Orphaned files
- Inconsistencies
| Score | Level | Meaning |
|---|---|---|
| 90-100 | Healthy | No issues detected |
| 70-89 | Warning | Minor inconsistencies |
| 0-69 | Critical | Major issues need attention |
Loop Sync Report
══════════════════════════════════════════════════
Score: 85/100 (healthy)
✅ No issues detected. Configuration is consistent.
💡 Suggestions:
- Run loop-init to scaffold missing files
Add to your GitHub Actions workflow:
- name: Run loop-sync
run: npx @cobusgreyling/loop-sync .cd tools/loop-sync
npm install
npm run build
npm testMIT