Agent skill
new-testimonial
Creates a new testimonial in src/content/testimonials/ with valid frontmatter. Use when adding a customer quote, review, or endorsement.
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/other/other/new-testimonial
SKILL.md
Create a new testimonial in the src/content/testimonials/ directory.
Steps
- Take the author name from the user's argument. If not provided, ask for one.
- Generate a kebab-case filename from the author name (e.g., "Jane Doe" →
jane-doe.md). - Ask the user for:
- Role (e.g., "Senior Developer", "CTO")
- Company (optional)
- Rating (optional, 1-5)
- Quote text — the actual testimonial
- Create
src/content/testimonials/<slug>.md:
---
author: "<author name>"
role: "<role>"
company: "<company>" # omit if not provided
rating: <rating> # omit if not provided
publishedAt: <today's date YYYY-MM-DD>
---
<quote text without quotation marks>
- Tell the user:
- The file was created at
src/content/testimonials/<slug>.md - The markdown body IS the quote — do not wrap in quotation marks
- Optional fields:
company,avatar(image URL),rating(1-5)
- The file was created at
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?