test-data-gen
SolidUse when tests need realistic fixtures or mock data and you want to generate them deterministically instead of copying production data.
Install
Quality Score: 78/100
Skill Content
Details
- Author
- NSBen
- Repository
- NSBen/skillfoundry
- Created
- 4 days ago
- Last Updated
- 4 days ago
- Language
- Python
- License
- MIT
Similar Skills
Semantically similar based on skill content — not just same category
generate-from-schema
Generate synthetic datasets from a schema specification using the Rockfish SDK. Use when a user wants to create synthetic tabular or time-series data with specific structure — independent or derived columns, state machines, timeseries, entity relationships (including composite foreign keys), or realistic PII-like values (names, emails, addresses, SSNs) via NamedEntityProvider. Trigger on phrases like "generate synthetic data", "fake data from a schema", "create a test dataset", "GenerateFromDataSchema", or mentions of entity/foreign-key/state-machine data.
synthetic-data-desk
design synthetic data generation workflows with seed examples, constraints, diversity targets, contamination controls, review loops, and validation gates.
test-data
Create isolated, throwaway test data for automated tests (or manual dev runs) and clean it up afterward. Use when a test or a local experiment needs rounds, games, sessions, or votes to run against, and you must NOT touch the real data/ folder. Covers the temp-DATA_DIR pattern, seeding via the API vs. a raw data.json, and teardown.