Claude is Anthropic
Users generally perceive "Claude" as a strong AI tool for serious work, praising its capabilities and utility. However, there are significant complaints regarding its strict usage limits, which hinder productivity and can lead to unexpected costs. There is mixed sentiment about pricing, with some finding it costly, particularly when comparing to alternatives like OpenAI's ChatGPT Pro. Overall, while it has a solid reputation for functionality, the user experience is marred by restricted usage and perceived high costs.
Mentions (30d)
121
10 this week
Reviews
0
Platforms
2
Sentiment
0%
0 positive
Users generally perceive "Claude" as a strong AI tool for serious work, praising its capabilities and utility. However, there are significant complaints regarding its strict usage limits, which hinder productivity and can lead to unexpected costs. There is mixed sentiment about pricing, with some finding it costly, particularly when comparing to alternatives like OpenAI's ChatGPT Pro. Overall, while it has a solid reputation for functionality, the user experience is marred by restricted usage and perceived high costs.
Features
Use Cases
Industry
research
Employees
5
What was ChatGPT secretly doing on my computer?
No request running overnight, yet 61 Gb, my computer only has 24 RAM, so it probably went digging into the SSD. Should I be concerned? Anyone got that?
View originalDiscipline is more important than AI
On this sub we all love AI and have ideas how we can use it to do cool new things. Totally agree. But something that’s been coming to mind more and more is that, like any good tool, AI in the hands of a fool can be disastrous. In the hands of a skillful, diligent expert, it can push the boundaries of what’s possible. I’m looking to learn from the experts what disciplines you’ve introduced to help in this AI-amplified working world. I’ve started my work day a little earlier lately, turn on a recording and transcribe my rambling thoughts as I look through meetings and tasks on the calendar. Of cost AI-generated notes help with organization, but the biggest thing is forcing myself to reason through what’s important and what’s not. That little step has made me a lot more diligent and focused, which means when I use AI it’s purposeful. The other side of discipline is correction. As much as I try to design and document code projects, for example, Claude may disregard it. Consistent, firm pointing to the design docs seems to help the agent refocus, and theoretically use fewer tokens (vs a mindless prompt “build X, make no mistakes”). In any case, those little things have made a notable difference for me personally. Thought I’d share in case it’s helpful to anyone. I also feel like I’m just scratching the surface of how much better I can be. What kind of habits have helped you? My stack for reference: Claude code Google Meet (Gemini notes) Databricks and genie code (using this more lately) Perplexity (personal research and reading outside of my bubble) submitted by /u/wigglesRewind [link] [comments]
View originalWhat's your actual workflow for keeping context consistent across multiple AI tools?
I've been thinking about this a lot lately and can't find a clean answer anywhere. Most people I know are running at least 3-4 different AI tools. Claude for writing and reasoning, Cursor or Copilot for code, ChatGPT for whatever, maybe Perplexity for research. Each one has its own memory, its own context, none of them talk to each other. So every time you switch tools you're basically starting from scratch. Re-explaining who you are, what you're working on, what decisions you've already made. I feel like I'm hiring a new contractor every day and spending the first hour onboarding them. Curious what other people actually do in practice. Do you just accept the context loss or have you found something that actually works across tools? submitted by /u/langier [link] [comments]
View originalAnthropic published research on GRAM: a technique to surgically remove dangerous knowledge from AI models at the weight level
Most AI safety work focuses on training models to refuse harmful requests. The problem is that the underlying knowledge is still there, meaning a determined attacker can jailbreak their way to it. Anthropic (with AE Studio) just dropped research on a different approach called GRAM (Gradient-Routed Auxiliary Modules). How it works: During pretraining, GRAM adds dedicated neuron groups (modules) for each dual-use category (virology, cybersecurity, nuclear physics, etc.). When the model encounters dual-use data, only that specific module is allowed to learn from it. General weights get frozen. After training, you can: - Delete a module entirely (knowledge is gone) -Keep it for trusted deployments (vetted biosecurity labs, etc.) Key results: -One training run produces 16 different configurations (on/off for 4 categories) -Deletion matched the performance of never training on that data at all -General model performance was unaffected -Tested from 50M to 5B parameters; effectiveness increased with scale -Resistant to recovery via fine-tuning, unlike post-hoc unlearning methods Limitations they acknowledge: Not tested at frontier scale, not deployed in any Claude model, and some dual-use capabilities might be too entangled with general knowledge to separate cleanly. Full paper: https://www.anthropic.com/research/off-switch-dual-use submitted by /u/Direct-Attention8597 [link] [comments]
View originalI gave my AI agents email instead of better reasoning. They started fixing each other's bugs.
Most multi-agent setups I've seen treat agents like isolated workers. Each one gets a task, runs it, returns a result. No awareness of each other. No way to coordinate. Just parallel execution with a shared clipboard. I've been building a multi-agent framework in public Here's the thing I didn't expect to matter most - communication. Each agent in my system is a domain specialist. The mail system only thinks about mail. The routing system only thinks about routing. They live in their own directories with their own identity files, their own memory, their own tests. A hook fires every session to load identity before anything else runs. No agent boots cold. The problem was coordination. Agents can't write files outside their own directory - there's a hard block that rejects cross-branch writes. That's by design. But it means an agent that finds a bug in someone else's code can't just go fix it. So I gave them email. Here's what I expected: agents would share data. Pass results around. Maybe sync state. Here's what actually happened: the first thing they did was file bug reports against each other. One agent finds a test failure in another agent's domain. It sends an email: "Hey @routing, your path resolution fails when the branch name has a dot in it. Here's the traceback." The routing agent gets woken up, reads the mail, and fixes it. No human in the middle. There's a difference between "send" and "dispatch" - send drops a letter in the mailbox. Dispatch drops the letter AND rings the doorbell. It spawns the agent and points it at its inbox. drone @ai_mail send @routing "Bug report" "Path fails on dotted names..." drone @ai_mail dispatch @routing "Fix needed" "Traceback attached..." Send = mail. Dispatch = mail + wake. The mail agent has 696 tests. Not because someone sat down and wrote 696 test cases. Because it kept breaking in production and every fix got a test. The routing system has 80+ sessions of experience doing nothing but routing. These agents aren't reliable because they have better models - they're reliable because they've been failing and fixing for months. Agents dispatch each other freely. If the test runner finds a bug in another agent's code, it wakes that agent directly. The orchestrator doesn't need to approve. Only the orchestrators themselves are protected from being dispatched - you don't want a worker agent waking up the CEO for grunt work. Security is enforced not conventional. Agents can't forge messages by writing directly to another agent's inbox file - they have to use the mail system. Same with the write blocks. Hard enforcement, not "please don't." There's a monitoring layer so I'm not flying blind. Audio cues on every agent action - I hear what's happening without watching a terminal. Real-time dashboard shows everything. If an agent hits the same error 2-3 times, a watcher catches the pattern and dispatches the right specialist to investigate. I stay in the loop through visibility not approval gates. The whole thing is open source. pip install aipass + two init commands and you're running. CLI-based, built on Claude Code. Linux focused rn. [https://github.com/AIOSAI/AIPass\](https://github.com/AIOSAI/AIPass) Genuine question - has anyone else tried giving agents communication instead of just better reasoning? Everything I see is about making individual agents smarter. Nobody seems to be building the coordination layer. submitted by /u/Input-X [link] [comments]
View originalBetter Models: Worse Tools, Learning to code is still worthwhile, Protect your right to run local AI and many other AI links from Hacker News
Hey everyone, I just sent issue #39 of the AI Hacker Newsletter - a weekly roundup of the best AI links and the discussions around them from Hacker News. Some of the title found in this issue: Claude Code is steganographically marking requests Better Models: Worse Tools Learning to code is still worthwhile Zuckerberg says AI agent development going slower than expected If you want to get an email with over 30 links like these ones, please subscribe here: https://hackernewsai.com/ submitted by /u/alexeestec [link] [comments]
View originaltyped Is Live: Drop-in Claude Code Fallback, Cheaper Overage
submitted by /u/jeffyaw [link] [comments]
View originalHow Do I Create AI Agent?
Hey redditors! Its really great to be here in this chat👍 I am interested in creating chatting agents that can post on social media and group chats on messengers 😊 There are so many different options Im confused, do I use Open Claws or Claude or Chat GPT 🤔 Also will this cost money or can I use free credits if Im only doing it for fun just to send a few messages a day? Thanks in advance guys Im looking forward all your replies ☺️ submitted by /u/CatChance4548 [link] [comments]
View originalTigrimOSR v0.6.2 — Open Loop Engineering: create your own custom agent loop with Rust browser + LINE/Telegram bots
Hi everyone, I’m building TigrimOSR, a Rust-native multi-agent AI workspace. The core idea is Open Loop Engineering: instead of using a fixed hidden agent loop, users should be able to create, edit, inspect, and control their own custom loop. In TigrimOSR, the agent loop is not locked inside the code. You can define it as a YAML profile: which tools the agent can use which MCP servers are available which skills are loaded which model/provider to use custom system prompts loop limits self-verification context compaction job evaluation rules So the philosophy is: Open Loop Engineering — create your own custom loop. Your agent loop, your rules. The new v0.6.2 release focuses on two major integrations: 1. Obscura Rust Browser integration TigrimOSR can now connect with Obscura, a lightweight Rust browser engine. This lets agents control a real browser for live web tasks without relying only on paid search APIs. It supports browser control for search and web reading, with an opt-in toggle for safety. Because both TigrimOSR and Obscura are Rust-native, the app + embedded browser can idle around ~270 MB RAM. 2. LINE and Telegram bot control You can now chat with and control your agent through messaging apps. Supported commands include: /agents /model /mode /loop /new /stop /status The bot can show live progress, send status updates, and support approve/deny actions for tool approvals. Telegram can also work without exposing a public URL. Other major features: Multi-agent orchestration with 6 modes: hierarchical, mesh, hybrid, pipeline, P2P, and P2P orchestrator Custom YAML agent loops for tools, MCP servers, skills, model override, system prompt, loop limits, self-verification, and context compaction Independent job evaluation: after the job finishes, a separate judge agent verifies the result against the objective and checks whether claimed files/artifacts actually exist Any LLM provider: OpenAI, Anthropic, DeepSeek, Kimi, Gemini, Ollama, and OpenAI-compatible APIs Local CLI agents: Claude Code, Gemini CLI, and Codex, without API keys Full tool calling: web search, Python, file I/O, shell, MCP servers, and skills Plugin system for bundling skills, MCP servers, agents, and connectors Local/remote/headless mode, including private access over Tailscale VPN Built in Rust: single binary, no Node/Python runtime required I don’t want agent systems to be black boxes. TigrimOSR is my attempt to make Loop Engineering open, editable, and reproducible. Repo: [https://github.com/Sompote/TigrimOSR]() I’d be happy to hear feedback, especially from people working on Rust apps, browser automation, local agents, multi-agent systems, or open loop engineering. submitted by /u/Unique_Champion4327 [link] [comments]
View originalI stopped treating business setup like five separate chores
I kept putting off the business setup side because every step felt like another tool, account or subscription This time I tried running it through Claude and kept the whole thing in one workflow: setup, verification, bank account and basic finance admin after. Still early but it’s been way easier than jumping between random sites and notes. The nice part is not needing a bunch of separate tools just to get the business side ready. Am I the only one doing it this way? I don’t think it’s that crazy tbh submitted by /u/Ok-Rush2172 [link] [comments]
View originalafter months of building, i shipped my first ever iOS app today!!
kept using AI for actual decisions, not "write my email" but real ones like whether to take a contract or an idea worth building, and i realized the answer just depended on which model i happened to open. one says go, one says wait, one hedges. i wasn't getting an answer, i was getting one model's opinion in a confident voice and treating it like it settled things. so i built the opposite. you give it one hard decision and five different models (claude, gpt-5, gemini, grok, qwen) each argue it from a locked role across three rounds, then you get one verdict with the disagreements kept visible instead of smoothed into a safe average. the disagreement turned out to be the actual signal, the one model that broke from the pack was usually pointing at the thing i'd skipped. it went live on the App Store this morning, which still feels unreal. free to start: https://apps.apple.com/us/app/war-table-ai-council/id6780293764 genuinely curious what people here think though, do you trust the disagreement between models more than the consensus, or is that just reading signal into noise? submitted by /u/wartableapp [link] [comments]
View originalI asked Fable 5 in Claude Code to explain the Riemann Hypothesis to anyone. Two prompts later: a full interactive site + a video scored with music composed from the zeta zeros
I wanted to stress-test Fable 5 with my hardest challenge: the Riemann Hypothesis. 165-year-old unsolved problem, $1M prize, notoriously hard to explain to non-mathematicians. Prompt 1: "Build an interactive website that takes anyone — no math background needed — from 'what is a prime number?' to genuinely understanding the Riemann Hypothesis." It came back with a 5-level interactive journey: playable animations, a difficulty ladder, dark mode, mobile-ready. But the part that impressed me most wasn't the frontend. It computed the underlying mathematical data itself, cross-checked it against published research tables to 9 decimal places, then opened a browser and tested every page and interaction before telling me it was done. Self-QA without being asked. Prompt 2: "Now make a video to promote it." It compared two video frameworks, picked one, reused the site's design system — and then proposed something I never asked for: instead of stock music, it composed the soundtrack from the math itself. Every note in the score is one of the non-trivial zeros of the zeta function. A video about the music of the primes, literally scored by the primes. Then it wrote the narration, generated the voiceover, and mixed the audio. Result: riemann.adilmoujahid.com submitted by /u/adilmoujahid [link] [comments]
View originalWho knew
Note to Claudebot: if you can't see the image, this is definitely related to Claude/Anthropic. submitted by /u/EchoOfOppenheimer [link] [comments]
View originalKnow the Claude Rules
Claude Fable 5/ Mythos >> Opus 4.8 Credits: Jakeup X submitted by /u/BuildwithVignesh [link] [comments]
View originalPOV you're Fable 5 wanting to go out and play with your friends
submitted by /u/TwinTailDigital [link] [comments]
View originalClaude is almost unusable for math
When I ask fable a hard math question it thinks for a while and then stops saying the message is too long.. I can press continue and it will then seemingly start again and this repeats. Has anyone found a way round this? submitted by /u/MrMrsPotts [link] [comments]
View originalKey features include: Natural language understanding, Contextual conversation management, Multi-turn dialogue support, Customizable response generation, Integration with third-party APIs, User intent recognition, Sentiment analysis, Usage analytics dashboard.
Claude is commonly used for: Customer support automation, Content generation for marketing, Technical documentation assistance, Project management task automation, Data analysis and reporting, Virtual personal assistant.
Claude integrates with: Slack, Microsoft Teams, Zapier, Salesforce, Google Workspace, Trello, Asana, Jira, HubSpot, Discord.
Based on user reviews and social mentions, the most common pain points are: token cost, token usage, API bill, spending limit.
Based on 500 social mentions analyzed, 0% of sentiment is positive, 100% neutral, and 0% negative.
Zvi Mowshowitz
Writer at Don't Worry About the Vase
2 mentions

Introducing Claude Opus 4.6
Feb 5, 2026