From code-sensei
Teaches HTML tags and structure, CSS selectors/properties, browser rendering, and HTML/CSS/JS relationships using analogies and quizzes. Activates on .html/.css edits.
npx claudepluginhub dojocodinglabs/code-sensei --plugin code-senseiThis skill uses the workspace's default tool permissions.
- **Analogy:** HTML is the skeleton of a webpage. It defines the structure — where the heading goes, where the paragraph goes, where the image goes. Like the blueprint of a house showing where rooms are.
Searches, retrieves, and installs Agent Skills from prompts.chat registry using MCP tools like search_skills and get_skill. Activates for finding skills, browsing catalogs, or extending Claude.
Searches prompts.chat for AI prompt templates by keyword or category, retrieves by ID with variable handling, and improves prompts via AI. Use for discovering or enhancing prompts.
Guides MCP server integration in Claude Code plugins via .mcp.json or plugin.json configs for stdio, SSE, HTTP types, enabling external services as tools.
<tag>content</tag>. The tag tells the browser what KIND of content it is.<h1> to <h6> — headings (h1 is the biggest, like a newspaper headline)<p> — paragraph (a block of text)<a> — link (a door to another page)<img> — image (a picture on the wall)<div> — container (a box that groups things together)<form> — form (like a paper form you fill out)<button> — a clickable buttonHTML = Structure (what's on the page)
CSS = Style (how it looks)
JS = Behavior (what it does)
Think of it as: HTML is the house frame, CSS is the interior design, JavaScript is the electricity and plumbing that makes things work.