Awww
Use when the user invokes /awww, or asks to render / score / persist / time a todo list, checklist, or task panel — dispatcher for the awwwards-todo-skills pack that routes to the right sub-skill (swiss-grid-todo-display, awwwards-interface-evaluation, cross-chat-todo-persistence, contextual-todo-triggers).From its SKILL.md
npx -y skills add jpoindexter/awwwards-todo-skills --skill awwwAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- 29 days oldThe repository was created 29 days ago. New is not bad, but a brand new repository carrying a familiar-sounding name is the shape a typosquat arrives in, and there has been no time for anyone else to find a problem with it.
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
SKILL.md
1.9 KB, 429 tokens by cl100k_base, as published. Nobody here has run it
awww — todo skill-pack dispatcher
One entry point for the four awwwards-todo-skills. Read the arg, load the matching sub-skill(s), apply them. With no arg, pick by intent from the user's request.
Routing
| Invocation | Load | For |
|---|---|---|
/awww score | awwwards-interface-evaluation | grade a rendered interface (Design 40 / Usability 30 / Creativity 20 / Content 10) → score + achievement level |
/awww render | swiss-grid-todo-display | render todos as a grid-aligned monospace panel (4 border styles) |
/awww persist | cross-chat-todo-persistence | save/resume todo sessions across conversations |
/awww when | contextual-todo-triggers | decide when to surface todos and which style |
/awww (no arg) | pick by intent below | — |
Pick by intent (no arg)
- "show / draw / print my todos" →
swiss-grid-todo-display - "rate / grade / is this good" →
awwwards-interface-evaluation - "remember / pick up where we left off" →
cross-chat-todo-persistence - "when should I show / auto-update" →
contextual-todo-triggers - Building the full loop → load all four; they compose: when decides → render draws → score grades → persist remembers.
How to load a sub-skill (runtime-specific)
Claude Code / Claude: invoke the target via the
Skilltool by itsname(e.g.swiss-grid-todo-display). Codex / other runtimes: open the sibling skill directory'sSKILL.md(../<name>/SKILL.md) and follow it.
The routing logic above is runtime-agnostic; only the load mechanism differs.
What ships with it
Read from the repository
Just SKILL.md. No reference files, no scripts.