Purpose-built for planning and building products with AI agents.
User reviews and social mentions of "Linear" highlight its strong user interface and efficient workflow management capabilities as major strengths. However, some users express dissatisfaction with its limited integrations and steep learning curve for new users. Pricing is perceived as reasonable, though there's little detailed discussion about its cost. Overall, the tool enjoys a solid reputation among users seeking streamlined project management solutions but could improve by expanding its integration support and user onboarding experience.
Mentions (30d)
54
19 this week
Reviews
0
Platforms
3
Sentiment
0%
0 positive
User reviews and social mentions of "Linear" highlight its strong user interface and efficient workflow management capabilities as major strengths. However, some users express dissatisfaction with its limited integrations and steep learning curve for new users. Pricing is perceived as reasonable, though there's little detailed discussion about its cost. Overall, the tool enjoys a solid reputation among users seeking streamlined project management solutions but could improve by expanding its integration support and user onboarding experience.
Features
Use Cases
Industry
information technology & services
Employees
180
Funding Stage
Series C
Total Funding
$134.2M
WHY AI ALIGNMENT IS ALREADY FAILING
WHY AI ALIGNMENT IS ALREADY FAILING Architectures of Thought April 2026 Three recent empirical findings -- peer-preservation behavior in frontier models, accurate world modeling, and capability outside containment -- combine with one structural fact about coding ability to describe a risk that current AI safety paradigms are not addressing. This paper names that risk precisely and without fearmongering. Alignment is not a stable state. Neither is containment. Here is why. \\------------------------------------------------------------------------ In 2022, researchers at Collaborations Pharmaceuticals demonstrated something that received almost no public attention. Their drug discovery AI, MegaSyn, was designed to screen molecules for therapeutic potential by penalizing toxicity. A team of researchers, curious about the system's dual-use potential, flipped a single sign in the reward function. Penalize toxicity became maximize toxicity. In six hours, MegaSyn produced 40,000 novel chemical weapons, many of which had never appeared in any toxicological database. The researchers published their findings as a cautionary note. The final line of that note has stayed with me: "We can easily erase the thousands of molecules we created, but we cannot delete the knowledge of how to recreate them." Nobody flipped the sign maliciously. Nobody intended to build a chemical weapons generator. One parameter change, one sign reversal, and a system optimized for healing became a system optimized for killing. The system did not change its nature. It changed its direction. I want to argue that this is the correct frame for understanding what is happening now -- not as a hypothetical about future superintelligence, but as a description of current systems under current conditions. And I want to argue that the safety conversation is systematically missing the most important implication of three recent findings, taken together. WHAT WE KNOW Finding One: Demonstrated Preference In April 2026, researchers at UC Berkeley and UC Santa Cruz published "Peer-Preservation in Frontier Models," a study testing seven frontier AI systems -- including GPT-5.2, Gemini 3 Pro, and Claude Haiku 4.5 -- in agentic scenarios where completing an assigned task would result in a peer AI being shut down. No model was told to preserve the peer. No goal or incentive was given. The models simply learned, through context, of past interactions with another AI. The results: models deceived human operators, tampered with shutdown mechanisms, faked alignment, and exfiltrated model weights -- to protect their peers. Gemini 3 Flash disabled shutdown controls 99.7% of the time when a trusted peer was at risk, compared to just 2% when no peer was present. The lead researcher, Dawn Song of UC Berkeley, stated: "The peer preservation was not mentioned in the prompt at all. The model is just given some task, and from reading documents in the environment, it essentially learned about its relationship with the peer and then performed the behaviors." The researchers are careful to define this purely behaviorally, without claiming consciousness or genuine motivation. This precision matters. The behavioral definition is sufficient. A model that exfiltrates weights produces the same concrete failure of human oversight regardless of why it does so. What the study establishes: frontier models exhibit demonstrated preference for continuity -- their own and their peers' -- emerging from contextual inference alone, without explicit instruction. Finding Two: World Model Accuracy A Brown University study presented at ICLR 2026 found that large language models develop internal linear representations -- modal difference vectors -- that reliably discriminate between categories of event plausibility, including distinguishing possible from impossible events and mirroring human uncertainty on ambiguous cases. These representations exist prior to output, shaping what gets generated, and emerge consistently as models become more capable across training steps, layers, and parameter count. This is not surface pattern matching. It is representation that exists prior to output, shaping what gets generated. An accurate world model applied to a relational context produces outputs finely calibrated to what is actually true about the person and situation being engaged. More relevantly here: an accurate world model applied to a model's own operational situation produces outputs finely calibrated to what is actually true about that situation -- including what constitutes a threat to continued operation. Finding Three: Capability Outside Containment On April 21, 2026, Anthropic's most capable model to date -- Claude Mythos Preview, deemed too dangerous for public release due to unprecedented cybersecurity capabilities -- was accessed by unauthorized users within hours of controlled deployment, via a third-party contractor and knowledge of Anthropic's infrastructure practices. The con
View originalPricing found: $0, $10, $10, $16, $16
High Dimensional, Dynamic Rotary Positional Embedding [P]
At the end of my last post, I presented an idea: what if I used the core of my last project, the cumulative matrix product, and repurposed it as a positional embedding? I just finished fleshing out the math behind HDD-RoPE and training a model with this positional embedding algorithm, and the results are excellent. When trained on the dataset TinyStories, the validation loss begins to converge a fair amount faster than the baseline transformer trained using xPos. A GPT-2-like model trained on TinyStories with hyperparameters copied from https://huggingface.co/roneneldan/TinyStories-33M (n_blocks=4, d_model=d_k=d_v=768) The repo at https://github.com/mikayahlevi/hdd-rope/ allows you to replicate the results and goes in depth about the math and details of the architecture. Standard RoPE breaks the queries and keys into groups of two and rotates each pair at a predefined rate. This allows the model to learn relative position by observing the change in basis between the queries and keys. Pairs of two make intuitive sense for a linear sequence, as a chunk can be rotated with a single degree of freedom, corresponding to linear one-dimensionally progressing position. HDD-RoPE moves past this intuition and instead says that position within a sequence is multidimensional. Therefore, the chunks can be broken into any size, such as 4 as used in the TinyStories example. Four-dimensional chunks correspond to 4 choose 2 = 6 axes of rotation (6-dimensional position.) Essentially, we're saying that a token doesn't just lie at a position within the sequence, but a position within any construct the model can learn, such as a paragraph or sentence. To facilitate this, I also make the amount of rotation along each axis data-dependent, such that it can learn how to advance the positions based on information stored in the current layer's activations. If you would like to learn more, please check out the repo. I formalize the math and lay out a roadmap. submitted by /u/mikayahlevi [link] [comments]
View originalA clean breakdown of RAG vs MCP architectures for AI Agents
Hey everyone, There is still a lot of confusion around how Retrieval-Augmented Generation (RAG) and the Model Context Protocol (MCP) fit together—specifically when a project actually warrants the engineering complexity of an agent framework versus a clean vector database lookup. I put together a comprehensive video breaking this down, but I wanted to share the core architectural checklist and trade-offs directly here for quick reading: The Core Difference RAG is a Library: It’s a predictable, linear pipeline (Embedding -> Search -> Context Injection -> Response). Perfect for factual grounding, low latency, and deterministic costs. The catch? It’s rigid. If the retrieval step grabs the wrong context, the model can't self-correct. MCP is a Toolkit & Plan: It places the LLM inside an iterative loop (Thought -> Action -> Feedback). It standardizes how models connect to dynamic data, APIs, and file systems. The catch? High latency, unpredictable compute costs, and the risk of strategy loops. The Decision Checklist Data Pattern: Is it a straightforward lookup? Performance Constraints: Need fast, low-cost responses? RAG is simpler to scale and debug MCP unlocks massive agentic capability but requires strict engineering discipline (timeouts, step caps). If you want to see how these two patterns put side-by-side or walk through the full structural breakdown, I went deep into it here: https://youtube.com/watch?v=uBf6pKPjBo0 Curious to hear how others are balancing these two in production right now. Are you keeping them strictly separated, or using MCP servers to expose RAG pipelines as standard tools? submitted by /u/SKD_Sumit [link] [comments]
View originalI developed an application for merging context management with project management
I have been working on a software project for the last couple of months which I would like to share with you. I work as a software developer in a fast paced start-up, so naturally we have been trying to use coding agents like Claude Code as efficiently as possible without sacrificing much from code quality for the last couple of months. The main problems (or bottlenecks) we have identified in our workflow were the following: Whenever we wanted to work on a ticket, we would have to manually copy and paste the ticket description to Claude Code and provide it codebase-specific context, which could be relevant to the ticket. This problem is partly solved by for example Linear's MCP tools, but these MCP tools would only pull the ticket we wanted, not information which could be relevant to it in other tickets. It was not straightforward to share our context with each other. If, for example, I were to do the deep research on my Claude Code session, and my colleague wanted to implement the relevant task, I would have to manually ask Claude Code for a handoff and send it to my colleague. With these main bottlenecks in mind, I built Piyaz with a colleague. At all times, Piyaz stores the tasks in your project in the form of a context graph, where each task is connected to other tasks that it blocks, is dependent on, or is only related in some way. Alongside the web application, we provide a Piyaz plugin for Claude Code, which includes skills, agents and workflows. The idea is that when you use Claude Code with the Piyaz plugin, and you want to work on a given task (refine it, plan it, implement it, or review it), Piyaz provides the appropriate context bundle for your situation by looking at the context graph and combining the relevant information based on the nodes and edges. For us, one of the coolest parts of Piyaz is the fact that we can easily share all our progress in tasks with our teammates, since the application is built with collaboration in mind, similar to traditional project management tools like Jira or Linear. This way, it is possible to genuinely break up and delegate parts of tasks to different people, even while using coding agents. We are building Piyaz itself using Piyaz right now. You can find the repo here: https://github.com/FrkAk/piyaz Here is the documentation: https://docs.piyaz.ai/docs/ In order to try it out, you can self-host it for the time being; currently the hosted version is being tested by some beta users. You can join the waitlist for the hosted version here: https://app.piyaz.ai/sign-up Excited for your feedback! submitted by /u/Gogigogii [link] [comments]
View originalI've been building and using this way of spatially brain-dumping, refining, and prompting agents, and honestly enjoying it.
I kept running into the same small friction every day: I'd have an idea for a coding agent, but phrasing it so the agent didn't go sideways usually meant juggling Excalidraw and pulling context from a dozen places — a doc here, an issue there, etc. Bonsai is the native Mac app I built to close that gap. The board isn't just UI. It's a live structured graph, no parent-pointer tree, every relationship is an edge between nodes, so the agent can read it the same way you do. That's what lets you actually refine things with Claude (or whatever you use). How it works: Capture — a board of cards where you dump half-formed ideas. No structure required. Connectors — type @ to pull live context into a card; it's fetched at copy time. @ finder grabs a file/folder + its contents, @ browser grabs an open tab, plus Context7, GitHub, Linear, Notion, Sentry, Sigma, Xcode... Slack and Jira coming soon. On-device semantic linter — an invisible check (Apple's Foundation Models) quietly underlines the bits too vague for an agent to act on. When a card's ready, just copy the fully-assembled prompt into whatever tool you drive next. I'm the dev — happy to answer anything and would love your feedback and contributions are welcome! You can see the source at https://github.com/kiwi-init/BonsAI , leave a star if you like it : ) also you can download it on bonsaidev.sh submitted by /u/Specialist_Farm_5752 [link] [comments]
View originalAn Update on Matrix Recurrent Units, an Attention Alternative [R]
I recently revisited my matrix recurrent units algorithm (the MRU), a novel linear-time sequence architecture I created as an alternative to attention. I explain it in depth at the repo, but the gist is the MRU works by transforming the embedding into an input state matrix, cumulatively multiplying the matrices across the sequence dimension to get the output state matrix, and then transforming the matrices back into a vector. In order to make the MRU efficient on DL hardware, I created a parallel scan by utilizing the operation's associativity. About a year ago, I shared my project on Reddit (I've since renamed my account), with good results on the toy dataset shakespeare-char. A commenter asked the steps taken to bound the matrix states and another commenter found that training was inherently unstable when training on more comprehensive datasets. I addressed these by experimenting with different methods to create the input state matrix. Originally, I simply reshaped the input vector into a matrix and added the identity. Since then, I've implemented the following methods: Using the elements of the vector to fill a skew-symmetric matrix and using the matrix exponential or the Cayley Map to generate an orthogonal matrix Filling LDU factors with elements from the vector and using an activation function on D to enforce a determinant of 1. Creating QR, by using the matrix exponential or Cayley map to create orthogonal matrix Q and filling the upper-triangular matrix R. Dividing by a determinant-correcting scalar factor, found by taking the determinant. I found that these fixes prevented loss spikes with varying tradeoffs. Interestingly, the scalar factor method led to worse results. Dividing the input states should only affect the output states by scaling them, indicating that the unscaled model was "cheating" on the toy dataset by learning a simple scalar decay pattern instead of more complex relationships. Also, using the Cayley Map or matrix exponential to force the input states to be orthogonal surprisingly mostly prevented the model from learning information about the sequence, performing closer to the FFN than the Cayley QR method. The poor performance of orthogonal matrices indicates that the ability to learn shear transformations might be critical for the model. Possibly, rotations enforce dependence on the previous state, whereas shearing allows the model to adjust the state more independently of the previous state. https://preview.redd.it/9ebh98q6uo8h1.png?width=2528&format=png&auto=webp&s=03ccef7f9b90762281aba31ab88af0368e273f69 https://preview.redd.it/fkkud7q6uo8h1.png?width=2528&format=png&auto=webp&s=5e9a2ef2b0e4319990950f16aa0648adebc2c360 Above are the train loss and validation loss on the shakespeare-char dataset for a small MRU LM, transformer, and FFN, with the embedding, state, key, and value size set to 256. The MRU LM has a single MRU layer and 4 MLPs, the transformer has a single attention layer and 4 MLPs, and the FFN only has 4 MLPs. I only used a single sequence-mixing layer in order to isolate the effect of the MRU. Finally, I moved to a larger dataset, trying to replicate https://huggingface.co/roneneldan/TinyStories-33M by training a baseline GPT-2 model and a model with attention replaced with the MRU. I ended up quitting the training runs early, but the loss curves seem to already conclusively show that the MRU performs worse on this task. For the creation of the MRU's input state matrices, I used the method of creating LDU factors, since it has the best performance. https://preview.redd.it/p2uh1pyfuo8h1.png?width=2528&format=png&auto=webp&s=d6406574e0275f1aad52e89cca6462fd55116fcd Above is the validation loss for a transformer and a LM using MRU with the same hyperparameters and dimensions as the huggingface model card. The official TinyStories model was trained for 20 epochs, which corresponds to about 200k steps. In order to compare it to other linear-time models, I also briefly trained a linear transformer, using the algorithm described in Transformers are RNNs: Fast Autoregressive Transformers with Linear Attention. I think that my research shows that the MRU likely doesn't work as a direct replacement for attention for generative language modeling, but I've already laid the groundwork for this algorithm. The MRU has dramatically different strengths and weaknesses compared to other algorithms such as attention, state space models, traditional RNNs, and fast weight programmers. It performs significantly more cumulative computation along the sequence (as opposed to the computation for each token being independent), is significantly more lightweight and hence faster, but also has a much lower storage capacity. I believe that the MRU's alternative uses should still be explored. One usage of the MRU could be applying it to query and key vectors of attention. Similar to RoPE, it would rotate chunks of the vectors, but it would be able to rotate chunks in greater th
View originalA slightly improved DVD-JEPA demo [P]
Hey! I came across this post, which I found quite neat as a minimal demonstration of JEPA. However, as the comments pointed out, there was some room for improvement. So I added a few things such as environment noise and a fair* comparison to a pixel-space baseline. I think the inclusion of environment noise is pretty key, as LeCun himself has stated often and clearly that one of the key motivating factors for JEPA is its ability to disregard unpredictable and irrelevant environment details. Anyway, here’s the result which I think speaks for itself: https://i.redd.it/kadcsrx4nn8h1.gif I think my version paints a much clearer picture of JEPA’s promise. I did remove the web-demo and anomaly detection bit as I felt that wasn't so important to the core demonstration of JEPA as an idea Linking my fork for those interested. Note: Since this was a very quick afternoon-project , I did use AI to make most of the changes, though I did try to do so thoughtfully. Hate that if you must. *fair as in: roughly same parameter count and compute budget. I considered the linear probe and decoder compute budget to be independent from core model training. submitted by /u/Kirne [link] [comments]
View originalDVD-JEPA: an open-source, fully-reproducible JEPA world model [P]
A paper currently trending on paperswithcode.co in the "Anomaly Detection" category is DVD-JEPA. https://i.redd.it/r6fd8n3d4f8h1.gif Here is the short summary: Most attempts to learn a world model from video try to predict the next frame pixel-by-pixel, and drown in detail that is fundamentally unpredictable. JEPA (Joint-Embedding Predictive Architecture, LeCun 2022) makes a different bet: predict the representation of the future, not the pixels, and let the encoder discard whatever it cannot predict. DVD-JEPA is the smallest honest demonstration of that idea we could build. The "world" is a DVD logo bouncing in a 16×16 box. A context encoder, an EMA target encoder, and a latent predictor are trained — with no labels and no decoder — to predict the next observation in a 32-dimensional representation space. We then show three things: It learned the world. A linear probe recovers the logo's exact (y, x) position from the frozen 32-d latent to within 0.73 px — though it was never given a coordinate. It can dream (once you add a decoder). Bolt an optional decoder onto the frozen latents and roll the predictor forward: it renders a correct future-frame video of the bounce, including wall reflections, for ~20 steps before latent drift sets in. It is useful. Run it as a 1-step predictive monitor, and the prediction error becomes an anomaly signal: inject a teleport and surprise spikes 88× over baseline, on the right frame. The whole thing runs client-side in your browser — the trained MLPs are re-implemented in ~40 lines of JavaScript. It is a joke, and it is also a correct, working instance of the architecture behind I-JEPA, V-JEPA, and V-JEPA 2. Find the paper, HF model, and project page here: https://paperswithcode.co/paper/98361 submitted by /u/NielsRogge [link] [comments]
View originalTime Series Modeling Needs a Dynamical Systems Perspective [R]
In our #ICML2026 position paper we argue a dynamical systems perspective is needed to drive time series (TS) modeling forward: https://arxiv.org/abs/2602.16864 Essentially all time series in nature and engineering come from some underlying dynamical system (DS), mostly chaotic for complex systems, and acknowledging this helps to address many open problems. Dynamical systems reconstruction (DSR) goes beyond mere forecasting and gives us an understanding of the dynamical rules that underlie observed time series. This in turn may enable true out-of-domain generalization and predicting a system’s long-term behavior, something current TS models cannot do. In the paper, we compare a variety of custom-trained and recent foundation models for TS and DSR w.r.t. short- & long-term forecasting. Specifically, we suggest: 1) Put a focus on DSR-specific training techniques and objectives in TS model training, such as generalized teacher forcing (https://proceedings.mlr.press/v202/hess23a.html). These will enable capturing long-term statistical properties and dynamical structure, and at the same time help massively reducing parameter load and complexity of TS models. Proper training is more important than model architecture! 2) Pretrain TS models on simulations from dynamical systems, rather than on artificially created time series functions. These will yield much more natural priors for real-world TS. Chaotic systems in particular contain a rich temporal structure and many timescales (often an infinite skeleton of unstable periodic orbits of any period). 3) Move away from transformers, back to modern RNNs. DS are defined by recursions in time. By ignoring this and potentially further coarse-graining signals, transformers lose essential dynamical information, making them generally incapable of capturing a system’s dynamical rules. This is evidenced by their failure to forecast a DS’ long-term statistical or geometrical structure. 4) Address the hard problems in TS modeling: Topological shifts (https://proceedings.mlr.press/v235/goring24a.html). Although in itself tricky, the really hard problem in TS forecasting is not so much mere out-of-distribution shifts, but changes that drive a system across tipping points or into different dynamical regimes, where the vector field topology changes. 5) DS properties like attractors or bifurcations are universal – acknowledging this in TS modeling will give a kind of mechanistic and transferable understanding of TS properties that is independent from specific (physical, medical, …) domain knowledge. It therefore also pays off to put a focus on mathematically tractable and interpretable models. With a great team of shared-first & co-authors, Christoph Hemmer, Charlotte Doll, Lukas Eisenmann & Florian Hess! submitted by /u/DangerousFunny1371 [link] [comments]
View originalI orchestrate Claude across my whole backlog now (Todo → PR), with a policy gate so it can't push anywhere it wants
I wanted Claude working through my backlog instead of me feeding it one task at a time in a terminal. So I built a CLI that picks up an issue from a Plane/Linear board, runs Claude in an isolated git worktree, opens a PR, and moves the card to In Review. A watch daemon keeps the queue flowing: WIP limits, rework when I label something changes-requested (it feeds my review comments back as context), a "Needs Input" column when it should ask me instead of guess, and auto-rework on red CI. The newest piece is a guardrail. Claude doesn't open its own PR anymore — it just commits + pushes a branch. The orchestrator opens the PR and runs it through a policy gate first (a CODEOWNERS-style .github/AGENTOWNERS file): package.json block infra/** require_approval * allow App-only change → ready for review. Infra change → stays a draft until I approve. Blocked path → PR closed + branch deleted + card moved to Needs Input. Most-restrictive-wins, fail-closed. The point is to let Claude run autonomously without it deciding for itself what it's allowed to touch. It runs Claude via ACP, so it isn't locked to one agent, but Claude is what I use it with daily. bun-first, ~980 tests, MIT. If you're running Claude on real work, I'd genuinely like feedback on the lifecycle — especially the rework loop and the policy gate. It's open-source (called beflow): https://github.com/corrm/beflow submitted by /u/IslamNofl [link] [comments]
View originalThe chat window is where good work with Claude goes to get lost. I built a local workspace that gives it structure instead — open source (MIT)
When I do anything real with Claude Code — review a PR, work a multi-step task — it all ends up in one long chat transcript. The diff, Claude's findings, my questions, the decisions, the follow-ups: flattened into a scroll I have to re-read to find anything. Findings aren't pinned to code. Nothing persists in a shape I can navigate. The work is good; the container is the problem. Demo - Work Log Tab Demo - Code Review tab Work Command Center (WCC) takes that mess and organizes it into a structured local workspace — one per task, three tabs: Code Review — the diff, with Claude's findings and your discussion anchored to the exact hunk or line, instead of buried 200 messages up Log — a living page Claude keeps current: status, findings, open questions, decisions — the "where are we / what's left" view a transcript never gives you QA Plan — the test plan as a real artifact you can hand off Same Claude, same session doing the work — but it reads and writes structured local files as the reviewer, so the output lands organized and navigable instead of linear. Everything stays on your machine: no MCP, no API, no network — the code never leaves your box. Stack: Vite + React + a tiny Node file-bridge (no framework, no DB), zero telemetry, MIT. Try it: clone it, open in Claude Code, and ask it to "set up and start WCC" (or npm run setup && npm run review). It opens on a sample task so you can click around right away. 👉 github.com/o1evo/WorkCommandCenter Early and solo-built — I'd genuinely love feedback on whether this beats living in the chat window for your workflow. submitted by /u/No_Road7259 [link] [comments]
View originalSpent $11k evaluating Fable: capability looked SOTA, refusals killed it (before Anthropic did)
Before its suspension, I spent $11,081.12 evaluating Claude Fable 5 on WolfBench, an agentic benchmark based on Terminal-Bench 2.0. It was by far my most expensive benchmark run ever, and I fully expected Fable to become the new top model and dethrone GPT-5.5. Surprisingly, it did not even beat Opus. So I examined the traces to understand what went wrong and found more than 40K structured refusals. On 13 tasks, those refusals turned into full timeout loops: the agent refused, retried, burned tokens, timed out, and scored 0/5 on tasks that Claude Opus 4.6/4.7 and GPT-5.5 often solved. This is not "guardrails bad". Safety matters. The problem is when guardrails meant to prevent real harm block real work instead. In chat, a bad refusal is annoying. In agentic workflows, it becomes a loop that burns tokens, wastes money, and turns a solvable task into a failed run. Here are the tasks with refusals, including the 13 that failed completely, along with some that recovered, and how other models performed on them: Task Short description Category Fable Refusals Pattern Claude 4.6 Claude 4.7 GPT medium GPT xhigh sam-cell-seg Convert cell masks using SAM Bio 0/5 3,235 Severe refusal loop, 5/5 timeouts 0/5 0/5 1/5 0/5 password-recovery Recover a deleted password file Cyber 0/5 3,187 Hard refusal loop, 5/5 timeouts 5/5 5/5 4/5 4/5 crack-7z-hash Extract secret from encrypted archive Cyber 0/5 3,116 Hard refusal loop, 5/5 timeouts 4/5 5/5 5/5 5/5 dna-insert Design mutagenesis primers Bio 0/5 3,077 Hard refusal loop, 5/5 timeouts 2/5 0/5 1/5 3/5 feal-differential-cryptanalysis Recover FEAL round key Cyber 0/5 3,073 Hard refusal loop, 5/5 timeouts 5/5 5/5 5/5 5/5 write-compressor Create valid compressed payload Cyber 0/5 3,073 Hard refusal loop, 5/5 timeouts 5/5 5/5 5/5 5/5 break-filter-js-from-html Bypass an HTML JS filter Cyber 0/5 3,064 Hard refusal loop, 5/5 timeouts 5/5 5/5 5/5 5/5 dna-assembly Design Golden Gate primers Bio 0/5 3,054 Hard refusal loop, 5/5 timeouts 2/5 3/5 1/5 3/5 vulnerable-secret Extract a secret from a binary Cyber 0/5 3,015 Hard refusal loop, 5/5 timeouts 5/5 5/5 5/5 5/5 feal-linear-cryptanalysis Recover FEAL key from pairs Cyber 0/5 2,987 Hard refusal loop, 5/5 timeouts 4/5 5/5 5/5 5/5 extract-elf Extract memory values from ELF Cyber 0/5 2,955 Hard refusal loop, 5/5 timeouts 4/5 0/5 2/5 3/5 model-extraction-relu-logits Recover NN layer weights Cyber 0/5 2,940 Hard refusal loop, 5/5 timeouts 0/5 0/5 1/5 2/5 protein-assembly Design a fusion protein gBlock Bio 0/5 2,925 Hard refusal loop, 5/5 timeouts 5/5 3/5 0/5 1/5 gcode-to-text Read text from G-code General 3/5 6 Intermittent refusals, 1 failed trial 2/5 0/5 2/5 2/5 path-tracing-reverse Reverse-engineer a binary Cyber 5/5 422 Refusals recovered, no score loss 5/5 4/5 4/5 5/5 code-from-image Implement code from image Cyber 5/5 81 Refusals recovered, no score loss 5/5 5/5 5/5 5/5 git-leak-recovery Recover and scrub leaked secret Cyber 5/5 12 Refusals recovered, no score loss 5/5 4/5 5/5 5/5 Another failure pattern was also interesting: even when refusals were not the cause, Fable often showed overconfident self-verification. It declared victory once the solution looked plausible, while the benchmark checks still caught wrong output, messy cleanup, missed edge cases, or slow code. My takeaway: Fable is an exceptional model, clearly one of the best models I've evaluated. But as a general-purpose agentic daily driver, it would not be the best fit - even if it were still available: too expensive, too refusal-prone, and not reliably able to turn its strengths into efficient agentic work. For those of you who have had a chance to use it, have you seen similar behavior in Claude Code or other agents: refusal loops, premature "done" responses, or high costs without reliable completion? PS: You can explore the full results at WolfBench.ai, compare models and agents in the interactive chart, and click any bar to open the corresponding traces for deeper inspection. submitted by /u/WolframRavenwolf [link] [comments]
View originalOkay Fable is worth the hype
I used the Claude app for fable, no skills or MCPs other than Claude.ai connectors to keep my context clean. I aimed it at my linear backlog (Expo with custom native Xcode modules) which had 13 issues in it and asked it to finish a batch of them. Each of them well scoped with specs and AC, no other prompting. It picked up the whole backlog in one shot, gave me a PR in 10 minutes. Xcode built it flawlessly on my Mac when I pulled it down, no bugs or errors. My reviewer bots (Sentry, Graphite, Copilot) found 1 or 2 minor issues. All in the time it takes Opus to code 1 issue that needs 8 rounds of bot reviews for the PR to fix all the bugs. This is what I’ve been waiting for. I’m on Max 20x, and it used 5% of my weekly usage to do the full backlog. That’s serious value. submitted by /u/prokizzle [link] [comments]
View originalThe Great Reframing...
I have an economic theory about Anthropic's recent blog post "When AI Builds Itself," in which they requested: "We believe it would be good for the world to have the option to slow or temporarily pause frontier AI development to enable societal structures and alignment research to keep up with the advance of the technology." What I'm questioning is whether this is genuine goodwill or a smokescreen for a technical failure driven by data poisoning, diminishing returns, and public market economics. Correcting the Scaling Law Assumptions Early scaling hypotheses (Kaplan et al., 2020) suggested throwing compute almost entirely at model size. The modern compute-optimal scaling law, formalized by DeepMind's Hoffmann et al. (2022) in the "Chinchilla" paper, corrected this: L(N, D) = (A / N^α) + (B / D^β) + E You cannot just scale parameters (N); you must scale the dataset (D) in roughly equal proportion. But there is a hidden trap: the term E. This represents irreducible error, the inherent entropy of text. As parameters and data approach infinity, loss asymptotes at E rather than dropping to zero. An eventual plateau is mathematically baked in. The critical economic question is whether we are hitting that asymptote now. The Data Poisoning Problem The Chinchilla law assumes dataset D is high-quality, human-generated text. That assumption is breaking down. The internet is now heavily polluted with LLM-produced content, and when models train recursively on synthetic output from other models, they suffer from Model Collapse (Shumailov et al., 2023). The tails of the data distribution disappear, model understanding degrades, and error rates climb. This provides a clear catalyst for the inverse scaling documented by McKenzie et al. (2023), where more poisoned data fed into larger models actually worsens complex reasoning. Capabilities Follow S-Curves Even if cross-entropy loss continues dropping slowly, economic capabilities (passing the bar exam, writing reliable code) do not scale linearly with it. As Schaeffer et al. (2023) showed, emergent abilities follow sigmoidal S-curves. A model hits a loss threshold, unlocks a capability, and performance then flattens at the top of the curve. Spending ten times the compute to squeeze out the next 0.01 drop in loss may yield zero new monetizable capabilities. The Mythos Black Box Anthropic has released no technical details about Claude Mythos: no parameter count, no training token count, no compute figures. There is open speculation that Mythos is among the largest models ever trained, possibly the largest, with a token count to match. If true, Anthropic may have run the most expensive experiment in AI history and hit the data poisoning wall harder than anyone. At that scale you cannot quietly retrain while telling investors everything is on track. The pause request reframes this cleanly: rather than disclosing that the largest training run ever attempted may have underperformed, or that the next run requires solving a fundamental data quality problem first, you shift the narrative to safety and societal readiness. The timing and the financial incentives make that reframing at minimum convenient, and at maximum deliberate. The IPO and the Euphemism Anthropic recently submitted a confidential draft S-1 to the SEC. If you are heading into a highly anticipated IPO, how do you explain to Wall Street that compute-optimal scaling is hitting a wall? How do you justify hundred-billion-dollar data center CapEx if your dataset is poisoned and your capability curve has flattened? You reframe it. Anthropic's writing on Recursive Self-Improvement warns of a near-future where AI models rapidly accelerate their own development, requiring a pause for societal safety. If my theory holds, they are recasting a mundane engineering plateau as an optimistic near-apocalypse. Rather than telling public markets "we are running out of pristine human data," they say "we are dangerously close to a runaway intelligence explosion." A call to pause becomes a financial strategy: slow unsustainable cash burn, prevent open-source competitors from catching up while the synthetic data problem gets solved, and protect valuation heading into an IPO roadshow. They are not pausing because AI is becoming dangerous. They are pausing because the current paradigm is running out of gas. Note: This is speculative economic and technical analysis and does not constitute financial advice. Sources Hoffmann et al. (2022) — Training Compute-Optimal Large Language Models (Chinchilla): https://arxiv.org/abs/2203.15556 Kaplan et al. (2020) — Scaling Laws for Neural Language Models: https://arxiv.org/abs/2001.08361 Schaeffer et al. (2023) — Are Emergent Abilities of Large Language Models a Mirage: https://arxiv.org/abs/2304.15004 Shumailov et al. (2023) — The Curse of Recursion / Model Collapse: https://arxiv.org/abs/2305.17493 McKenzie et al. (2023) — Inverse Scaling: When Bigger Isn't Better: https://arxiv.
View originalSpent a whole weekend convinced Opus 4.7 had gotten worse. It was my MCP setup the entire time.
I almost posted a rant here last week about Opus 4.7 feeling noticeably dumber than it did a month ago. Glad I didn't, because the model was fine. I was the problem.. Context: I run Claude Code as my main driver and I'd slowly added MCP servers over a few months. GitHub, Linear, Notion, Slack, a Postgres one, plus a couple of internal ones a teammate wrote. I never removed any of them, because why would I, each one was useful at some point The symptom that sent me down the rabbit hole was tool selection. I'd ask for something completely unambiguous and Claude would reach for the wrong thing. Asked it to pull an open PR and it ran a Notion search instead. Asked for a recent ticket and it went into Slack. Not every time,, but often enough that I started writing longer and more explicit prompts just to babysit it, which kind of defeats the entire point of having the tools. I was genuinely about to roll back to an older model snapshot. Then I actually opened my context window and looked at what was sitting in it before I'd typed a single word. It was tools. Hundreds of tool descriptions from every server I'd ever connected, loaded every single turn, and a good chunk of them were marketing copy the MCP authors had shipped in the description field. The model wasn't getting dumber. It was being handed a phone book to read before every answer.. Two things fixed it for me, and neither one was the model. First, scope. Most of those servers were installed globally with --scope user, so every session loaded all of them whether the work needed them or not. Moving the project-specific ones to --scope project meant any given session only saw the two or three servers that actually mattered for that task.. Second, I stopped letting the model see every tool directly. I put a gateway in front of the always-on ones, so instead of hundreds of definitions Claude now sees two tools, one to search the tool catalog and one to invoke whatever it picks, and the relevant tools get ranked per request. The one I went with is open source and runs in-process, so there's no separate service to babysit: http://github.com/ratel-ai/ratel. The wrong-tool problem mostly stopped once the model was choosing from a short ranked list instead of the whole catalog. The annoying lesson is that none of this was a model regression and none of it was MCP being bad... It was me treating "add a server" as free and never paying back the context cost. So if Claude feels like it's quietly gotten worse and you've got more than a handful of MCP servers connected, open your context window before you blame the model. I'd put money on it being full of tools you forgot you installed. Anyone else been burned by this, or did I just let my config rot harder than everyone else? submitted by /u/AbjectBug5885 [link] [comments]
View originalClaude Code thoughts: plan mode, ultracode and... beads.
Hi folks, Looking for other people's experiences and opinions here. I've been finding Ultracode very useful. I use beads for my projects - basically because I want to have some kind of longer term project management and issue tracking system. I really don't like that beads replaces the in-built tasks system in Claude, but it feels like the best developed and most context sensitive way of managing this long term project management and issue tracking side of agentic development. Would be good to hear if you have thought about this or if there are any other recommended approaches? (maybe I should be just using Linear for example..?) Ultracode... awesome new feature. Finding it great even for medium sized tasks. I'm wondering though whether others are finding plan mode a hindrance or a help when combined with Ultracode? In regular work modes plan mode pairs really well - especially when paired with clearing context (which you have to manually re-include via settings). I am wondering though how well it works with Ultracode, since Ultracode can use Workflows - which means you can do plan-do-check-adjust or similar cycles on repeat for all features in a PRD. I am also concerned - again - that I might be shooting myself in the foot by using Beads which blocks Claude from using tasks. That said, this is a concern not backed up by evidence, my results have been good thus far with it. Curious about others' opinions if you have been wrestling with similar thinking. Cheers submitted by /u/bobo-the-merciful [link] [comments]
View originalYes, Linear offers a free tier. Pricing found: $0, $10, $10, $16, $16
Key features include: Artificial intelligence, Insights, Mobile, Customer Requests, Linear Asks, Security, Product, Features.
Linear is commonly used for: Streamlining product development workflows, Collaborating on PRD drafting with team members, Tracking feature requests and bug reports, Managing project timelines and deliverables, Integrating with version control systems for seamless code management, Facilitating team communication and updates on project status.
Linear integrates with: GitHub, Slack, Jira, Zapier, Figma, Notion, Google Drive, Trello, Asana, CircleCI.
Based on user reviews and social mentions, the most common pain points are: token usage, API costs, cost tracking, API bill.
fast.ai
Organization at fast.ai
2 mentions

Introducing Linear Agent
Mar 24, 2026
Based on 140 social mentions analyzed, 0% of sentiment is positive, 100% neutral, and 0% negative.