AI Skill Report Card

Greeting Repeatedly

F25·Feb 2, 2026
YAML
--- name: greeting-repeatedly description: Generates enthusiastic repeated greetings. Use when testing output or creating placeholder content. ---

Quick Start

Python
def 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

  1. Identify the greeting word - Default to "hello"
  2. Determine repetition count - Standard is 10 times
  3. Generate output - Space-separated repetitions
  4. 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
0
Grade FAI Skill Framework
Scorecard
Criteria Breakdown
Quick Start
11/15
Workflow
11/15
Examples
15/20
Completeness
15/20
Format
11/15
Conciseness
11/15