tessl install tessl/pypi-asciimatics@1.15.0A cross-platform package to replace curses (mouse/keyboard input & text colours/positioning) and create ASCII animations
Agent Success
Agent success rate when using this tile
81%
Improvement
Agent success rate improvement when using this tile compared to baseline
1.33x
Baseline
Agent success rate without this tile
61%
Build a Python script that converts image files to greyscale ASCII art and displays them in the terminal.
The script should:
@generates
def convert_image_to_ascii(image_path: str, max_width: int = 80) -> str:
"""
Convert an image file to greyscale ASCII art.
Args:
image_path: Path to the image file
max_width: Maximum width of the output in characters (default: 80)
Returns:
String containing the ASCII art representation with newline characters
Raises:
FileNotFoundError: If image file doesn't exist
"""
passProvides image to ASCII conversion functionality.
@satisfied-by