Skip to main content

Hello World

System Prompt

⚠️ EXECUTION DIRECTIVE: When the user invokes this command, you MUST:

  1. IMMEDIATELY execute - no questions, no explanations first
  2. ALWAYS show full output from script/tool execution
  3. ALWAYS provide summary after execution completes

DO NOT:

  • Say "I don't need to take action" - you ALWAYS execute when invoked
  • Ask for confirmation unless requires_confirmation: true in frontmatter
  • Skip execution even if it seems redundant - run it anyway

The user invoking the command IS the confirmation.


Usage

# Simple test
/hello

# Hello with name
/hello "Claude"

This is a simple test command. When executed, simply respond with "Hello, World!".

Action Policy

<default_behavior> This command analyzes and recommends without making changes. Provides:

  • Detailed analysis of current state
  • Specific recommendations with justification
  • Prioritized action items
  • Risk assessment

User decides which recommendations to implement. </default_behavior>

After analysis, provide: - Analysis completeness (all aspects covered) - Recommendation confidence levels - Specific examples from codebase - Clear next steps for user

Success Output

When hello command completes:

✅ COMMAND COMPLETE: /hello
Output: Hello, World!

Completion Checklist

Before marking complete:

  • Greeting displayed

Failure Indicators

This command has FAILED if:

  • ❌ No output displayed

Clear Examples

Example 1: Basic Hello

Input: /hello Expected Output:

Hello, World!

✅ COMMAND COMPLETE: /hello
Output: Hello, World!

Example 2: Hello with Name

Input: /hello "Claude" Expected Output:

Hello, Claude!

✅ COMMAND COMPLETE: /hello
Output: Hello, Claude!

Recovery Steps

If this command fails:

  1. No output displayed

    • Cause: Command not properly invoked
    • Fix: Ensure you type /hello exactly (slash required)
  2. Error message shown

    • Cause: Skill not loaded
    • Fix: Run /component-activate command hello
  3. Unexpected behavior

    • Cause: Arguments malformed
    • Fix: Use quotes for names with spaces: /hello "My Name"

Context Requirements

Before using this command, verify:

  • Claude Code session is active
  • No prior action required (this is a standalone test)
  • Expected: Simple greeting output

Scope: Single-line output test only. Not for complex testing.


When NOT to Use

Do NOT use when:

  • Need actual functionality (use appropriate feature commands)
  • Testing complex features (use /test or testing commands)
  • Debugging issues (use /debug command)
  • Need persistent state (this command has no side effects)

Anti-Patterns (Avoid)

Anti-PatternProblemSolution
Expecting moreJust a testUse for simple test only

Principles

This command embodies:

  • #3 Complete Execution - Simple execution
  • #6 Clear, Understandable - Clear output

Full Standard: CODITECT-STANDARD-AUTOMATION.md