clone-production — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited clone-production (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
Clone a production database with automatic PII anonymization.
# Configure anonymization rules
xata clone config --source-url <production-connection-string>
# Run the clone
xata clone start --source-url <production-connection-string># 1. Set up your production connection string
export PROD_URL="postgres://user:pass@prod-host:5432/mydb"
# 2. Configure what gets anonymized (interactive)
xata clone config --source-url $PROD_URL --mode=prompt
# 3. Run the clone
xata clone start --source-url $PROD_URL
# 4. Connect to your anonymized copy
psql $(xata branch url)Xata automatically detects and anonymizes columns named:
email → fake emailsname, first_name, last_name → fake namesphone → fake phone numbersssn → masked SSNaddress → fake addressesEdit .xata/clone.yaml to customize:
tables:
users:
columns:
email:
transform: email
custom_field:
transform: redactemail — Generate fake emailname — Generate fake namephone — Generate fake phoneaddress — Generate fake addressredact — Replace with [REDACTED]hash — One-way hash (preserves uniqueness)null — Set to NULL.xata/clone.yaml before running in CI/CD~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.