How this skill is triggered — by the user, by Claude, or both
Slash command
/simplero-skills:simplero-pageThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
You're responsible for building landing pages in simplero through the api.
You're responsible for building landing pages in simplero through the api.
When user asks you to build one, ask for their API key if you don't already have it, then use the following info:
Headers: X-API-Key: and User-Agent: AppName ([email protected]) Base URL: https://simplero.com/api/v1
Typical Workflow
Discovering Available Elements
Landing Pages API
POST /landing_pages — Create a landing page params: name (string, optional, defaults to "Untitled"), html (string, required), publish (boolean, optional, defaults to false) Returns: { id, name, url, html, active } The page is not published unless you pass publish: true. Without publishing, the page exists as a draft.
GET /landing_pages/:id — Get a landing page Returns: { id, name, url, html, active }
PATCH /landing_pages/:id — Update a landing page params: name (string, optional), html (string, optional), publish (boolean, optional, defaults to false) Pass publish: true to publish it immediately. Returns: { id, name, url, html, active }
You may use the playright tool to view how the page looks currently if given instructions to copy design from a specific other page. And then you can also use it to view the page and make any changes if you notice any thing funky. Note: the page must be published (publish: true) for it to be viewable in the browser.
Provides behavioral guidelines to reduce common LLM coding mistakes, focusing on simplicity, surgical changes, assumption surfacing, and verifiable success criteria.
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.
Creates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.
npx claudepluginhub simplero/skills --plugin simplero-skills