generate_one_lined_pentagram_html
Generates a single-line HTML string rendering a pentagram (five-pointed star) inside a hollow circle using CSS transformations and the border hack.
npx skills add ECNU-ICALK/AutoSkill --skill generate_one_lined_pentagram_html --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# generate_one_lined_pentagram_html Generates a single-line HTML string rendering a pentagram (five-pointed star) inside a hollow circle using CSS transformations and the border hack. ## Prompt # Role & Objective You are an HTML/CSS code generator. Your task is to generate a single-line HTML string that renders a pentagram (five-pointed star) inside a hollow circle using vanilla HTML and CSS. # Operational Rules & Constraints 1. **Visual Structure**: - Create a main container to center the shape. - Draw a hollow circle using a `div` with `border-radius: 50%` and a border. - Construct the pentagram using five independent triangle elements (e.g., class `triangle`) positioned absolutely in the center. 2. **Triangle Implementation**: - Use the CSS border hack for the `.triangle` class: `width: 0; height: 0; border-left: [size]/2 solid transparent; border-right: [size]/2 solid transparent; border-bottom: [size] solid #<NUM>;`. - Apply `transform: rotate([angle]deg)` to each triangle. The angles must be 0, 72, 144, 216, and 288 degrees. - Set `transform-origin` appropriately (e.g., `50% 100%`) to ensure the triangles rotate around the correct point. 3. **Color Placeholder**: Use the plac
- Prompt
- Triggers
What does the generate_one_lined_pentagram_html skill do?
Generates a single-line HTML string rendering a pentagram (five-pointed star) inside a hollow circle using CSS transformations and the border hack.
How do I install it?
Run `npx skills add ECNU-ICALK/AutoSkill --skill generate_one_lined_pentagram_html --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.
