<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Hacker News: tonyspiro</title><link>https://news.ycombinator.com/user?id=tonyspiro</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Mon, 15 Jun 2026 14:59:33 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=tonyspiro" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[Show HN: Team agents that manage your CMS from Slack, WhatsApp, and Telegram]]></title><description><![CDATA[
<p>Hey HN,<p>We're Cosmic (YC W19), a headless CMS. Today we're launching Team Agents and the Cosmic Agent.<p>Team Agents are AI-powered team members that live in Slack, WhatsApp, and Telegram. They have names, roles, persistent memory, and real capabilities. Not chatbots. Not one-off prompts. Persistent agents that work alongside your team.<p>Here's what they can do:<p>CONTENT AGENTS write blog posts, landing pages, and marketing copy. They generate images, add SEO metadata, and publish directly to the CMS. Message them in Slack, get a finished post back.<p>CODE AGENTS read your codebase, create branches, write components, and open PRs on GitHub. Need a new page? Message the agent. Review the PR. Merge and deploy.<p>COMPUTER USE AGENTS browse the web like a human. They log into Vercel Analytics, Google Search Console, Ahrefs, or any web tool. They take screenshots, extract data, and build reports. No API integrations needed. If you can see it in a browser, they can.<p>TEAM AGENTS tie it all together. They live in your messaging channels with persistent memory. They remember past conversations, learn your preferences, delegate tasks to other agents, and run on a schedule.<p>How we use it internally:<p>Every week, 3 Computer Use agents log into our analytics tools in parallel. A content agent synthesizes the data into a report with prioritized action items. Our content agent uses those insights to plan what to write next. Our code agent takes technical action items and ships fixes via PR.<p>Create content, publish it, measure performance, use the data to decide what to create next. The loop runs itself.<p>The Cosmic Agent comes built into every project from day one. It manages content, generates images and videos, browses the web, writes code, creates agents, and builds workflows. It doesn't count against agent limits.<p>Tech details:<p>- AI models: Claude Sonnet 4.6 / Opus 4.6<p>- Browser automation: Puppeteer-based computer use<p>- Channels: Slack, WhatsApp, Telegram, Dashboard<p>- API: REST<p>- Workflows: multi-step pipelines with parallel execution<p>Blog post: <a href="https://www.cosmicjs.com/blog/introducing-team-agents-and-cosmic-agent" rel="nofollow">https://www.cosmicjs.com/blog/introducing-team-agents-and-co...</a><p>Demo video: <a href="https://youtube.com/watch?v=En55pfQq2aM" rel="nofollow">https://youtube.com/watch?v=En55pfQq2aM</a><p>Happy to answer any questions.</p>
<hr>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=47590079">https://news.ycombinator.com/item?id=47590079</a></p>
<p>Points: 1</p>
<p># Comments: 0</p>
]]></description><pubDate>Tue, 31 Mar 2026 16:44:51 +0000</pubDate><link>https://www.cosmicjs.com/blog/introducing-team-agents-and-cosmic-agent</link><dc:creator>tonyspiro</dc:creator><comments>https://news.ycombinator.com/item?id=47590079</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47590079</guid></item><item><title><![CDATA[Show HN: Cosmic CLI – Build, deploy, and manage apps from your terminal with AI]]></title><description><![CDATA[
<p>Hi HN, I'm Tony, founder of Cosmic (a headless CMS). We just open-sourced a CLI that covers the full lifecycle of a content-driven app from creating the content model to deploying to production to updating the codebase all without leaving the terminal.<p>Here's what the full workflow looks like:<p><pre><code>  # Create a project with an AI-generated content model
  cosmic projects create
  # → "A recipe blog with recipes, categories, and authors"

  # Generate content
  cosmic content -p "Create 5 recipes with images across different categories"

  # Build a full-stack app wired to your content
  cosmic build -p "A modern recipe blog with search and category filtering"
  # → Generates a Next.js app, pushes to GitHub

  # Deploy
  cosmic deploy start --watch
  # → Deployed to Vercel

  # Later: update the existing codebase with natural language
  cosmic update recipe-blog -p "Add dark mode and a favorites feature" -b feature-branch

  # Create a PR and merge
  cosmic repos pr create <repoId>
  cosmic repos pr merge <repoId> 1
  # → Auto-deploys to production
</code></pre>
That's the part I think is interesting: it's not just one step, it's the full loop. Create content, build the app, ship it, iterate on it, merge and redeploy. Each step is a single command.<p>A few of the more technically interesting pieces:<p>AI agents. You can create three types: content agents (CMS operations), repository agents (code changes on branches), and computer use agents (browser automation via Puppeteer with AI vision). Chain them into multi-step workflows with scheduling.<p>Interactive shell. "cosmic shell" drops into a REPL where you navigate workspaces and projects like a filesystem: cd, ls, pwd. System commands with ! prefix. No cosmic prefix needed.<p>Multi-model. Supports Claude Opus/Sonnet/Haiku, GPT-5/5.2/5-mini/4o, and Gemini 3 Pro. Set a default or specify per-command.<p>It also handles the day-to-day stuff you'd normally do in a dashboard: billing, team roles, webhooks, domain/DNS config, environment variables.<p>Built with TypeScript and Commander.js. MIT licensed.<p>Install: npm install -g @cosmicjs/cli<p>GitHub: <a href="https://github.com/cosmicjs/cli" rel="nofollow">https://github.com/cosmicjs/cli</a><p>Docs: <a href="https://www.cosmicjs.com/docs/cli" rel="nofollow">https://www.cosmicjs.com/docs/cli</a><p>Happy to answer questions.</p>
<hr>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=46965065">https://news.ycombinator.com/item?id=46965065</a></p>
<p>Points: 2</p>
<p># Comments: 0</p>
]]></description><pubDate>Tue, 10 Feb 2026 19:01:50 +0000</pubDate><link>https://github.com/cosmicjs/cli</link><dc:creator>tonyspiro</dc:creator><comments>https://news.ycombinator.com/item?id=46965065</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46965065</guid></item><item><title><![CDATA[Show HN: Cosmic AI Workflows – Chain AI agents to automate multi-step projects]]></title><description><![CDATA[
<p>Hi, I'm Tony, founder of Cosmic (AI-powered headless CMS and application development platform). We kept running into the same problem: create a blog post with the help of an AI agent, use the output for another prompt to create social posts, then manually post to X, LinkedIn, Facebook. Every single time.<p>So we built AI Workflows — chain multiple agents together and let them run autonomously, with each step receiving outputs from previous steps.<p>Three agent types you can chain:<p>- Code Agents: Build features in GitHub with commits and pull requests.<p>- Content Agents: Generate CMS content with context injection from previous steps.<p>- Computer Use Agents: Automate browser workflows and record demos.<p>How it works:<p>1. Define steps with agent type, prompt, and configuration<p>2. Steps run sequentially or in parallel (configurable)<p>3. Context passes automatically between steps<p>4. Trigger manually, on a schedule (cron), or via CMS and API events (object.created, object.edited, etc.)<p>5. Add approval gates for human review before critical steps<p>Example: Autopilot feature development:<p>Step 1: Content Agent writes a feature spec based on user feedback<p>Step 2: Code Agent builds the feature, creates PR, and deploys to production<p>Step 3: Content Agent generates documentation and a changelog entry<p>Step 4: Computer Use Agent posts update to team Slack with the PR link and preview URL<p>Currently in beta. Would love feedback on the workflow model and what use cases you'd want to automate.</p>
<hr>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=46784297">https://news.ycombinator.com/item?id=46784297</a></p>
<p>Points: 2</p>
<p># Comments: 0</p>
]]></description><pubDate>Tue, 27 Jan 2026 18:37:32 +0000</pubDate><link>https://www.cosmicjs.com/blog/introducing-ai-workflows</link><dc:creator>tonyspiro</dc:creator><comments>https://news.ycombinator.com/item?id=46784297</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46784297</guid></item><item><title><![CDATA[Claude Sonnet 4 vs. 4.5: A Real-World Comparison]]></title><description><![CDATA[
<p>Article URL: <a href="https://www.cosmicjs.com/blog/claude-sonnet-4-vs-45-a-real-world-comparison">https://www.cosmicjs.com/blog/claude-sonnet-4-vs-45-a-real-world-comparison</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=45451800">https://news.ycombinator.com/item?id=45451800</a></p>
<p>Points: 1</p>
<p># Comments: 0</p>
]]></description><pubDate>Thu, 02 Oct 2025 16:25:27 +0000</pubDate><link>https://www.cosmicjs.com/blog/claude-sonnet-4-vs-45-a-real-world-comparison</link><dc:creator>tonyspiro</dc:creator><comments>https://news.ycombinator.com/item?id=45451800</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45451800</guid></item><item><title><![CDATA[Show HN: Open source, AI-enhanced Mailchimp alternative]]></title><description><![CDATA[
<p>Article URL: <a href="https://github.com/cosmic-community/email-marketing">https://github.com/cosmic-community/email-marketing</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=45228839">https://news.ycombinator.com/item?id=45228839</a></p>
<p>Points: 1</p>
<p># Comments: 0</p>
]]></description><pubDate>Sat, 13 Sep 2025 02:30:54 +0000</pubDate><link>https://github.com/cosmic-community/email-marketing</link><dc:creator>tonyspiro</dc:creator><comments>https://news.ycombinator.com/item?id=45228839</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45228839</guid></item><item><title><![CDATA[Show HN: Cosmic AI Platform – Build and deploy CMS sites using natural language]]></title><description><![CDATA[
<p>Hey HN,<p>I'm Tony, CEO at Cosmic (YC W19). We're excited to announce the launch of the Cosmic AI Platform, a revolutionary system that transforms how you create content, build, and deploy applications.<p>The Cosmic AI Platform reinvents what a CMS can be - it's now a complete AI-enabled application development and deployment platform. Build and deploy anything you can imagine using natural language, in minutes.<p>Key features:<p>- AI Content Studio: Generate complete content models and content from natural language descriptions<p>- AI-Powered Development: Build applications with Next.js, React, Astro, and Vue.js using AI<p>- Full Deployment Pipeline: GitHub integration, Vercel deployments, environment management, and domain services<p>The platform is available now on all Cosmic accounts. We've increased our free tier to 300k tokens (up from 10k) so you can try these new capabilities.<p>Log in to the Cosmic dashboard to try it out: <a href="https://app.cosmicjs.com/login" rel="nofollow">https://app.cosmicjs.com/login</a> and read more about the release here: <a href="https://www.cosmicjs.com/blog/introducing-the-cosmic-ai-platform" rel="nofollow">https://www.cosmicjs.com/blog/introducing-the-cosmic-ai-plat...</a> We'd love to get your feedback!<p>Tony</p>
<hr>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=45027811">https://news.ycombinator.com/item?id=45027811</a></p>
<p>Points: 2</p>
<p># Comments: 0</p>
]]></description><pubDate>Tue, 26 Aug 2025 15:18:11 +0000</pubDate><link>https://www.cosmicjs.com/blog/introducing-the-cosmic-ai-platform</link><dc:creator>tonyspiro</dc:creator><comments>https://news.ycombinator.com/item?id=45027811</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45027811</guid></item><item><title><![CDATA[Show HN: Cosmic Intelligence – a suite of AI features for the Cosmic CMS]]></title><description><![CDATA[
<p>Hey HN,<p>I’m Tony Spiro founder of Cosmic (YC W19). Cosmic is a headless content management system (CMS). We provide a web dashboard to create content and API tools to deliver content to any website or app.<p>We just released Cosmic Intelligence, a suite of AI features to help you optimize product development, content editing, and collaboration using the Cosmic CMS.<p>With Cosmic Intelligence you can:<p>- Create AI generated text<p>- Create AI generated images<p>- Automatically localize content<p>- Automatically add image alt text<p>- Use AI to generate content models<p>- Use AI for development assistance and API chat<p>- Get insights into media assets including PDFs and spreadsheets<p>We built this because we are always looking for ways to improve the content creation and delivery process. Using AI features for automation and chat interfaces, we believe content management workflows can be dramatically improved.<p>One of my favorite features in this release is the ability to communicate with the Cosmic API using AI. This gives developers an AI pair programmer, helping them build with our API and documentation included for reference. You can also upload an image as a reference, enabling you to get assistance with both the content implementation and frontend design.<p>Cosmic Intelligence is available on all Cosmic accounts, including our free plan. Read more in the announcement here: <a href="https://www.cosmicjs.com/blog/introducing-cosmic-intelligence">https://www.cosmicjs.com/blog/introducing-cosmic-intelligenc...</a>. Let me know what you think in the comments.<p>Thanks,<p>Tony</p>
<hr>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=42117143">https://news.ycombinator.com/item?id=42117143</a></p>
<p>Points: 1</p>
<p># Comments: 0</p>
]]></description><pubDate>Tue, 12 Nov 2024 16:47:32 +0000</pubDate><link>https://www.cosmicjs.com/blog/introducing-cosmic-intelligence</link><dc:creator>tonyspiro</dc:creator><comments>https://news.ycombinator.com/item?id=42117143</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42117143</guid></item><item><title><![CDATA[Show HN: Message App – Built with Next.js, Server Actions, and Cosmic CMS]]></title><description><![CDATA[
<p>Hi HN,<p>I'm Tony with Cosmic. I built this Cosmic Message App (<a href="https://github.com/cosmicjs/cosmic-message-app">https://github.com/cosmicjs/cosmic-message-app</a>) to show how to use Next.js, React Server Actions, and Cosmic CMS to build a simple app to add text and upload media to a message feed. All without exposing any API keys to the client.<p>I found the development process pretty straightforward using Next.js, Cosmic JavaScript SDK, File Upload Block, and React Server Actions.<p>Overall I'm optimistic about this stack to make building user generated content apps like this, much easier.<p>Let me know what you think in the comments.<p>Tony</p>
<hr>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=40801957">https://news.ycombinator.com/item?id=40801957</a></p>
<p>Points: 1</p>
<p># Comments: 0</p>
]]></description><pubDate>Wed, 26 Jun 2024 16:51:08 +0000</pubDate><link>https://github.com/cosmicjs/cosmic-message-app</link><dc:creator>tonyspiro</dc:creator><comments>https://news.ycombinator.com/item?id=40801957</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=40801957</guid></item><item><title><![CDATA[New comment by tonyspiro in "After 6 years, I'm over GraphQL"]]></title><description><![CDATA[
<p>At Cosmic, we released our latest API version without a GraphQL option in favor of a declarative REST API using `props` <a href="https://www.cosmicjs.com/docs/api/objects#get-objects">https://www.cosmicjs.com/docs/api/objects#get-objects</a>.</p>
]]></description><pubDate>Fri, 31 May 2024 17:57:40 +0000</pubDate><link>https://news.ycombinator.com/item?id=40538312</link><dc:creator>tonyspiro</dc:creator><comments>https://news.ycombinator.com/item?id=40538312</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=40538312</guid></item><item><title><![CDATA[New comment by tonyspiro in "Show HN: Cosmic Pages – free, dedicated web pages to host your Cosmic content"]]></title><description><![CDATA[
<p>You can check out an example page here: <a href="https://radventures-production.cosmic.site/amazing-motorcycle-ride-through-the-jungle-63c73cda3508460008cd2202" rel="nofollow">https://radventures-production.cosmic.site/amazing-motorcycl...</a></p>
]]></description><pubDate>Tue, 23 Apr 2024 18:06:43 +0000</pubDate><link>https://news.ycombinator.com/item?id=40135081</link><dc:creator>tonyspiro</dc:creator><comments>https://news.ycombinator.com/item?id=40135081</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=40135081</guid></item><item><title><![CDATA[Show HN: Cosmic Pages – free, dedicated web pages to host your Cosmic content]]></title><description><![CDATA[
<p>Hi HN,<p>I'm Tony, CEO at Cosmic (YC W19). Today we are releasing Cosmic Pages - free, dedicated web pages to host your Cosmic content. (Read the announcement here: <a href="https://www.cosmicjs.com/blog/introducing-cosmic-pages">https://www.cosmicjs.com/blog/introducing-cosmic-pages</a>)<p>With Cosmic Pages, you can host any Object (content item) from the Cosmic CMS on a dedicated public URL, with a single click, no coding required. This enables you to send your content out for review without login or custom coding.<p>We built this because we have seen teams struggle with using a headless CMS to host their content because of the custom development needed to create and host a webpage to display the content. We thought it would be nice to offer a way for our users to create content and share seamlessly without needing to custom code and host a webpage themselves.<p>With Cosmic Pages, you can build your content model, create your content, and publish your page to the web in minutes, for free.<p>Let me know what you think in the comments.<p>Thanks,
Tony</p>
<hr>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=40135039">https://news.ycombinator.com/item?id=40135039</a></p>
<p>Points: 3</p>
<p># Comments: 1</p>
]]></description><pubDate>Tue, 23 Apr 2024 18:03:21 +0000</pubDate><link>https://news.ycombinator.com/item?id=40135039</link><dc:creator>tonyspiro</dc:creator><comments>https://news.ycombinator.com/item?id=40135039</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=40135039</guid></item><item><title><![CDATA[New comment by tonyspiro in "Show HN: Blocks by Cosmic – React components for headless CMS"]]></title><description><![CDATA[
<p>I haven't had a chance to try out Prismic recently, but I encourage you to try both and make up your own mind.</p>
]]></description><pubDate>Tue, 23 Jan 2024 22:16:30 +0000</pubDate><link>https://news.ycombinator.com/item?id=39110731</link><dc:creator>tonyspiro</dc:creator><comments>https://news.ycombinator.com/item?id=39110731</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=39110731</guid></item><item><title><![CDATA[New comment by tonyspiro in "Show HN: Blocks by Cosmic – React components for headless CMS"]]></title><description><![CDATA[
<p>You are correct. Blocks are frontend components built with React.</p>
]]></description><pubDate>Tue, 23 Jan 2024 21:14:04 +0000</pubDate><link>https://news.ycombinator.com/item?id=39109930</link><dc:creator>tonyspiro</dc:creator><comments>https://news.ycombinator.com/item?id=39109930</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=39109930</guid></item><item><title><![CDATA[Show HN: Blocks by Cosmic – React components for headless CMS]]></title><description><![CDATA[
<p>Hi HN, today we are releasing Blocks (<a href="https://blocks.cosmicjs.com/">https://blocks.cosmicjs.com/</a>), our new data infused components for building Cosmic (<a href="https://www.cosmicjs.com/">https://www.cosmicjs.com/</a>) (W19) powered websites and apps.<p>Cosmic is a headless content management system (CMS). We provide a dashboard to create content and API tools to deliver content to any website or app.<p>Blocks are pre-built website components that you can drop into your project. Choose from landing pages, blogs, image galleries, product pages, and more. With Blocks you can build these features with Cosmic faster than ever.<p>It's our goal to empower your team to create the best content powered websites and apps. Blocks can be considered the missing "head" to connect with the Cosmic headless CMS. It is our opinionated component frontend for building highly scalable and performant web applications built with tools we think offer a development experience and performance advantage (React Server Components, Next.js, and Tailwind CSS).<p>React Server Components (RSCs) have unlocked a new paradigm in building data-driven web applications. By safely encapsulating data-fetching inside components, we can use RSCs as building blocks to enable faster and more scalable application development. We are excited for the potential of RSCs and Blocks. This is just the beginning.<p>To get started, go to the Blocks website (<a href="https://blocks.cosmicjs.com/">https://blocks.cosmicjs.com/</a>) and follow the steps for installation. View the Blocks demo (Agency Template) (<a href="https://cosmic-agency-template.vercel.app/" rel="nofollow">https://cosmic-agency-template.vercel.app/</a>) to see all of the Blocks in action.<p>Blocks are built to give developers a head start with features that are:<p>- Performance optimized
- Draft preview ready
- Mobile responsive
- Localization ready
- Dark mode ready
- Customizable
- Accessible
- Type safe<p>Blocks not only provide a fast development experience, they have been optimized for speed and performance by default, so you can ship production-ready faster. Check out the Blocks demo (Agency Template) (<a href="https://cosmic-agency-template.vercel.app/" rel="nofollow">https://cosmic-agency-template.vercel.app/</a>) to see how building with Blocks can give you high scores across the board for performance, SEO, and accessibility.<p>Blocks are open source (<a href="https://github.com/cosmicjs/blocks">https://github.com/cosmicjs/blocks</a>) and built with React Server Components, Next.js, TypeScript, Tailwind CSS, and powered by the Cosmic content management system. You can install Blocks into any new or existing Next.js (v13+) codebase using the Blocks CLI (<a href="https://www.npmjs.com/package/@cosmicjs/blocks" rel="nofollow">https://www.npmjs.com/package/@cosmicjs/blocks</a>).<p>Check it out on the Blocks website (<a href="https://blocks.cosmicjs.com/">https://blocks.cosmicjs.com/</a>) and let us know what you think in the comments.<p>Tony</p>
<hr>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=39107536">https://news.ycombinator.com/item?id=39107536</a></p>
<p>Points: 21</p>
<p># Comments: 5</p>
]]></description><pubDate>Tue, 23 Jan 2024 18:33:04 +0000</pubDate><link>https://news.ycombinator.com/item?id=39107536</link><dc:creator>tonyspiro</dc:creator><comments>https://news.ycombinator.com/item?id=39107536</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=39107536</guid></item><item><title><![CDATA[New comment by tonyspiro in "Show HN: Cosmic Media – Search millions of stock photos and videos"]]></title><description><![CDATA[
<p>This is an initial release. Probably needs some API throttling and code could use some refactoring.</p>
]]></description><pubDate>Tue, 22 Aug 2023 16:37:35 +0000</pubDate><link>https://news.ycombinator.com/item?id=37225178</link><dc:creator>tonyspiro</dc:creator><comments>https://news.ycombinator.com/item?id=37225178</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=37225178</guid></item><item><title><![CDATA[Show HN: Cosmic Media – Search millions of stock photos and videos]]></title><description><![CDATA[
<p>Hello HN,<p>I’m Tony, the CEO of Cosmic (https://www.cosmicjs.com), we provide a headless CMS and API toolkit to create and deliver content to websites and apps. Today, we are releasing Cosmic Media which enables you to search millions of high-quality, royalty-free, stock photos, videos, and vectors from popular online media services: Unsplash, Pexels, Giphy, and Pixabay from one convenient interface. It also includes AI-generated images from OpenAI. Check it out here: https://cosmicmedia.vercel.app<p>We built it to solve our own need to consolidate our existing media extensions, which were individual media extensions using the Unsplash API and Pexels Video API, and we thought, "why not combine them into one"? Rather than search from different stock media websites, seems like it would be nice to aggregate it into one interface. Then we sort of thought about what else might someone want for adding media to their content, so we added DALL-E AI image generation. We've been using it internally and find that it's saved us some time when searching for media to add to our blog posts.<p>We are offering it as both a stand-alone open source tool and as a Cosmic extension which can be added to your projects for easy access during content creation from the Cosmic dashboard. Check out the code and feel free to customize and extend it to suit your needs: https://github.com/cosmicjs/cosmic-media-extension<p>Let me know what you think in the comments.<p>- Tony</p>
<hr>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=37223580">https://news.ycombinator.com/item?id=37223580</a></p>
<p>Points: 46</p>
<p># Comments: 10</p>
]]></description><pubDate>Tue, 22 Aug 2023 14:51:12 +0000</pubDate><link>https://news.ycombinator.com/item?id=37223580</link><dc:creator>tonyspiro</dc:creator><comments>https://news.ycombinator.com/item?id=37223580</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=37223580</guid></item><item><title><![CDATA[New comment by tonyspiro in "Show HN: Cosmic – Headless CMS and API toolkit v2.0"]]></title><description><![CDATA[
<p>Thank you. Will keep this in mind.</p>
]]></description><pubDate>Tue, 23 May 2023 20:05:32 +0000</pubDate><link>https://news.ycombinator.com/item?id=36050135</link><dc:creator>tonyspiro</dc:creator><comments>https://news.ycombinator.com/item?id=36050135</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=36050135</guid></item><item><title><![CDATA[New comment by tonyspiro in "Show HN: Cosmic – Headless CMS and API toolkit v2.0"]]></title><description><![CDATA[
<p>Nice try, we've been around since 2014. I had no idea about them, or even knew if they were around, when I named it.</p>
]]></description><pubDate>Tue, 23 May 2023 20:03:26 +0000</pubDate><link>https://news.ycombinator.com/item?id=36050119</link><dc:creator>tonyspiro</dc:creator><comments>https://news.ycombinator.com/item?id=36050119</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=36050119</guid></item><item><title><![CDATA[New comment by tonyspiro in "Show HN: Cosmic – Headless CMS and API toolkit v2.0"]]></title><description><![CDATA[
<p>A CMS is something teams spend a lot of time in. And it's worth it to pay a little more for a great user experience. We spent a lot of time focusing on the user experience.<p>There are a lot of free or cheaper CMS options out there with a not great user experience.</p>
]]></description><pubDate>Tue, 23 May 2023 19:55:35 +0000</pubDate><link>https://news.ycombinator.com/item?id=36050004</link><dc:creator>tonyspiro</dc:creator><comments>https://news.ycombinator.com/item?id=36050004</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=36050004</guid></item><item><title><![CDATA[New comment by tonyspiro in "Show HN: Cosmic – Headless CMS and API toolkit v2.0"]]></title><description><![CDATA[
<p>Thank you. Take it for a spin and let me know if you have any questions.</p>
]]></description><pubDate>Tue, 23 May 2023 18:36:45 +0000</pubDate><link>https://news.ycombinator.com/item?id=36048820</link><dc:creator>tonyspiro</dc:creator><comments>https://news.ycombinator.com/item?id=36048820</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=36048820</guid></item></channel></rss>