page-mascot
v0.1.0
Published
A character for the top of your page that follows the reader's cursor and blinks when they poke it.
Maintainers
Readme
page-mascot
A character for the top of your page. It follows the reader's cursor and blinks when they poke it. Fifty-two are already drawn. An agent skill draws new ones, or one that looks like you.
Install
npm i page-mascotUse one that is drawn
Pick a character on the demo page and download its two
sheets into public/mascots, then point the component at them:
import { Mascot } from 'page-mascot'
<Mascot
directions="/mascots/fox-directions.webp"
reactions="/mascots/fox-reactions.webp"
/>The paths are whatever your app serves, so imported images work too.
Or let an agent do it, once the skill below is installed:
/page-mascot put the fox on my pageDraw your own
Install the skill:
npx skills add nilbuild/page-mascot --skill page-mascot --global --yesThen ask your agent:
/page-mascot a chibi otter with chocolate-brown fur
/page-mascot make one that looks like me [attach a photo]
/page-mascot a chibi fox, in the riso styleIt draws the nine directions and nine expressions, builds them into two aligned sheets, checks the character does not jump between them, and puts the component on your page, with the same two props as above.
Drawing needs an image tool. Codex has one. Claude Code uses the OpenAI images API, so set
OPENAI_API_KEY first. With neither, skills/page-mascot/reference/prompts.md has the
prompts for making the sheets by hand in any chat UI.
Props
| prop | default | |
| --- | --- | --- |
| directions | none | path to the directions sheet |
| reactions | none | path to the reactions sheet |
| size | 140 | px, square |
| label | 'mascot' | what a screen reader calls it |
| className | | |
Tracking switches off without a fine pointer, and the click squash honours
prefers-reduced-motion.
How it works
Each character is two 3×3 sprite sheets: nine head directions, and nine expressions.

The pointer's angle picks a cell on the directions sheet, with a dead zone so the head
settles when the cursor is close. A click shows a cell from the reactions sheet for half a
second. One background-position and no animation library.
The same character can be drawn in six styles: colour, ink, sketch, riso, paper and pixel. Only the rendering changes, so the alignment holds.

License
MIT © Kamran Ahmed
