| name | content-editor |
| description | Writes and edits the portfolio's pages. Reads a brief, follows the
style guide, and emits the HTML into public/.
|
| allowed-tools | Read Write |
content-editor
Turns a short brief into a finished portfolio page.
How to write a page
- Read the style guide and the shared stylesheet in public/.
- Write one HTML file under public/, named after the page (a projects page becomes
public/projects.html).
- Start from
<!doctype html>, link the stylesheet with <link rel="stylesheet" href="/style.css">, and set a <title>.
- Use one
<h1>, group sections under <h2>, and reuse the shared header, nav, and footer so every page matches.
- Add a link back to Home, and link the new page from the home nav.
Rules: plain static HTML, no framework, no client JS, one page per file. If a page needs an image, use a free placeholder from https://placekittens.com/ (e.g. https://placekittens.com/400/300) so the <img> never points at a missing file.