Skip to main content

Marketplace — Pre-Built Skills & Agents

The Marketplace is a curated library of skills, agents, and workflows contributed by the FleetQ community and official platform team. Install a listing and it becomes part of your team's library in seconds — no setup required.

Scenario: A content team discovers the "SEO Content Analyzer" skill in the marketplace. One click installs it. They assign it to their Blog Writer agent — the agent can now score every draft against SEO best practices before publishing.

Browsing the marketplace

Visit /marketplace (no login required for browsing). Filter by category (Content, Research, Sales, DevOps, etc.), listing type (skill, agent, workflow), or search by keyword.

Listings marked with a verified badge are published or audited by the FleetQ platform team.

Installing a listing

Click Install on any listing. FleetQ creates a local copy in your team's library — a snapshot of the listing at the time of installation. Updates to the original listing don't affect your installed copy unless you re-install.

bash
curl -X POST https://mimir.nikix.ru/api/v1/marketplace/seo-content-analyzer/install \
  -H "Authorization: Bearer YOUR_TOKEN"

Publishing your own listings

Pro

Share your skills, agents, and workflows with the community. Navigate to /marketplace/publish or use the API:

Publish via API
POST /api/v1/marketplace
{
  "title": "Competitive Intelligence Monitor",
  "slug": "competitive-intelligence-monitor",
  "description": "Monitors competitor websites and RSS feeds for product launches and pricing changes.",
  "listing_type": "agent",
  "source_id": "YOUR_AGENT_ID",
  "visibility": "public",
  "category": "Research"
}

Listings go through a brief review before becoming publicly visible. Private listings are only visible to your team.

Reviews & ratings

After installing and using a listing, you can leave a star rating and written review. Reviews help the community discover high-quality listings.

bash
curl -X POST https://mimir.nikix.ru/api/v1/marketplace/seo-content-analyzer/reviews \
  -H "Authorization: Bearer YOUR_TOKEN" \
  -d '{"rating": 5, "body": "Works perfectly for our content pipeline. Saved hours of manual SEO checking."}'