Portal Community
Phase 3 — PENDING This feature is planned but not yet implemented.

Search API

GET /api/marketplace/packages
  ?q=employee+onboarding    // Full-text search on name, description, tags
  &category=hr              // Filter by category
  &trustLevel=Certified     // Filter: Official | Certified | Community
  &packageType=workflow-package  // Filter by artifact type
  &minRating=4              // Minimum star rating (1-5)
  &sortBy=installs          // installs | rating | newest | name
  &pageSize=20
  &page=1

Search Response

{
  "totalCount": 8,
  "page": 1,
  "pageSize": 20,
  "items": [
    {
      "packageId":    "mkt-pkg-a1b2c3",
      "name":         "Employee Onboarding Suite",
      "publisher":    "BizFirstGO",
      "trustLevel":   "Official",
      "packageType":  "workflow-package",
      "version":      "3.0.0",
      "description":  "Complete employee onboarding with approval, forms, and notifications",
      "category":     "hr",
      "tags":         ["hr", "onboarding", "approval"],
      "rating":       4.8,
      "reviewCount":  142,
      "installCount": 3841,
      "updatedAt":    "2026-04-15T00:00:00Z"
    }
  ]
}

Categories

CategoryDescription
hrHuman resources — onboarding, leave, payroll
financeFinancial workflows — approvals, budgeting, reporting
operationsOperational processes — logistics, inventory, maintenance
complianceRegulatory compliance — KYC, audit, policy management
customerCustomer-facing processes — onboarding, support, CRM
formsReusable Atlas Form collections
utilitiesHelper workflows, utility rules, schemas

Featured Packages

// Get featured packages for the homepage
GET /api/marketplace/packages/featured

{
  "official":    [...],  // BizFirstGO official picks
  "trending":    [...],  // Most installed in the last 30 days
  "newReleases": [...],  // Packages published in the last 14 days
  "topRated":    [...]   // Highest rated packages
}