marketing-stack
@ominou5 · 收录于 1 周前
Integration guide for connecting funnels to marketing tools. Covers email providers (Mailchimp, ConvertKit, ActiveCampaign), payment processors (Stripe), CRM (HubSpot), and automation platforms.
适合你,如果正在搭建营销工具链并需要集成指南
/ 下载安装
用别的 agent?下载 .zip 解压,把文件夹放进它的技能目录
Claude Code
~/.claude/skills/(项目级 .claude/skills/)Codex CLI
~/.codex/skills/Cursor自动读取上面两处目录
其他工具见其文档的「skills」目录;两个下载是同一份文件,只是名字不同
/ 通过 npx 安装 校验哈希
npx oh-my-skill add ominou5/funnel-architect-plugin/marketing-stack/ 通过 bash 安装
curl -fsSL https://oh-my-skill.com/install.sh | bash -s -- ominou5/funnel-architect-plugin/marketing-stack/ 已经装过?验证本机副本,不用重装
npx oh-my-skill verify ominou5/funnel-architect-plugin/marketing-stack安装目标可用 --agent / --scope 或 --to 明确指定;省略时只会在唯一已存在的 agent 目录上自动选择,零命中或多命中会停止并提示。content_hash 缺失或不一致均拒装。
67GitHub stars
~662上下文体积 · 单文件
镜像托管
怎么用
技能原文 SKILL.md
Marketing Stack Integrations
Connect your funnel to the tools that make it work: email, payments, CRM, and automation.
Email Service Providers
Mailchimp
<!-- Mailchimp Embedded Form --> <form action="https://YOUR-ACCOUNT.us1.list-manage.com/subscribe/post?u=XXXX&id=XXXX" method="post"> <input type="email" name="EMAIL" placeholder="Email" required> <input type="hidden" name="tags" value="funnel-lead"> <button type="submit">Subscribe</button> </form>
ConvertKit
<!-- ConvertKit Form --> <form action="https://app.convertkit.com/forms/FORM_ID/subscriptions" method="post"> <input type="email" name="email_address" placeholder="Email" required> <input type="hidden" name="tags[]" value="TAG_ID"> <button type="submit">Subscribe</button> </form>
ActiveCampaign
<!-- ActiveCampaign Form --> <form action="https://ACCOUNT.activehosted.com/proc.php" method="POST"> <input type="hidden" name="u" value="FORM_ID"> <input type="hidden" name="f" value="FORM_ID"> <input type="email" name="email" placeholder="Email" required> <button type="submit">Subscribe</button> </form>
Payment Processing
Stripe Checkout
// Redirect to Stripe Checkout
async function handlePurchase() {
const response = await fetch('/api/create-checkout-session', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({
priceId: 'price_XXXXXXXXXXXXXXXX',
successUrl: window.location.origin + '/thank-you',
cancelUrl: window.location.origin + '/offer'
})
});
const { url } = await response.json();
window.location.href = url;
}
Stripe Payment Link (No-Code)
<a href="https://buy.stripe.com/XXXXXX" class="cta-primary"> Buy Now — $297 </a>
CRM Integration
HubSpot Form
<script charset="utf-8" type="text/javascript" src="//js.hsforms.net/forms/v2.js"></script>
<script>
hbspt.forms.create({
region: "na1",
portalId: "YOUR_PORTAL_ID",
formId: "YOUR_FORM_ID",
target: "#hubspot-form"
});
</script>
<div id="hubspot-form"></div>
Webhook Integration (Universal)
For any tool that supports webhooks:
// Send form data to a webhook
document.querySelector('form').addEventListener('submit', async (e) => {
e.preventDefault();
const formData = new FormData(e.target);
const data = Object.fromEntries(formData);
await fetch('https://hooks.your-automation.com/webhook/XXXX', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify(data)
});
window.location.href = '/thank-you';
});
Integration Checklist
- [ ] Email provider connected (forms submit to list)
- [ ] Welcome email triggers on signup
- [ ] Payment processor connected
- [ ] Thank-you page redirects correctly after purchase
- [ ] CRM receives lead data
- [ ] Tags/segments applied automatically
- [ ] Automation sequences triggered
按 MIT 许可原样转载,未经改动 · 在 GitHub 查看 →
评论
登录即可评论;带「已验证安装」的,是发布者名下有本店的安装或持有记录。
…