Agent skill
faker
Use when writing Vague (.vague) files that need realistic test data using faker generators for names, emails, addresses, dates, and more
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/data/vague-plugin-faker
SKILL.md
Faker Plugin for Vague
Quick Start
schema User {
id: uuid()
name: fullName()
email: email()
phone: phone()
city: city()
}
Core Principles
- Use shorthand generators for common cases (no
faker.prefix needed) - Use full namespace
faker.module.method()for less common generators
Common Shorthand Generators
uuid(), email(), phone(), firstName(), lastName(), fullName(), companyName(), city(), country(), countryCode(), zipCode(), streetAddress(), url(), avatar(), iban(), currencyCode(), pastDate(), futureDate(), sentence(), paragraph()
Full Namespace Example
schema Employee {
title: faker.person.jobTitle()
bio: faker.lorem.sentences(3)
cardNumber: faker.finance.creditCardNumber()
}
Reference Files
For complete generator list: references/generators.md
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?