返回 Skill 列表
extension
分类: 开发与工程无需 API Key

cowsay

生成带有包含消息的对话框的牛(或其他动物)的ASCII艺术。当用户要求你显示cowsay消息、让ASCII牛说话,或者想要有趣的终端风格ASCII艺术输出时使用此技能。

person作者: jakexiaohubgithub

Cowsay Skill

This is an example skill created by Amp to illustrate how Agent Skills work.

Generate ASCII art pictures of a cow with a speech bubble containing a message.

Usage

Run the bundled Python script to generate cowsay output:

python3 scripts/cowsay.py "Your message here"

Options

  • --eyes CHARS: Set custom eye characters (default: oo)
  • --tongue CHARS: Set custom tongue characters (default: empty)
  • --width N: Set speech bubble width (default: 40)
  • --think: Use thought bubble instead of speech bubble

Examples

Basic cowsay:

python3 scripts/cowsay.py "Hello, world!"

Dead cow:

python3 scripts/cowsay.py "I'm not feeling well" --eyes "XX" --tongue "U"

Thinking cow:

python3 scripts/cowsay.py "Hmm, let me think..." --think

Output format

The script outputs ASCII art directly to stdout. Present the output in a code block to preserve formatting.