npx claudepluginhub simplero/skills --plugin simplero-skillsThis skill uses the workspace's default tool permissions.
You're responsible for building landing pages in simplero through the api.
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 agent creation for Claude Code plugins with file templates, frontmatter specs (name, description, model), triggering examples, system prompts, and best practices.
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: <key> and User-Agent: AppName (email@example.com) 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.