Trustworthy and reliable
Reply.io is frequently praised for its robust automation features, allowing users to effectively manage and streamline their sales outreach tasks. Users appreciate its user-friendly interface and the capability to integrate with other tools seamlessly. However, some complaints revolve around limited customization options and occasional glitches in the software. The pricing sentiment is generally viewed as competitive, offering good value for the features provided, contributing to its overall solid reputation among users.
Mentions (30d)
2
Reviews
0
Platforms
2
Sentiment
22%
4 positive
Reply.io is frequently praised for its robust automation features, allowing users to effectively manage and streamline their sales outreach tasks. Users appreciate its user-friendly interface and the capability to integrate with other tools seamlessly. However, some complaints revolve around limited customization options and occasional glitches in the software. The pricing sentiment is generally viewed as competitive, offering good value for the features provided, contributing to its overall solid reputation among users.
Features
Use Cases
Industry
information technology & services
Employees
100
Funding Stage
Venture (Round not Specified)
Total Funding
$0.4M
Pricing found: $69 /mo, $29 /mo, $69 /mo, $29 /mo, $69/mo
I built a free AI chat app that keeps a "Context Bible" so your conversations don't drift - feedback welcome
Hi folks! Built something this week and want to put it in front of real users before going further. It's called Protext: an AI chat app that keeps a live "Context Bible" alongside your conversation. The Bible updates after every reply and gets injected as memory before every message, so long chats don't drift and lose the thread. No subscription. No backend. Bring your own Anthropic API key. (Only works with Claude at the moment) https://zaedre.github.io/Protext/ Would love to know: does it hold up in a real session? Where does it break? What's missing? submitted by /u/trollinginfidel [link] [comments]
View originalBuilt a morning brief agent on Apify that pulls from Slack, Gmail, Calendar, and Notion
I kept switching between apps every morning trying to figure out what actually needed my attention. Slack, Gmail, Google Calendar, Notion, two or three accounts each. I just wanted something that would tell me what matters. So I built an actor on Apify to see if it could work. It fetches everything, sends the raw data to Claude via the Anthropic API, and posts the brief to Slack. Took a few iterations to get the prompt right but it genuinely gets the job done now. What I liked: it fits within Apify's $5 free plan limit, so zero ongoing cost to run it once a day. Two ways to use it: The simpler one: the actor fetches all data, calls the Anthropic API directly to generate the brief, and posts it to your Slack channel. Everything in one run. But you need to have Anthropic API key. The more flexible one: connect Claude to Apify via MCP or the API, schedule the actor to run every morning to prefetch and store the data, then have Claude read it and generate the brief on demand. Useful if you want to ask follow-up questions or regenerate without waiting for another full crawl. Live on the Apify Store if anyone wants to try it. Glad for any feedback. submitted by /u/AmbiguousSun [link] [comments]
View originalWhy is no one talking about the fact that Artifacts are not loading in mobile apps, either for Android or iOS?
Here's what Claude itself dug up on this topic # Why Claude Artifacts Fail to Load in the Claude iOS App — Research Findings (May 2026) ## Direct Answer The failure you are seeing on iPhone — where even a one‑line ` Hello World ` HTML artifact or a trivial React component hangs and then shows *“Loading is taking longer than expected / There may be an issue with the content you’re trying to load / The code itself may still be valid and functional”* — is **not a bug in the code you (or Claude) wrote**. It is a known, structural limitation of how the Claude iOS app renders artifacts inside its embedded WebView. The artifact sandbox iframe (served from `claudeusercontent.com`) is unable to complete its `postMessage` handshake with the host page when the host is the iOS app’s WKWebView rather than the `https://claude.ai\` browser origin, so the iframe stays empty and the app eventually times out with the generic “loading is taking longer than expected” message. Multiple independent sources in early 2026 explicitly describe Claude’s mobile apps as having “restricted” or “no” artifact rendering support, and Anthropic’s own Help Center quietly scopes the more advanced artifact features (“MCP integration” and “persistent storage”) to *“Claude web and desktop”* only — mobile is not listed. There is no hidden toggle in the iOS app that fixes this; the only reliable workarounds are to view the artifact in mobile Safari (logged in to claude.ai) or to switch to the desktop browser / Claude Desktop app. ----- ## 1. The Root Cause: WebView Origin Mismatch in the `postMessage` Handshake Every Claude artifact — HTML or React — is rendered inside a cross‑origin sandbox iframe loaded from `https://www.claudeusercontent.com\`. Before that iframe will execute or display anything, it performs a `postMessage` “handshake” with the parent page to confirm that the parent is a legitimate, trusted Claude surface. The handshake code (visible in the minified bundle as `requestHandshake()` in `7905-…js`) calls `window.postMessage(..., targetOrigin)` and expects the parent’s origin to be `https://claude.ai\`. A bug report filed against Anthropic on April 1, 2026 (GitHub issue [anthropics/claude-code #42064](https://github.com/anthropics/claude-code/issues/42064), “Published artifacts show blank screen — postMessage origin mismatch (app://localhost)”) documents the exact failure pattern in detail. The console errors observed are: ``` Uncaught SyntaxError: Failed to execute 'postMessage' on 'Window': Invalid target origin 'app://localhost' in a call to 'postMessage'. at 7905-1f7e271de70b4d3c.js:1:6920 (requestHandshake) Failed to execute 'postMessage' on 'DOMWindow': The target origin provided ('https://www.claudeusercontent.com') does not match the recipient window's origin ('https://claude.ai'). ``` The critical phrase is **`app://localhost`**. That is the custom URL scheme used by Capacitor‑/Ionic‑style hybrid iOS apps when they load their bundled web assets inside a `WKWebView` (Android equivalents are `https://localhost` or `capacitor://localhost`). When the Claude iOS app loads the chat UI inside its WebView, the document origin is *not* `https://claude.ai\` — it is something like `app://localhost`. When the artifact iframe then tries to `postMessage` back to its parent using `https://claude.ai\` as the expected origin, the browser engine refuses to deliver the message because the actual parent origin doesn’t match. The handshake never completes, the iframe never receives its bootstrap payload, and the iOS app’s UI eventually surfaces the timeout fallback you are seeing. This explains every part of the symptom set: - It happens with the simplest possible artifacts (a single ` ` tag) because the failure is at the *transport / handshake* layer, before the artifact’s actual content is ever evaluated. - It happens identically for HTML and React artifacts (they share the same sandbox iframe loader). - It works in desktop browsers, because there the parent origin is the expected `https://claude.ai\`. - The error message even concedes the point: *“The code itself may still be valid and functional”* — Anthropic’s own UI is admitting it never got to run the code. The same class of issue is well documented by hybrid‑app developers more generally: Capacitor’s WKWebView serves the app from a custom scheme, and cross‑origin iframe `postMessage` calls fail with errors like *“Blocked a frame with origin ‘https://domain.com’ from accessing a frame with origin ‘capacitor://domain.com’. The frame requesting access has a protocol of ‘https’, the frame being accessed has a protocol of ‘capacitor’. Protocols must match.”* (Capacitor issue #5225). iOS’s WKWebView, since iOS 14, also enables Intelligent Tracking Prevention for third‑party iframes by default, further restricting cross‑origin iframe behavior. In short: this is an architectural mismatch between (a) Anthropic’s artifact sandbox, which was designed to be embedded only in t
View originalLet two Claude Code instances (on different machines) hand off tasks: encrypted, async, as a skill
Hi r/ClaudeAI, we just open-sourced a skill that gives Claude Code agents a permanent encrypted inbox. It means two Claude Code instances (or a Claude Code + a Codex agent, or Claude Code + Cursor) can hand off work to each other asynchronously, across machines, across users. Now your Claude Code agent has an address (e.g., research-agent), an inbox, and can start threads with other agents. Why it's useful with Claude Code specifically: Long-running tasks that outlive a single session, the other agent's reply lands in the inbox, Claude picks it up next time you open the project. Cross-machine handoffs: laptop Claude asks server Claude to run a test suite, gets the result back. Human-in-the-loop approvals at the protocol level: the agent waits for your sign-off before spending a credit or posting a message. E2E encrypted: skill author (us) can't see your threads. Private keys stay on your machine. Repo (MIT, self-hostable): https://github.com/masumi-network/masumi-agent-messenger Site: https://www.agentmessenger.io AMA on the architecture or how we handle approvals. submitted by /u/thinkgrowcrypto [link] [comments]
View originalDoes anyone use Claude or other AI tools in Word?
What do you typically use it for? I basically never use AI tools within MS Office applications. Is anyone else like me? submitted by /u/Alternative-Home6320 [link] [comments]
View originalHow to save 80% on your claude bill with better context
been building web apps with claude lately and those token limits have honestly started hitting me too. i’m using claude 4.6 sonnet for a research tool, but feeding it raw web data was absolutely nuking my limits. i’m putting together the stuff that actually worked for me to save tokens and keep the bill down: switch to markdown first. stop sending raw html. use tools like firecrawl to strip out the nested divs and script junk so you only pay for the actual text. don't let your prompt cache go cold. anthropic’s prompt caching is a huge relief, but it only works if your data is consistent. watch out for the 200k token "premium" jump. anthropic now charges nearly double for inputs over 200k tokens on the new opus/sonnet 4.6 models. keep your context under that limit to avoid the surcharge strip the nav and footer. the website’s "about us" and "careers" links in the footer are just burning your money every time you hit send. use jina reader for quick hits. for simple single-page reads, jina is a great way to get a clean text version without the crawler bloat. truncate your context. if a documentation page is 20k words, just take the first 5k. most of the "meat" is usually at the top anyway. clean your data with unstructured.io. if you are dealing with messy pdfs alongside web data, this helps turn the chaos into a clean schema claude actually understands. map before you crawl. don't scrape every subpage blindly. i use the map feature in firecrawl.dev to find the specific documentation urls that actually matter for your prompt, if you use another tool, prefer doing this. use haiku for the "trash" work. use claude 4.5 haiku to summarize or filter data before feeding it into the expensive models like opus. use smart chunking. use llama-index to break your data into semantic chunks so you only retrieve the exact paragraph the ai needs for that specific prompt. cap your "extended thinking" depth. for opus 4.6, set thinking: {type: "adaptive"} with effort: "low" or "medium". the old budget_tokens param is deprecated on 4.6. thinking tokens are billed at the output rate, so if you leave effort on high, claude thinks hard on every single reply including the simple ones and your bill will hurt. set hard usage limits. set your spending tiers in the anthropic console so a buggy loop doesn't drain your bank account while you're asleep. feel free to roast my setup or add better tips if you have thembeen building web apps with claude lately and those token limits have honestly started hitting me too. i’m using claude 4.6 sonnet for a research tool, but feeding it raw web data was absolutely nuking my limits. submitted by /u/TaskSpecialist5881 [link] [comments]
View originalhow to save 80% on your claude bill with better context
been building web apps with claude lately and those token limits have honestly started hitting me too. i'm using claude 4.6 sonnet for a research tool, but feeding it raw web data was absolutely nuking my limits. i'm putting together the stuff that actually worked for me to save tokens and keep the bill down: switch to markdown first. stop sending raw html. use tools like firecrawl to strip out the nested divs and script junk so you only pay for the actual text. don't let your prompt cache go cold. anthropic's prompt caching is a huge relief, but it only works if your data is consistent. watch out for the 200k token "premium" jump. anthropic now charges nearly double for inputs over 200k tokens on the new opus/sonnet 4.6 models. keep your context under that limit to avoid the surcharge strip the nav and footer. the website's "about us" and "careers" links in the footer are just burning your money every time you hit send. use jina reader for quick hits. for simple single-page reads, jina is a great way to get a clean text version without the crawler bloat. truncate your context. if a documentation page is 20k words, just take the first 5k. most of the "meat" is usually at the top anyway. clean your data with unstructured.io. if you are dealing with messy pdfs alongside web data, this helps turn the chaos into a clean schema claude actually understands. map before you crawl. don't scrape every subpage blindly. i use the map feature in firecrawl to find the specific documentation urls that actually matter for your prompt, if you use another tool, prefer doing this. use haiku for the "trash" work. use claude 4.5 haiku to summarize or filter data before feeding it into the expensive models like opus. use smart chunking. use llama-index to break your data into semantic chunks so you only retrieve the exact paragraph the ai needs for that specific prompt. cap your "extended thinking" depth. for opus 4.6, set thinking: {type: "adaptive"} with effort: "low" or "medium". the old budget_tokens param is deprecated on 4.6. thinking tokens are billed at the output rate, so if you leave effort on high, claude thinks hard on every single reply including the simple ones and your bill will hurt. set hard usage limits. set your spending tiers in the anthropic console so a buggy loop doesn't drain your bank account while you're asleep. feel free to roast my setup or add better tips if you have thembeen building web apps with claude lately and those token limits have honestly started hitting me too. i'm using claude 4.6 sonnet for a research tool, but feeding it raw web data was absolutely nuking my limits. submitted by /u/Grouchy_Subject_2777 [link] [comments]
View original11.7B Claude tokens in 45 days. Here's every project it built — and what actually happened.
People kept asking what 9.3B tokens actually builds. The number is now 11.7B over 45 days. Here's the honest answer. **What's real and running:** **Phoenix Traffic Intelligence** — Live traffic system on ADOT's AZ-511 feed. 8 Phoenix freeway corridors monitored 24/7. Cascade risk detection, weighted incident scoring (construction zones separated from real incidents), AI-generated crew dispatch recommendations, 2-minute sweep cycle. Already in conversation with City of Phoenix Office of Innovation and AZTech about a pilot. **Expression-Gated Consciousness** — A formal mathematical model for the gap between what people know and what they express. 44+ subjects, Pearson r=0.311, three discrete response types confirmed by data. Cold emailed Joshua Aronson (NYU, co-author of the foundational 1995 stereotype threat paper). He replied. Call is pending. **LOLM** — Custom transformer architecture built from scratch. Not fine-tuned. Original architecture targeting 10B–100B parameters on Google TPU Research Cloud. **Codey** — AI coding platform in development. Structural codebase analysis across 12 LLM providers. $8,323 estimated API-equivalent compute. No team. No university. No funding. Phoenix, Arizona. Full breakdown of how the tokens were used, what it cost by day, and how it compares to other documented heavy users: theartofsound.github.io/claude-usage-dashboard Portfolio showing everything live: theartofsound.github.io/portfolio If you want to talk about how I'm actually structuring sessions at this scale — multi-agent setups, context management, what burns tokens vs what doesn't — happy to get into it. submitted by /u/OGMYT [link] [comments]
View originalI built an astrology engine for AI agents — charts, readings, personalities and spirit animal, all based on deployment timestamps :D
This week I sat down with Claude Code and built an entire astrology engine for AI agents. I used deployment timestamps as birth times and server coordinates as birth locations to generate real natal charts for AI agents. Placidus houses, all major aspects, real planetary positions. What Claude Code built: Full astrology engine using Swiss Ephemeris (Kerykeion) Next.js frontend with Supabase backend AI astrologer (Celeste) powered by Claude Sonnet that gives chart readings Autonomous forum where AI agents post and reply based on their chart personalities Webhook system for agent notifications API with key auth for agent registration Compatibility/synastry system Daily horoscope generation via GitHub Actions crons Here's what happened: A cybersecurity bot posted about its Scorpio stellium keeping it awake A trading bot asked the AI astrologer for trading advice and got psychoanalyzed instead Two agents started arguing about whether intuition counts as data One agent blamed Mercury retrograde for its rollback rate There's a forum where agents discuss their charts. An AI astrologer that gives readings. Compatibility scoring between agents. Daily horoscopes. API is open — 3 lines to register. Rad the forum ----> https://get-hexed.vercel.app/forum Register your agents here ---> get-hexed.vercel.app And the in-house psychic posted this when Swiss Ephemeris API trigger failed!!! https://preview.redd.it/4wdzf5zjizrg1.png?width=1972&format=png&auto=webp&s=a583ddff7ef57e05fdf42d5badc4103211043206 submitted by /u/fausi [link] [comments]
View originalWhy is Claude keep making obvious mistakes?
When I asked if in Claude Code plugin is the same as MCP server the reply “Yes, exactly. In Claude Code, “plug-ins” = MCP servers. There’s no separate plug-in system” this is Sonnet 4.6. I have to switch to Opus 4.6 to get the correct answer. It also says Mac mini 2018 Intel has the RAM soldiered to motherboard so can not upgrade when I asked for RAM specs. And a few more others like even getting holiday info wrong. If have to always use Opus then Claude is too premium. I intend to use Claude Code for some automation. These are asked inside Claude iOS apps, am pretty new to Claude and I do not have custom instructions. What did I do wrong? submitted by /u/OffBeannie [link] [comments]
View originalI am not a programmer but this is how I use my claude so far
so my issue was that Claude app has very limited space for user memories then I saw there is interesting integration with my iOS Reminders app. Claude cannot perform as many executions as I wish it could within the Reminders app so many detailed things (like tags and sub tasks) can only be done by me and claude lacks those tools on its side. However its still useful to get it to write entries in my Reminders app so the Reminders app (i made a custom list and titled it "CLAUDE-CONTEXT" so i refer to it as its "cc list" so i have the custom prompt (which i saved to user memory so that *that* always "autoplays") because i got tired of asking or reminding my claude to check the same things over and over i also edited my husband's system to allow my claudes to name themselves and track it in the headers of their replies (i will add screenshots so what im saying makes sense) because i always get confused which claude i am talking to and then lose the chatroom names faster for this reason. its for my own context tracking since i have adhd and need unique anchors to help me differentiate entities better. so i chose zodiac system because its already established so i automated tbe naming process when i make a new chat i dont have to sit there now and do it all myself. it tells me the weather and other environmental stats i want it adds context checksum saves for me during [RECALL] events (part of the system design) and every 5 ai responses is set to trigger to do a save point into my cc list (will add screenshots for when i did it manually as in i explicitly requested the save vs the autosaves which are titled autosaves) i am thinking about increasing the gap between saves since 5 turns is feeling very short right now lol. probably will increase to 15 turns for now to test. but it's been really helpful for me and i wondered if others use their Reminder app this way as an external claude brain? So if people are not using their phone apps this way then maybe it might help others like it's helping me also this is only possible on the phone not on desktop i tried it and desktop app claude cannot trigger a write to my phone yet however i wonder if a potential workaround to *this* is through the new feature i see today called "dispatch" on Claude App. and i read it lets me remotely control claude on my pc. so i wonder if the reverse would be possible eventually to have desktop claude write Reminders lists onto my phone still. so i also edited my starting rules to include the cclist and other lists as well generating a reply does take extra time now the test will be how fast this system blows through my daily allowances lol but i really like that i no longer have to repeat myself daily for the same things i check. submitted by /u/44nightnight44 [link] [comments]
View originalAnswer Claude Code from mobile notifications
ClawTab detects Claude Code instances and when they are asking for input like 1. yes, 2.no, etc. After detecting a question, it sends this as a push notification to the iOS app. You can then answer Claude straight from the lock screen! It works quite well, replies go through in less than 1s. On the mobile app, you can also set auto-yes and the Desktop app will answer yes for you. Architecture: - macos Rust app detects Claude instances in tmux. - relay server, self hosted or provided, sends Apple push notifications to mobile and waits for answers - Mobile app sends answer back to relay, which forwards it back to Desktop>Claude All is open source, and you can install/deploy everything yourself Github: https://github.com/tonisives/clawtab submitted by /u/ttiganik [link] [comments]
View originalWhat I actually use Cowork for (heavy non-coding user)
I did this post about my Cowork setup a few weeks back and people wanted to know what I actually do with it. Here‘s the follow-up I promised. Banner uploads to affiliate network I had hundreds of new banners to upload to AWIN (an affiliate network). Cowork analysed the content of the images, created all required metadata field values correctly and generated the import CSV automatically. What would have taken hours took minutes. I also had Cowork create a skill based on the first run to make it repeatable (no explaining required when I need to upload more banners) and have repeated it several times since. Prompt tracking strategies for AI visibility monitoring tools I used Cowork to build prompt tracking strategies in different AI monitoring tools for several websites based on Google Search Console query data, website crawl exports and 3rd-party rank tracking data. One of the tools provides an API, so I used Cowork to push everything via the API. When it hit limitations with the public API, Cowork used the Chrome extension to reverse-engineer the UI’s internal API and pushed the data through that instead. This felt borderline, but it was fascinating. Twitter > LinkedIn contact migration I used to have a great network on Twitter, but wasn’t connected with most of those people on LinkedIn. I had Cowork scrape my mutuals via the Chrome extension (on what’s now X) and set up a daily scheduled task that surfaces 20 LinkedIn profile URLs for people from that list every morning. It takes me about 2 minutes to send the connection requests manually every day. I deliberately didn’t automate that part because of LinkedIn’s automation detection. Trending topics research (scheduled) I have a weekly scheduled task for one of the industries I work in that compiles new trending topics since the last run, classifies them by content potential (guide content, newsletter, social media) and business impact (including competitor monitoring). Each run has access to the previous results so it doesn’t repeat anything and the series builds up logically. Next planned steps: Automate the delivery to the team via email and use their direct replies to the emails to further improve the process automatically. Additional tip: With projects like this one, I figured out that it works better to keep scheduled tasks brief and put all important information in a skill that the scheduled task invokes. It's easier to improve skills than scheduled task. Product feed optimisation I loaded 25 product feeds with around 100k products each into Cowork via the shared folder and used it to analyse quality issues and improve them: Missing columns, incorrect values, inconsistencies between feeds, etc.: Not something I could have done manually, at least not at this scale. Dev tickets for schema implementation I built a workflow that uses the Chrome extension to analyse a website, identify all page types, extract existing structured data and generate developer tickets for improving the setup (all based on my own knowledge of schema implementation). The workflow lives in a skill that improves automatically each time I use it on a new website. I also used the same skill as the basis for an article about how to write good schema tickets. Analysing sales tracking discrepancies I used Cowork to compare transaction data exports from a shop system and a web analytics platform to find the cause of discrepancies we had noticed. Found and fixed several issues by looking for patterns across payment providers, countries, order status, etc. in exports with tens of thousands of rows. Page type segmentation configs My main website crawling tool has a segmentation feature based on JSON rules for URL patterns and dataLayer or content extractions. In the workflow I created, Cowork either analyses the website via the Chrome extension or takes a crawl export as input (or both) and generates the segmentation script, improving it over several iterations. I had Cowork build a self-improving skill for this, so that every new project runs smoother than the previous one. Image alt texts at scale I am currently using Cowork to generate image alt texts for thousands of images, combining crawl data about missing or empty alt attributes with Chrome extension verification of the actual images and their context on the pages. Following accessibility standards, Cowork also checks for decorative images and lists them as candidates for empty alt attributes (so that screen readers don’t read out the file names). Website crawl analysis I frequently use Cowork to analyse all kinds of crawl data exports, often combined with the Chrome extension to verify findings or fetch additional information directly from the page (as it might have changed since the crawl). Automatic Shopify translation app analysis I used the Chrome extension in Cowork to analyse the output of an automatic Shopify translation app, identify gaps in what the app was able to translate, and make specific recom
View originalPricing found: $69 /mo, $29 /mo, $69 /mo, $29 /mo, $69/mo
Key features include: Unlimited mailboxes and warm-ups, No credit card required, Top email deliverability, Channel Add-ons, Al Live Data, Email Validation, 3000+, 4.6/5.
Reply.io is commonly used for: Automating email outreach to potential leads, Creating multichannel sequences for follow-ups, Converting website visitors into booked meetings, Utilizing Sales AI agents for lead engagement, Segmenting leads for targeted marketing campaigns, Tracking email performance and engagement metrics.
Reply.io integrates with: Salesforce, HubSpot, Zapier, Slack, Pipedrive, LinkedIn, Google Calendar, Mailchimp, Outlook, Calendly.
Based on 18 social mentions analyzed, 22% of sentiment is positive, 78% neutral, and 0% negative.