@gardensale/skills
v1.4.0
Published
AI agent skills for publishing Gardensale catalog items to marketplaces
Maintainers
Readme
gardensale-skills
AI agent skills for publishing Gardensale catalog items to online marketplaces.
Works with Claude Code, Cursor, GitHub Copilot, Windsurf, OpenCode, Codex, Antigravity, and Gemini CLI.
Usage
Install a skill (CLI platforms)
npx @gardensale/skills add pt-site-upload -a claude-codeList available skills
npx @gardensale/skills listSupported platforms (-a flag)
| Platform | Flag | Skills directory |
|---|---|---|
| Claude Code | claude-code | .claude/skills/ |
| Cursor | cursor | .cursor/skills/ |
| GitHub Copilot | github-copilot | .github/skills/ |
| Windsurf | windsurf | .windsurf/skills/ |
| OpenCode | opencode | .opencode/skills/ |
| Codex | codex | .agents/skills/ |
| Antigravity | antigravity | .antigravity/skills/ |
| Gemini CLI | gemini-cli | .gemini/skills/ |
For Claude Desktop, Claude.ai, and ChatGPT — download the skill ZIP from the Gardensale Skills page and upload it via Customize → Skills.
MCP Auto-Configuration
Some skills require MCP server dependencies (e.g., browser automation via @playwright/mcp).
When you install such a skill, the CLI automatically configures the required MCP servers
in your platform's settings file.
Supported for auto-configuration:
| Platform | Config file |
|---|---|
| Claude Code | .claude/settings.local.json |
| Cursor | .cursor/mcp.json |
| Windsurf | ~/.codeium/windsurf/mcp_config.json |
| GitHub Copilot | .vscode/mcp.json |
For other platforms, see the skill's mcp.json for the required config.
Available Skills
| Skill | Country | Platforms | Description |
|---|---|---|---|
| pt-site-upload | Portugal | OLX, Facebook Marketplace | Publish catalog items via browser automation |
Adding a New Skill
Create the skill folder:
skills/{skill-name}/ ├── SKILL.md # The skill content ├── metadata.json # Skill metadata └── references/ # Optional: platform docs, field specsWrite
SKILL.md— the skill content that guides the AI agent. Include:- Description of what the skill does
- Which MCP tools to use (
list_catalogs,list_items,get_item) - Per-platform workflows (URLs, field mappings, character limits)
- Image URL pattern:
{POCKETBASE_URL}/api/files/items/{id}/{filename} - What to ask the user (location, phone, confirmation)
Create
metadata.json:{ "name": "your-skill-name", "description": "Short description", "country": "xx", "platforms": ["Platform1", "Platform2"], "language": "en", "version": "1.0.0" }Bump version in the root
package.json.Push to
main— GitHub Actions will auto-publish to npm.
Updating the Gardensale /skills page
After adding a skill to this package:
- Add the country + skill entry to
SKILLS_BY_COUNTRYinfrontend/src/pages/SkillsPage.tsx - Add the description translation key to
frontend/src/i18n/translations.ts(all 4 languages)
Testing locally
# Test the CLI directly:
node bin/cli.js list
node bin/cli.js add pt-site-upload -a claude-code
# Or test via npx (after npm link):
npm link
npx @gardensale/skills list
npx @gardensale/skills add pt-site-upload -a claude-codeLicense
MIT
