def get_prompts_dir()

in devai-cli/src/devai/commands/prompts.py [0:0]


def get_prompts_dir() -> Path:
    """Get the prompts directory path from config or default."""
    # Check for user's custom prompts directory first
    user_dir = get_user_prompts_dir()
    if user_dir:
        return user_dir
    
    # Default to package prompts directory
    return get_package_prompts_dir()