Skip to content

Community Hub

Tomas Pflanzer edited this page Feb 27, 2026 · 1 revision

Community Hub

The Sandcastle Community Hub is a registry of user-contributed workflow templates. Browse, install, and publish workflows shared by the community.

Browse online: gizmax.cz/sandcastle/hub

Stats

Metric Count
Community templates 118
Unique authors 22
Curated collections 18
Categories 6

Categories

Category Templates Description
General AI 29 Text processing, summarization, translation, general-purpose
Marketing 25 Content creation, SEO, ad copy, social media, campaigns
Engineering 24 DevOps, code review, CI/CD, infrastructure, monitoring
Sales/CRM 17 Lead enrichment, outreach, pipeline management, forecasting
HR/Legal 13 Recruiting, contract review, compliance, onboarding
Support 10 Ticket triage, knowledge base, customer communication

Authors

22 community contributors:

amira-dev, content-queen, datacraft-io, devrel-bot, elena-growth, gizmax, jmartinez, k8s-ops, kai-security, lawtech-ai, lena-content, marcus-hr, nadia-cx, ops-ninja, pricewatch, priya-fintech, revops-sam, sarah-ml, social-sage, supportflow, tomr-eng, workflow-lab

Curated collections (18)

Collections are curated bundles of related templates that work well together:

Collection Templates Description
Complete Sales Stack 6-8 End-to-end sales automation
Content Machine 5-7 Content creation and distribution pipeline
DevOps Essentials 5-7 CI/CD, monitoring, incident response
Support Suite 4-6 Customer support automation
HR Toolkit 4-6 Recruiting and onboarding workflows
Market Intelligence Suite 5-7 Competitive analysis and market research
RevOps Autopilot 5-7 Revenue operations automation
Security Operations Center 4-6 SOC triage and incident response
Legal & Compliance 4-5 Contract review and compliance checks
Content Empire 5-7 Advanced content strategy
Professional Services 4-6 Consulting and services workflows
Commerce & Catalog 4-5 E-commerce operations
Content Creation Studio 5-7 Creative content production
Knowledge & AI Ops 4-6 Knowledge management and AI operations
Compliance Fortress 4-5 Advanced compliance monitoring
Crisis & Incident Ops 4-6 Crisis management and response
Executive Intelligence 4-6 Executive reporting and briefings
Industry Verticals 5-7 Industry-specific workflows

CLI commands

Search templates

sandcastle hub search "lead enrichment"
sandcastle hub search --category marketing
sandcastle hub search --author gizmax

Install a template

sandcastle hub install revenue-forecast-ensemble

This copies the template YAML to your local workflows/ directory.

List installed community templates

sandcastle hub list

Publish your own template

sandcastle hub publish my-workflow.yaml

Browse collections

sandcastle hub collections

Install an entire collection

sandcastle hub install-collection complete-sales-stack

Installs all templates in the collection at once.

Template format

Community templates follow the same YAML format as built-in templates:

# name: My Awesome Workflow
# description: Does something useful
# tags: [Marketing, AI, Automation]
# category: marketing

name: my-awesome-workflow
description: Does something useful

input_schema:
  required: [topic]
  properties:
    topic:
      type: string
      description: "The topic to work on"

steps:
  - id: step-1
    prompt: |
      Do the thing with {input.topic}
    model: sonnet

Registry structure

The registry is a JSON file at hub/registry.json:

{
  "templates": [
    {
      "slug": "revenue-forecast-ensemble",
      "name": "Revenue Forecast Ensemble",
      "description": "...",
      "author": "priya-fintech",
      "category": "sales",
      "tags": ["Finance", "Forecasting"],
      "downloads": 142
    }
  ],
  "collections": [
    {
      "id": "complete-sales-stack",
      "name": "Complete Sales Stack",
      "description": "...",
      "icon": "TrendingUp",
      "template_slugs": ["lead-enrichment", "..."],
      "downloads": 89
    }
  ],
  "stats": {
    "total_templates": 118,
    "total_authors": 22,
    "categories": [...]
  }
}

Clone this wiki locally