%20-%20Workflow%20-%202025-10-02%20at%2012.31.35.png)





🧠 Prompt:
Please summarize this item's Post Body.
Use fewer than 150 characters. Return the summary, the item's name, and the item's slug.

🧠 Prompt:
Read the new blog we just drafted at <div>Document URL</div>. Then read every single summary of our other blogs (attached), and find in the list the 5 most relevant blogs that have content relevant to the new blog we wrote. I want you to find 5 blogs that we could add at the end of this new blog as a "Read more" section, as a way to suggest other content to our readers once they're done reading <div>Document URL</div>.
For example, if I have read a blog titled "The 10 best AI support agents for startups", I might be interested in reading "Intercom Fin AI vs Chatbase: What's the difference".
I want you to return the 5 blog summaries for the blogs you selected, as well as their names and their slugs, found at the end of each of their summary.

function getYourBlogUrls() {
var sitemapUrl = "https://gokickflip.com/server-sitemap.xml";
var response = UrlFetchApp.fetch(sitemapUrl, {muteHttpExceptions: true});
var xml = XmlService.parse(response.getContentText());
var root = xml.getRootElement();
var ns = XmlService.getNamespace("http://www.sitemaps.org/schemas/sitemap/0.9");
var urls = root.getChildren("url", ns);
var result = [];
urls.forEach(function(entry) {
var loc = entry.getChild("loc", ns).getText();
if (loc.indexOf("/blog/") > -1) { // only blog URLs
result.push([loc]);
}
});
return result.length ? result : [["No /blog/ URLs found"]];
}



🧠 Prompt:
Help me write a concluding section for the article we just wrote (attached). Start the section with an H2 header titled "Read more".
Then, write a bullet point list with each recommended article from the AI output at step 8. For each bullet point, write the blog name and hyperlink the blog name text with the URL for the blog (URL is "<div>URL</div>/<div>Slug</div>"). Note: Ensure your URL is valid by verifying it is included in the attached CSV sheet. What I mean by "text is hyperlinked" is that the blog name is linked with the blog URL, so that when you click on it it redirects. I do not want you to paste the blog URL after the blog name.
Then, add a dash "-" and write the summary for that blog.
Here's an example from Warmly.ai's blog (with notes from me in parentheses):
(this is formatted as an H2 header) Read More
(this is formatted as a hyperlink linking to the blog URL) AI for Sales Prospecting: How to Use It? [2025] - Learn how AI is being used for sales prospecting in 2025 and discover the best AI-powered platforms for it.
(this is formatted as a hyperlink linking to the blog URL) AI Marketing Agents: Use Cases and Top Tools for 2025 - Wondering what AI marketing agents are and how to best implement them? You’ll find all the info you need in this detailed guide.
(this is formatted as a hyperlink linking to the blog URL) AI in Sales and Marketing: How to Get More Sales? - AI can help you close more deals before you know it - learn how.
(this is formatted as a hyperlink linking to the blog URL) Best 10 AI Sales Agents In 2025 [Reviewed] - Need a sales agent that never sleeps? Find the one that best fits your use case in our in-depth review.
(this is formatted as a hyperlink linking to the blog URL) AI Email Marketing: How To Use It In 2025? - Want to improve open, reply, and click-through rates? AI can help you master the art of email marketing - find out how to leverage it for optimal results.
(this is formatted as a hyperlink linking to the blog URL) 10 Best AI Sales Tools for B2B Teams [2025] - Shortlist of the top 10 AI-powered sales tools to help you find more high-quality leads and close more deals.