소스 정보
- 저장소
- tomevault-io/skills-registry
- 최근 소스 활동
- 2026년 7월 3일 19:45
- 감지된 SKILL.md 언어
- 영어
- 스타
- 0
- 포크
- 0
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/tomevault-io/skills-registry --skill supacrawl명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | supacrawl |
| description | Use this skill when the user wants to inspect, mirror, search, export, or back |
| metadata | {"author":"davemorin"} |
Use this skill when the user wants to inspect, mirror, search, export, or back up a Supabase project into a local SQLite archive.
/private/tmp for trials unless the user asks
for a durable archive.doctor before a live sync.sync before sync --full on unfamiliar projects.storage pull --limit before downloading a large bucket.status --sync never when the user wants an archive-only read.supacrawl init --project-id <label>
supacrawl doctor --json
supacrawl sync --json
supacrawl status --json
supacrawl diff /path/to/older-archive.db --json
supacrawl size --json
Use diff against a copy of the archive made before the sync you want to compare against.
Read commands auto-refresh stale metadata by default. Override the policy when needed:
supacrawl status --sync never --json
supacrawl report --sync always --json
supacrawl search --stale-after 1h "auth.uid"
For a full local database copy:
supacrawl sync --full --batch-size 2000
For a smaller archive:
supacrawl sync --full --no-row-fts --batch-size 2000
Export one table:
supacrawl export --type jsonl --out companies.jsonl public.companies
Download Storage blobs after a full sync:
supacrawl storage pull --dir ./supabase-storage --limit 10
Create and inspect an encrypted local backup:
supacrawl backup keygen --out ~/.supacrawl/age.key
supacrawl backup init --recipient age1...
supacrawl backup push --json
supacrawl backup status --json
supacrawl backup pull --out ./supacrawl-restore --json
Use read-only SQL against the archive:
supacrawl sql "select schema_name, name, rls_enabled from tables order by schema_name, name"
supacrawl sql "select json_extract(row_json, '$.name') from table_rows where schema_name='public' and table_name='companies' limit 20"
schemastablescolumnsindexesconstraintspoliciesfunctionstriggersstorage_bucketsstorage_object_statscrawl_runsdata_copy_runssearch_docstable_rowsBefore declaring the tool healthy, run:
./scripts/validate-local.sh
If SUPABASE_DB_URL is set, the validator also runs live doctor and metadata
sync checks. Set SUPACRAWL_VALIDATE_FULL=1 only when a full data copy is safe.
Source: davemorin/supacrawl — distributed by TomeVault.