Generate realistic test data with Bogus or Faker.js
Generate realistic test data matching your domain models.
dotnet add package Bogus
var faker = new Faker<CandidateProfile>("fr")
.RuleFor(c => c.Id, f => Guid.NewGuid().ToString())
.RuleFor(c => c.FirstName, f => f.Name.FirstName())
.RuleFor(c => c.LastName, f => f.Name.LastName())
.RuleFor(c => c.Email, (f, c) => f.Internet.Email(c.FirstName, c.LastName))
.RuleFor(c => c.Skills, f => f.Make(3, () => f.PickRandom(skills)));
var candidates = faker.Generate(100);
import { faker } from '@faker-js/faker/locale/fr';
const candidates = Array.from({ length: 100 }, () => ({
firstName: faker.person.firstName(),
lastName: faker.person.lastName(),
email: faker.internet.email(),
skills: faker.helpers.arrayElements(['CSharp', 'Azure', 'React'], 3),
}));
<entity-name>: Domain entity to generate data for--count=<n>: Number of records (default: 100)--locale=<code>: Locale for names/addresses (default: fr)Search for places (restaurants, cafes, etc.) via Google Places API proxy on localhost.
Interact with GitHub using the `gh` CLI. Use `gh issue`, `gh pr`, `gh run`, and `gh api` for issues, PRs, CI runs, and advanced queries.
Create or update AgentSkills. Use when designing, structuring, or packaging skills with scripts, references, and assets.
Start voice calls via the OpenClaw voice-call plugin.
Notion API for creating and managing pages, databases, and blocks.
Gemini CLI for one-shot Q&A, summaries, and generation.
Category:developer