很多朋友写文案的时候,都会直接把需求发给AI,来一句“帮我生成爆款文案”,实际上这种无头无脑的需求,AI并无法理解,最后只能给你随便生成一些文案。
有效的方式是,我们要先去研究对标账号已经爆款的文案,分析他们的特点是什么,抽象出来他们的写作风格、框架结构,然后根据这些特点,再去生成或改写我们自己的文案。
平时这种需求我一般都是会搭个n8n工作流,通过流程,抓取文案 ,把文案同步到多维表格,再给到AI去分析文案风格。
今天突发奇想,能不能用编程工具来实现这个需求? 也就是我通过编程工具,完成一整条流程(提取数据、分析文案、提炼框架、生成文案)。毕竟现在编程工具里都有AI能力,简单的需求不需要你自己写代码。
立刻来试试看。
编程工具:windsulf。 一个月20美金,当初用它是因为支持支付宝付费。
我们先看对话框底下的选项。
有两种模式①code:需要写代码的时候,就选择code模式 ②ask:会话模式,只和AI对话,它不会帮你写代码。

再拉开模型的菜单,里面集成了目前最先进的海外模型,比如最近的Gemini 3 pro,你可以切换选择claude或者GPT等。这一个月20美金的性价比还是杠杠的,太香了。

好,我们开始让它来干活。
我的需求是“帮我提取某个博主的所有的推特里的推文,然后帮我分析他的推文风格和结构,最后帮我输出一个指令模板,我拿着这个指令模版就可以来改写或生成我自己的推文或小红书文案”
首先,我需要让它帮我提取出博主的推文。
这里我用到一个产品:tikhub,tikhub是一个接口聚合平台,可以在里面调用各种接口,价格也还ok。
我们找到获取推文的接口

如果以前用工作流的方式,我们需要加一个http节点,调用接口,然后再循环获取到的数据,一行一行写进多维表格。
我们尝试在windsulf直接给出需求
我需要提取出我对标账号的推文内容。 我用tikhub接口来获取,我给你接口文档,和需要提取的对标账号账号id,你帮我写一个脚本来提取出来吧!最好能提取到一个文档或excel里。 tikhub接口:1.地址https://api.tikhub.io/api/v1/twitter/web/fetch_user_post_tweet 2.方法:get 3.参数:①screen_name: 用户名 ②cursor: 游标,默认为None,用于翻页,后续从上一次请求的返回结果中的JSON中获取。 Request里的Authorization是Bearer Token,token是[替换成你自己的token] 用户名是Yangyixxxx 那么请帮我提取出Yangyixxxx底下的推文
需求一定要写的清晰,说明你的目的,把接口文档的地址和需要的参数复制给他,要记得写你的token。
还有,要记得选择code模式。

发送后,AI就吭哧吭哧开始干活了,它会自动帮你拆解任务,先写脚本从接口获取数据,然后再帮你保存excel到本地。

等一会,AI就自动帮我们写好了python脚本,并且把excel保存在我们电脑里了。

不懂代码没有关系,你可以忽略左边的代码栏,把它想象成一个在后台运行的agent就好。
简单一点的需求,现在的大模型基本都可以很好的实现了。
下面就是提取出来的excel,里面是我需要的博主的推文、还有各种浏览数据,原文链接。

如果执行有问题,你就和AI多会话几轮,把问题抛给它让它修改。(比如一开始它只给我提取出了几条数据,应该是翻页有问题)
提取之后,AI又马不停蹄的开始为我们分析推文的内容了。如果是以往工作流实现,相当于加上一个大模型节点进行分析。

稍等一会,就给我们输出了结果,它把这个博主的推文归类成了几种叙事结构,每个结构底下的场景和特征也为我们分析出来了。

最后,还自动的贴心给我们生成了一个可以拿来即用的prompt。也就是你把你的选题内容和这段prompt丢给AI,AI就可以套用博主的结构帮你输出你自己的推文或小红书文案。


如果你觉得还不够,可以继续给它说你的需求。比如我们让它再次分析博主的文案类型,并且针对每种类型都给我输出一个prompt
能否帮我整体分析下这些提取出来的内容,他们大概有哪些类型? 每种类型的文案的结构和风格是怎样的,针对每种文案和风格,能否提炼出对应的prompt指令
AI更细致的帮我们分析了这些内容

接下来我们就可以直接用了
用之前,记得切换到ask后,我们把prompt指令发出去

AI会回复 “请选择模式 (A/B) 并发送你的选题。”
我们回复需要的模式,然后把选题复制进去,最后发送
那么AI就会根据模式和选题,自动帮我们生成推文/小红书文案

我们只需要在这个框架上人工修改和调整就好。
如果你不满意,还可以切换大模型来试试,听说Claude Opus写文案的能力不错,可以试试。
整个过程非常的方便。
让AI帮我们从接口获取数据 -> AI自动编写脚本并提取数据 -> 分析提取出来的内容,并将其变为一个“文案生成agent” -> 讲你需要写的内容或选题发出来,让“文案生成agent” 帮你写出最后的文案 -> 人工修改审核
你可以把prompt复制保存下来,或者以后直接用windsulf打开项目文件夹,找到这段历史会话,然后直接抛出你的选题,让它帮你生成内容。
非常有意思。
如果你还想继续拓展的话,可以切换到code模式,直接让AI帮你生成一下前端页面,然后找个服务器部署进去,这不就妥妥变成了一个文案提取、分析和生成产品了么。
最后是广告时间:
如果你对多维表格/n8n自动化工作流感兴趣,欢迎订阅我的小报童专栏。
课程目录:吨师傅 . AI自动化实验室
专栏会持续更新详细的多维表格/n8n的配置方法、详细教程,以及实际应用场景/案例。
目前已更新66篇,总计17万字。 限时价格99元。




Xanh9vn, hmm… Never tried it personally, but I’ve seen it mentioned a few times. Do your research and see if it’s right for you. Good luck! Want to take a look?: xanh9vn
**backbiome**
backbiome is a naturally crafted, research-backed daily supplement formulated to gently relieve back tension and soothe sciatic discomfort.
**boostaro**
boostaro is a specially crafted dietary supplement for men who want to elevate their overall health and vitality.
**vivalis**
vivalis is a premium natural formula created to help men feel stronger, more energetic, and more confident every day.
**balmorex**
balmorex is an exceptional solution for individuals who suffer from chronic joint pain and muscle aches.
**glycomute**
glycomute is a natural nutritional formula carefully created to nurture healthy blood sugar levels and support overall metabolic performance.
**aquasculpt**
aquasculpt is a revolutionary supplement crafted to aid weight management by naturally accelerating metabolism
**synadentix**
synadentix is a dental health supplement created to nourish and protect your teeth and gums with a targeted combination of natural ingredients
**nervecalm**
nervecalm is a high-quality nutritional supplement crafted to promote nerve wellness, ease chronic discomfort, and boost everyday vitality.
**alpha boost**
alpha boost for men, feeling strong, energized, and confident is closely tied to overall quality of life. However, with age, stress, and daily demands
**prostavive**
prostavive Maintaining prostate health is crucial for mens overall wellness, especially as they grow older.
**yusleep**
yusleep is a gentle, nano-enhanced nightly blend designed to help you drift off quickly, stay asleep longer, and wake feeling clear
**gl pro**
glpro is a natural dietary supplement designed to promote balanced blood sugar levels and curb sugar cravings.
**nitric boost ultra**
nitric boost is a daily wellness blend formulated to elevate vitality and support overall performance.
**mindvault**
mindvault is a premium cognitive support formula created for adults 45+.
**vertiaid**
vertiaid is a high-quality, natural formula created to support stable balance, enhance mental sharpness, and alleviate feelings of dizziness
**femipro**
femipro is a dietary supplement developed as a natural remedy for women facing bladder control issues and seeking to improve their urinary health.
**vitrafoxin**
vitrafoxin is a premium brain enhancement formula crafted with natural ingredients to promote clear thinking, memory retention, and long-lasting mental energy.
**glucore**
glucore is a nutritional supplement that is given to patients daily to assist in maintaining healthy blood sugar and metabolic rates.
**hepato burn**
hepatoburn is a high-quality, plant-forward dietary blend created to nourish liver function, encourage a healthy metabolic rhythm, and support the bodys natural fat-processing pathways.
**sugarmute**
sugarmute is a science-guided nutritional supplement created to help maintain balanced blood sugar while supporting steady energy and mental clarity
**primebiome**
The natural cycle of skin cell renewal plays a vital role in maintaining a healthy and youthful appearance by shedding old cells and generating new ones.
**tonic greens**
tonic greens is a cutting-edge health blend made with a rich fusion of natural botanicals and superfoods, formulated to boost immune resilience and promote daily vitality.
**oradentum**
oradentum is a comprehensive 21-in-1 oral care formula designed to reinforce enamel, support gum vitality, and neutralize bad breath using a fusion of nature-derived, scientifically validated compounds.
**gluco6**
gluco6 is a natural, plant-based supplement designed to help maintain healthy blood sugar levels.
**finessa**
Finessa is a natural supplement made to support healthy digestion, improve metabolism, and help you achieve a flatter belly.
Would love to incessantly get updated outstanding web site! .
Hi! Someone in my Facebook group shared this site with us so I came to look it over. I’m definitely loving the information. I’m bookmarking and will be tweeting this to my followers! Excellent blog and great style and design.
**herpafend**
herpafend is a natural wellness formula developed for individuals experiencing symptoms related to the herpes simplex virus.
**aquasculpt**
aquasculpt is a premium metabolism-support supplement thoughtfully developed to help promote efficient fat utilization and steadier daily energy.
Hello my family member! I want to say that this article is amazing, great written and include almost all important infos. I¦d like to see more posts like this .
you are really a good webmaster. The website loading speed is amazing. It seems that you are doing any unique trick. Furthermore, The contents are masterpiece. you’ve done a magnificent job on this topic!
hello!,I love your writing so so much! proportion we be in contact more about your post on AOL? I need a specialist on this space to resolve my problem. Maybe that is you! Looking ahead to look you.
You have noted very interesting details ! ps nice site.
I got what you mean ,saved to bookmarks, very nice website .
**back biome**
Backbiome is a naturally crafted, research-backed daily supplement formulated to gently relieve back tension and soothe sciatic discomfort.
laughlin nevada casinos
References:
coolpot.stream
**prodentim**
ProDentim is a distinctive oral-care formula that pairs targeted probiotics with plant-based ingredients to encourage strong teeth, comfortable gums, and reliably fresh breath.
**prostafense**
ProstAfense is a premium, doctor-crafted supplement formulated to maintain optimal prostate function, enhance urinary performance, and support overall male wellness.
**nerve calm**
NerveCalm is a high-quality nutritional supplement crafted to promote nerve wellness, ease chronic discomfort, and boost everyday vitality.
**neurosharp**
Neuro Sharp is a modern brain-support supplement created to help you think clearly, stay focused, and feel mentally confident throughout the day.
**heroup**
HeroUP is a premium mens wellness formula designed to support sustained energy, physical stamina, and everyday confidence.
**aquasculpt**
AquaSculpt is a high-quality metabolic support supplement created to help the body utilize fat more efficiently while maintaining steady, reliable energy levels throughout the day.
ALO8 là cổng game trực tuyến quy tụ nhiều lựa chọn giải trí như slot nổ hũ, casino trực tiếp, bắn cá và cá cược thể thao với nhiều kèo cược hấp dẫn. Website được xây dựng với giao diện rõ ràng, dễ thao tác và hoạt động mượt mà trên cả điện thoại lẫn máy tính. Hệ thống giao dịch nạp rút được tối ưu với tốc độ xử lý nhanh cùng cơ chế bảo mật nhiều lớp giúp bảo vệ an toàn tài khoản người chơi. Cùng hàng loạt chương trình ưu đãi như thưởng chào mừng, hoàn trả định kỳ và sự kiện khuyến mãi, ALO8 đang trở thành lựa chọn giải trí quen thuộc của nhiều người chơi.
safest bodybuilding supplements
References:
blogfreely.net
References:
Lady luck casino vicksburg ms
References:
https://formation-diagnostiqueur-immobilier.net/quelle-est-la-marge-derreur-dun-dpe/
References:
Steroids and fat loss
References:
https://omojuwa.com/2012/03/air-nigeria-passengers-protest-over-inability-of-plane-to-land/
References:
SSL secured casinos
References:
https://graph.org/Fastpay-Casino-Review-Fast-Payouts-and-Best-Real-Money-Games-04-20
References:
Best casinos for online slot machines
References:
https://graph.org/Lucky-Green-Casino-Best-Slots–Bonuses-04-20
References:
Blackjack driveway sealer
References:
https://jetton-casino.online-spielhallen.de/
References:
Casino sanremo
References:
https://online-casino-europe.online-spielhallen.de/