Welcome to FlowZap, the App to diagram with Speed, Clarity and Control.

搜索优化工作流

business-operations

包含查询分析、相关性调优、同义词管理、点击率追踪以及排序算法 A/B 测试的搜索优化工作流。

完整 FlowZap 代码

n8nTrigger { # n8n Schedule Trigger
  n1: circle label:"Start"
  n2: rectangle label:"Trigger weekly SEO audit"
  n3: rectangle label:"Fetch sitemap URLs"
  n4: rectangle label:"Generate SEO report"
  n5: circle label:"End"
  n1.handle(right) -> n2.handle(left)
  n2.handle(right) -> n3.handle(left)
  n3.handle(bottom) -> Crawler.n6.handle(top) [label="Crawl"]
  n4.handle(right) -> n5.handle(left)
}
Crawler { # n8n HTTP Request
  n6: rectangle label:"Crawl each page"
  n7: rectangle label:"Extract meta tags"
  n8: rectangle label:"Check page speed"
  n9: diamond label:"Issues found?"
  n10: rectangle label:"Log SEO issues"
  n11: rectangle label:"Mark page healthy"
  n6.handle(right) -> n7.handle(left)
  n7.handle(right) -> n8.handle(left)
  n8.handle(right) -> n9.handle(left)
  n9.handle(right) -> n10.handle(left) [label="Yes"]
  n9.handle(bottom) -> n11.handle(top) [label="No"]
  n10.handle(bottom) -> Analysis.n12.handle(top) [label="Analyze"]
  n11.handle(bottom) -> Analysis.n12.handle(top) [label="Analyze"]
}
Analysis { # n8n Function Node
  n12: rectangle label:"Calculate SEO score"
  n13: rectangle label:"Compare to competitors"
  n14: diamond label:"Score improved?"
  n15: rectangle label:"Generate recommendations"
  n16: rectangle label:"Flag regression"
  n17: rectangle label:"Send Slack notification"
  n12.handle(right) -> n13.handle(left)
  n13.handle(right) -> n14.handle(left)
  n14.handle(right) -> n15.handle(left) [label="Yes"]
  n14.handle(bottom) -> n16.handle(top) [label="No"]
  n15.handle(right) -> n17.handle(left)
  n16.handle(right) -> n17.handle(top)
  n17.handle(top) -> n8nTrigger.n4.handle(bottom) [label="Complete"]
}

相关模板

账户删除工作流程

business-operations

账户删除工作流程,包含**取消原因捕获**、**留存优惠**、**订阅终止**、**数据清理**和**确认邮件**。

API 密钥轮换工作流程

business-operations

API 密钥轮换工作流程,包含**新密钥生成**、**双密钥过渡期**、**客户端通知**、**旧密钥弃用**和**审计日志记录**。

队列分析工作流

business-operations

队列分析工作流,包含按注册日期的用户分段、留存曲线计算、LTV预测以及行为模式识别。

社区审核工作流

business-operations

社区内容审核工作流,包含 AI 自动标记、用户举报、人工审核队列、执行措施以及申诉处理。