InstallHub
Discovering Packages
PublicHub provides full-text search, category browsing, trust level filtering, and featured package curation to help you find the right package quickly.
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
| Category | Description |
|---|---|
hr | Human resources — onboarding, leave, payroll |
finance | Financial workflows — approvals, budgeting, reporting |
operations | Operational processes — logistics, inventory, maintenance |
compliance | Regulatory compliance — KYC, audit, policy management |
customer | Customer-facing processes — onboarding, support, CRM |
forms | Reusable Atlas Form collections |
utilities | Helper 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
}