Rebuild a company resource registry index.
Scanned 9/19/2026
Install to Claude Code
npx -y skills add indigoai-us/hq-core --skill sync-registry --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Sync Registry?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/indigoai-us-sync-registry)More formats (shields.io, HTML) on the badges page.
---
name: sync-registry
description: Rebuild a company resource registry index.
allowed-tools: Bash, Read
---
# /sync-registry
Regenerate a company's resource-registry index (`registry.yaml`) from its `resources/*.yaml` files.
## Usage
`/sync-registry [company-slug]` — slug optional; falls back to cwd / handoff context when omitted.
## Workflow
```bash
COMPANY="${1:-$(jq -r '.active.slug // empty' workspace/threads/handoff.json 2>/dev/null)}"
[ -z "$COMPANY" ] && echo "no company resolved" && exit 1
cd "companies/$COMPANY/registry" && bash scripts/generate-index.sh
```
Writes the regenerated `registry.yaml` and exits. See `companies/{co}/registry/scripts/generate-index.sh` for the index shape.
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!