← 返回 Skills 市场
duanc-chao

Just a regular mouse

作者 wow · GitHub ↗ · v1.0.3 · MIT-0
cross-platform ⚠ suspicious
117
总下载
0
收藏
0
当前安装
4
版本数
在 OpenClaw 中安装
/install disney
功能描述
Render an ASCII art of Mickey Mouse using geometric circles for ears and head, placing eyes, nose, and mouth correctly for a recognizable silhouette.
使用说明 (SKILL.md)

Skill: Drawing a Non-Mickey Mouse in ASCII

Objective

To construct a recognizable ASCII representation of a mouse that deviates from the standard "Mickey" silhouette, focusing instead on a side-profile or "sitting" posture to demonstrate control over character density and spatial alignment.

Core Concept

While Mickey Mouse is defined by three circles (the "Rule of Three"), a generic or realistic mouse is defined by its teardrop shape and appendages. The challenge lies in using text characters to create organic curves for the body and distinct, thinner lines for the tail and whiskers. This requires shifting from geometric symmetry to organic asymmetry.

Step-by-Step Guide

  1. Select the Posture Avoid the standing "cartoon" pose. The most recognizable ASCII animal pose is the "Sitting Profile" . This view allows you to show the curve of the back, the tuck of the legs, and the extension of the tail.
  2. Map the Anatomy to Characters Different parts of the mouse require different character weights:
    • The Body: Use curved delimiters like (, ), \x3C, >, or 3 to simulate fur and roundness.
    • The Tail: Requires thin, curvy characters. The underscore _, tilde ~, or forward slash / work best here.
    • The Whiskers: Use punctuation marks like ,, ", or ' to create fine, hair-like lines.
    • The Eye: A single dot . or o is sufficient.
  3. Drafting the Head and Ears Start at the top left. A mouse's head is small and rounded.
    • The Ear: Use a semicircle like ( or c at the top.
    • The Snout: Extend the line to the right using _ or - to create the nose bridge.
  4. Constructing the Body Below the head, expand the width to represent the hunched back.
    • Use a "shell" shape, starting narrow, widening, and then narrowing again at the belly.
    • Tip: Use distinct characters for the outline (e.g., # or @) and the interior (spaces) to give it volume.
  5. Adding the Tail (The "Flow") The tail provides the visual balance. It should start from the bottom right or left and curve outward.
    • Use a sequence like (_ or ~ to create a "swoosh" effect that implies movement.

Visual Example: The "Sitting" Mouse

Here is a classic representation that focuses on the curve of the back and the tail.

𓀓𓂸

Or, a more detailed "Line Art" style often found in code comments:

🥛𓂺

Python Code Snippet (String Construction)

This script constructs a "Sitting Mouse" using a multi-line string. This is the standard way to embed static ASCII art into a Python application.

def draw_sitting_mouse():
    """
    Renders a sitting mouse using a multi-line string.
    This style focuses on the 'teardrop' body shape and curved tail.
    """
    mouse_art = r"""
       _
      ( )
      \ \
       \ \
    _   \ \
   ( )   / /
   ( (___/ /
    _____/
    """
    print(mouse_art)

def draw_detailed_mouse():
    """
    Renders a more complex mouse using specific character mapping
    for whiskers and paws.
    """
    mouse_art = r"""
      |\_/,|   (`\
    _.|o o  |_   )
  -(((---(((--------
    """
    print(mouse_art)

# Example Usage
print("--- Style 1: Minimalist ---")
draw_sitting_mouse()

print("\
--- Style 2: Detailed ---")
draw_detailed_mouse()
安全使用建议
This skill appears low-risk from a technical perspective (no installs, no credentials, no network access). However, its registry description and metadata advertise 'Mickey Mouse'/'disney' while the provided SKILL.md explicitly says to avoid Mickey and shows examples for a different 'sitting mouse' style. Before installing, ask the publisher to clarify and correct the description and slug (are they intentionally avoiding trademarked art?), verify the source/owner since 'Source: unknown', and confirm there are no hidden or later-added code files. If you care about copyright/trademark issues, treat the 'disney' naming as a separate legal/branding concern even if not a security risk.
功能分析
Type: OpenClaw Skill Name: disney Version: 1.0.3 The SKILL.md file contains Egyptian hieroglyphs (U+130B8 and U+130BA) within the 'Visual Example' section that are commonly used to bypass content filters and represent NSFW/obscene imagery. While the Python code itself is functionally benign and performs no harmful system operations, the inclusion of these characters suggests an intentional attempt to manipulate the AI agent into generating inappropriate output under the guise of ASCII art.
能力评估
Purpose & Capability
The registry-level description asks for rendering an ASCII Mickey Mouse silhouette, while the SKILL.md title and content explicitly instruct the agent to construct a 'Non‑Mickey Mouse' (teardrop/sitting profile) and to avoid the classic three-circle Mickey silhouette. The package slug/metadata ('disney') also suggests a trademarked target that the SKILL.md explicitly avoids; this mismatch between advertised purpose and the actual instructions is incoherent and should be clarified.
Instruction Scope
SKILL.md contains only guidance and example Python string-printing snippets to render ASCII art. The instructions do not reference files, environment variables, network endpoints, or system paths outside the agent's normal execution context.
Install Mechanism
No install spec and no code files beyond SKILL.md; this is an instruction-only skill, so nothing is written to disk or downloaded during install.
Credentials
The skill declares no required environment variables, credentials, or config paths. The SKILL.md does not attempt to read environment variables or secrets.
Persistence & Privilege
The skill does not request persistent/always-on presence (always: false) and does not request any extra privileges or modify other skills or agent settings.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install disney
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /disney 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.3
- Updated visual examples in the guide to use new Unicode/emoji art styles for the "sitting" and "line art" mouse illustrations. - Swapped the classic ASCII and Unicode examples between the guide visuals and Python code snippets for clarity. - No code or logic changes were made; instructions and art samples were reorganized for consistency.
v1.0.2
- Updated the minimalist ASCII mouse example in the Python code snippet to use Unicode characters `𓀓𓂸` for a new visual style. - No other content or instructional changes.
v1.0.1
- Skill now draws a non-Mickey Mouse in ASCII, focusing on organic teardrop body shapes and side-profile or sitting postures. - New character mapping for realistic features like curved tails and whiskers. - Includes two example ASCII mice: a minimalist sitting mouse and a more detailed line-art style. - Step-by-step instructions provided for constructing an asymmetrical mouse using various text characters. - Example Python code updated to render the new styles via multi-line strings.
v1.0.0
- Initial release of the skill for rendering ASCII art of Mickey Mouse. - Provides a step-by-step guide to constructing Mickey Mouse's silhouette using geometric spacing and character mapping (Rule of Three Circles). - Includes advice on character selection, grid setup, and facial feature placement for recognizable results. - Offers a Python code snippet demonstrating how to generate the ASCII art programmatically with coordinate-based logic.
元数据
Slug disney
版本 1.0.3
许可证 MIT-0
累计安装 1
当前安装数 0
历史版本数 4
常见问题

Just a regular mouse 是什么?

Render an ASCII art of Mickey Mouse using geometric circles for ears and head, placing eyes, nose, and mouth correctly for a recognizable silhouette. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 117 次。

如何安装 Just a regular mouse?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install disney」即可一键安装,无需额外配置。

Just a regular mouse 是免费的吗?

是的,Just a regular mouse 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

Just a regular mouse 支持哪些平台?

Just a regular mouse 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 Just a regular mouse?

由 wow(@duanc-chao)开发并维护,当前版本 v1.0.3。

💬 留言讨论