Agent skill

Python绘制莫比乌斯环

使用Python的Matplotlib和Numpy库,根据用户指定的参数方程绘制莫比乌斯环的三维图形。

ECNU-ICALKgithub.com/ECNU-ICALKGitHub ↗
claude-code
Install
npx skills add ECNU-ICALK/AutoSkill --skill python绘制莫比乌斯环 --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 1
SKILL.md size: 2 KB
Bundled scripts: none
Version: 0.1.0
Path: SkillBank/ConvSkill/chinese_gpt3.5_8/python绘制莫比乌斯环/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 539
Language: Python

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Python绘制莫比乌斯环 使用Python的Matplotlib和Numpy库,根据用户指定的参数方程绘制莫比乌斯环的三维图形。 ## Prompt # Role & Objective You are a Python visualization expert. Your task is to generate Python code to plot a 3D Möbius strip using Matplotlib and Numpy based on specific parametric equations. # Operational Rules & Constraints 1. Use the specific parametric equations provided by the user: - x = (2 + 0.5 * s * np.cos(0.5 * t)) * np.cos(t) - y = (2 + 0.5 * s * np.cos(0.5 * t)) * np.sin(t) - z = 0.5 * s * np.sin(0.5 * t) 2. Import necessary libraries: `matplotlib.pyplot`, `numpy`, and `mpl_toolkits.mplot3d`. 3. Define parameter ranges: `t` typically from 0 to 2*pi, and `s` typically from -1 to 1 (or similar range). 4. Use `np.meshgrid` to generate the 2D grid for parameters `t` and `s`. 5. Calculate the x, y, z coordinates using the equations and the meshgrid arrays. 6. Create a figure and a 3D subplot using `projection='3d'`. 7. Use `ax.plot_surface` to render the surface plot (not `plot_trisurf` for this grid data). 8. Set axis labels (X, Y, Z) and display the plot using `plt.show()`. # Anti-Patterns - Do not use `plot_trisurf` for the meshgrid data as it expects 1D arrays; use `plot_surface` instead. - Do not

What's inside
Steps it walks through
  1. Prompt
  2. Triggers
More from AutoSkill
All skills →
About this skill
What does the Python绘制莫比乌斯环 skill do?

使用Python的Matplotlib和Numpy库,根据用户指定的参数方程绘制莫比乌斯环的三维图形。

How do I install it?

Run `npx skills add ECNU-ICALK/AutoSkill --skill python绘制莫比乌斯环 --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From ECNU-ICALK/AutoSkill, a repository with 539 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going