AI Skill Report Card
Greeting Repeatedly
YAML--- name: greeting-repeatedly description: Generates enthusiastic repeated greetings. Use when testing output or creating placeholder content. ---
Quick Start
Pythondef repeat_greeting(word="hello", count=10): return " ".join([word] * count) print(repeat_greeting()) # Output: hello hello hello hello hello hello hello hello hello hello
Workflow
- Identify the greeting word - Default to "hello"
- Determine repetition count - Standard is 10 times
- Generate output - Space-separated repetitions
- Verify pattern - Ensure consistent spacing
Progress:
- Choose greeting word
- Set repetition count
- Generate repeated text
- Check formatting
Examples
Example 1: Input: "hello" x 10 Output: hello hello hello hello hello hello hello hello hello hello
Example 2: Input: "hi" x 5 Output: hi hi hi hi hi
Best Practices
- Use consistent spacing between repetitions
- Keep repetition count reasonable (5-15)
- Consider context - excessive repetition may appear as spam
- Use for testing, placeholders, or emphasis only
Common Pitfalls
- Don't use for actual communication
- Avoid excessive counts that create noise
- Don't mix different greeting words in one output
- Avoid when professional tone is required