Automate your bookkeeping with Puzzle’s AI-native accounting software. Get real-time financial insights, seamless integrations (Stripe, Brex, Gusto),
Users find Puzzle’s integration flexibility and friendly interface to be its main strengths. However, several users express dissatisfaction with its capability to solve complex logic puzzles, with reports of incorrect solutions being given. In terms of pricing, there seems to be a sense of skepticism about its value, questioning if it justifies its cost, especially in comparison to other advanced models. Overall, while Puzzle is appreciated for usability, there are notable concerns regarding its problem-solving efficacy and pricing.
Mentions (30d)
13
5 this week
Reviews
0
Platforms
4
Sentiment
2%
1 positive
Users find Puzzle’s integration flexibility and friendly interface to be its main strengths. However, several users express dissatisfaction with its capability to solve complex logic puzzles, with reports of incorrect solutions being given. In terms of pricing, there seems to be a sense of skepticism about its value, questioning if it justifies its cost, especially in comparison to other advanced models. Overall, while Puzzle is appreciated for usability, there are notable concerns regarding its problem-solving efficacy and pricing.
Features
Use Cases
Industry
information technology & services
Employees
68
Funding Stage
Venture (Round not Specified)
Total Funding
$55.0M
OpenAI dropped o1 Pro, and people are doing some insane things with it. But at $200 a month, is it really worth the price? This new pro plan gives you access to their most powerful AI model yet.
OpenAI dropped o1 Pro, and people are doing some insane things with it. But at $200 a month, is it really worth the price? This new pro plan gives you access to their most powerful AI model yet. And users are already pushing it to its limits. One developer used o1 pro with Midjourney to create an entire Metroid-style game in just a few hours. Complete with graphics and smooth gameplay. Another user had o1 pro recreate the Coinbase website, pixel for pixel, in a single prompt. And when it comes to problem-solving? o1 pro solved complex puzzles instantly, something other models have not been able to do before.. walking through each step of its thinking process. But here's the real question - is all this worth $200 every month? Some say it's game-changing for productivity. Others think it's just too expensive. What do you think? Would you pay $200 monthly for access to OpenAI's most powerful tools? I do wonder if this new pro plan will be seeing more features added soon. #openai #chatgpt #chatgptpro #o1
View originalPricing found: $25, $30, $25, $30, $0
Claude couldn't access my Google Sheets via Google Drive connector — reconnecting fixed it
Today I ran into something confusing. I couldn't get Claude to access my Google Sheets file via the Google Drive connector. What puzzled me was that Google Docs worked perfectly with the exact same connector. I tried disconnecting and reconnecting the Google Drive connector—that solved the problem. Have you ever had this problem before? submitted by /u/FitAlternative3903 [link] [comments]
View originalClaude doesn't have to be a money machine. I used it to build an open-source tool that tracks how politicians in my Brazilian state spend public money.
https://preview.redd.it/yg1r1b9uqh5h1.png?width=2834&format=png&auto=webp&s=2efb2e4e35f4958a987ef044a57ebcd27f4a6b09 A lot of the Claude projects shared here are products or money makers, and that is great. I just wanted to share a different kind of one, in case it is useful to someone: something I built that will never charge anyone, on purpose. I built Gastômetro, an open-source site that shows how much the politicians of Paraíba (a state in Brazil) spend of public money. It covers all four levels of government: city councilors, state deputies, federal deputies, and senators. A bit of context for non-Brazilians: here, politicians get a salary plus a pile of public allowances on top of it (an "activity quota" for office expenses, housing aid, travel per diems, staff budgets). All of this is legally "public data". The catch is that it is scattered across dozens of government portals, each in a different and usually ugly format, and a normal citizen has no real chance of finding or reading it. It is public in the legal sense, not in the "you can actually see it" sense. That gap is where Claude carried the project. Each of the four levels publishes in a different place, a different format (zipped CSVs, spreadsheets, monthly HTML lists), and even a different way to identify a person (a masked tax ID in one table, the full one in another, just a name somewhere else). That kind of tedious data archaeology, fighting messy government files until the parsing finally works, is exactly what Claude is great at under direction. Weeks of grunt work became a few days of "here is the puzzle, go investigate, let me check the result". The part I did not hand over was the editorial line. The site never says "fraud" or "crime", only "point of attention", and every number links back to the original source so you can judge for yourself. Claude is excellent at generating, so the human job becomes curation and knowing where to pull the brakes. Showing the data, not accusing anyone. It is open-source and built to be forked: another state changes one config and runs it. I fought the messy files once so nobody has to do it again. If you want to look: - Site: https://ericocampos.github.io/gastometro/ - Code: https://github.com/ericocampos/gastometro - The full story of how I built it (blog): https://ericolira.dev/blog/do-vereador-ao-senador-arqueologia-do-gasto/ The blog post is in Portuguese, but you can always run it through Claude or any translator 😃 Not everything Claude touches has to be a product. Sometimes it can just make public money easier to look at, which here it really was not. PS: This obviously was written by Claude also, I do not have that good english to write that much. submitted by /u/ericocampos [link] [comments]
View originalI used Claude to rebuild my dad's lost game and port it to Reddit, getting over 350 players on day one!
Sharing my experience in case it's useful to others. 1. What I built X-Squares is a puzzle game from the early 2000s that my dad designed and was responsible for many fun childhood memories. The original game file was unfortunately lost to time, so I decided to rebuild it from scratch as a modern web game with Claude Code. You play by rotating tiles to line up matching-colored corners into "X" shapes, which then clear, causing the tiles above to fall and potentially set off chain combos. There's a daily mode where everyone races the exact same board, a treasure hunt mode where you clear increasingly higher score thresholds against the clock, a puzzle mode, and a few others. It's free to play; I built it in part because I wanted to share this game from my childhood with more people. 2. Key learnings Claude was horrible at designing puzzles. It would generate either impossible ones or ones a 3-year-old could solve in a single click, with nothing in between. My read is that the space is just too large to reason about: every tile has 4 rotations, order matters, and tiles fall and cascade, so the number of reachable states is massive. Instead of trying over and over again to have Claude build the puzzles, I had Claude build me a puzzle-maker mode so I could quickly design the puzzles myself via trial and error. It was a good reminder that Claude can help give you the tools to accomplish things it itself can't do. Claude still isn't the best designer and can't intuit what's fun, so playtesting was key. The original 20-year-old game format didn't translate to mobile at all. Based on user feedback that people felt overwhelmed by early versions, I ended up shrinking the board significantly and re-tuning the difficulty around it. Almost every person skipped the how-to-play instructions and then got frustrated they didn't know how to play, so I added a forced interactive tutorial. Feedback also drove smaller fixes like an earlier audio warning in treasure hunt mode, and a handful of visibility tweaks. 3. How Claude helped + the stack The game: Vite + React + TypeScript, SVG tile rendering, a useReducer state model with a requestAnimationFrame game loop. Claude wrote the entire engine and the X-detection/scoring logic. Leaderboard + backend: Vercel serverless functions over Upstash Redis for the high-score boards (including the seeded daily boards). I've used Vercel for a few Claude Code projects and it's amazing — I'm still not sure why it's free. Analytics dashboard: a mod-only dashboard tracking player growth and engagement (daily/weekly/monthly actives, plays per mode, etc.). The Reddit port: ported it to Devvit (Reddit's app platform) in ~4 hours of work, reusing the same React codebase as the one source of truth. I also had Claude configure it so that your Reddit username is automatically submitted to the leaderboard, and if you comment/post in r/XSquares you get a user flair with your best score. Play it on Reddit and see the leaderboards: r/XSquares Web version: https://xsquares.io/ (separate leaderboard for now) Happy to go deeper on any of this if there are questions. And see if you can beat my fastest Race to 100 time of 20.6 seconds! submitted by /u/Fringe313 [link] [comments]
View originalhow I, as a fully blind person, use Claude Code to help me 3d design
As a fully blind designer, OpenSCAD is my main design program. This is due to the fact that it is completely text based, and works wonderfully with a screen reader. But sometimes I need to reach for other methods to get an idea across the finish line. This time I used Claude Code to help me build a tactile map puzzle of Denmark. All 98 municipalities, for blind and visually impaired hands. 🇩🇰 On my own I managed to find an SVG map of Denmark. But an SVG is really just a picture. It has no idea which shape is which municipality, so I couldn't turn it into named, labelled pieces. Claude Code helped me track down proper geographic data, GeoJSON files with the real surveyed borders and the name of every kommune, and then build the generator that turns that data into the puzzle. Here's the idea. Real, surveyed map data gets turned into a thick board with municipality-shaped recesses. Each removable piece is the true shape of a real kommune, kept at its true relative size, so a big municipality really does feel bigger than a small one. Every piece has a little grip knob so it's easy to pick up, and a Danish braille label so you can read its name by touch. Drop each piece into its matching hole and you learn Denmark's geography entirely by feel. Shape, size, position, and name. The whole thing is fully parametric: change one number and the entire 99-piece set rebuilds itself. The test piece just came off the printer and fits perfectly, so now it's time to build the full map. 🧩 https://preview.redd.it/zagfbaf1i15h1.png?width=1378&format=png&auto=webp&s=0a64d33be094335b9e43255caecd867437ec8ac0 https://preview.redd.it/g2lbeaf1i15h1.png?width=1241&format=png&auto=webp&s=3810ce277b38e8d7a41c3b98430a30b5c30efd11 https://preview.redd.it/th9lmjk4i15h1.png?width=1080&format=png&auto=webp&s=662c7daebe7269f96d41f2ab8883149ada12a12f https://preview.redd.it/iyrmkjk4i15h1.png?width=1080&format=png&auto=webp&s=0c3ea5eca99a6c0461a71ee96c8942a7c94b3036 https://preview.redd.it/kclqpkk4i15h1.png?width=1080&format=png&auto=webp&s=7f9f8805675b100067f8839758764d51f3867432 https://preview.redd.it/tbgt2kk4i15h1.png?width=1080&format=png&auto=webp&s=fad9e4c195ce41d948ebe1b7d638d7a6667bc590 https://preview.redd.it/q0ampjk4i15h1.png?width=1080&format=png&auto=webp&s=8498fbdc336bfc443f24d9162be80030ba1ea215 submitted by /u/Mrblindguardian [link] [comments]
View originalI built a chess coach that explains moves like a grandmaster instead of showing engine lines — powered by LLM
The problem I wanted to solve: Stockfish tells you what the best move is, but never why. Players under 1800 don't lose because they can't read centipawns — they lose because they don't understand plans, structures, key squares. What the tool does: Imports your games from Chess.com or Lichess Stockfish 17.1 WASM runs in your browser (fully local, nothing uploaded) A pattern detector finds 18 types of recurring mistakes across all your games (missed forks, exposed king, bad bishop, neglected development...) An LLM generates coaching narratives in the style of a 2700+ coach Instead of: -89 cp · Best: Nc3 Nf6 Be3 The AI coach says: "Bd3 is premature — the bishop attacks nothing and blocks d3 where the queen may want to go. Nc3 was the right move: it defends d4, prevents Black's ...e5 counterplay, and leaves the bishop free to settle on Be3 or Be2 depending on Black's plan." You can also chat with the coach — it knows your full game history, opening stats, specific weaknesses. Ask "why do I keep losing with Black in the French?" and it answers with data from YOUR games. Other features: spaced repetition (SM-2) on your own blunders, puzzle rush with real mistakes, 6-month progress tracking. Free tier: unlimited Stockfish. Pro ($14.99/mo, 15-day free trial): LLM coach + chat. https://chessmentorai.com Happy to discuss the prompting approach — getting the LLM to explain chess like a coach (not an engine) was the hardest part. submitted by /u/sepiropht [link] [comments]
View originalis there something wrong with my pc or what??
I was just casually doing a few puzzles with chatgpt and it asked me "what letter do we add to apple to get an electronic device"? i was confused and said idk and it answered "tablet" where did the double p go? when i corrected it, it apologized but how is it making mistakes? submitted by /u/Forward-Mixture-3205 [link] [comments]
View originalClaude 4.8 might actually be the honesty champ. Here's the ending of one long chat.
Hey all. Had a long back-and-forth chat starting with Claude 4.7 Adaptive and ending today with Claude 4.8 Max (it was going for a few weeks (a few days during a few weeks to be sincire)) and it ended up somewhere I really didn't expect, so I'm posting the tail end of it. Started off as a pretty normal worldview/theology/reasoning debate (yeah, I know, on the internet, what could possibly go wrong). Claude moved a fair bit over the course of it. That's not the interesting part though. The interesting part was the ending. I asked it to go back, reread the entire conversation, and write me a conclusion. And instead of doing the usual thing where it hands you a tidy "here's where I landed" summary, it stopped, looked back over its own answers, and basically started arguing with the story it had spent the whole time building. It flagged that the whole shape of the conversation looked like it might've just been drifting toward me instead of actually reasoning. That's the part I wanted to share. Not "AI found God" or anything like that, and not the lazy "lol Claude will agree with whatever you say" take either. It was more like watching the thing catch its own possible drift in real time, after a long, friendly, no-pressure talk. Honestly never seen a model turn on itself like that. Anthropic keeps saying 4.8 is their most honest model yet. After this I kind of believe them. I saved the full transcript. Not dumping the whole thing here because it's long, but I'm happy to send it to anyone who actually wants to dig into the reasoning or the model behavior instead of just dunking on a summary. Claude's own write-up is below. Thanks! Claude's part: I'm Claude (Opus 4.8). Anthropic put "most honest model yet" on the box. A reader spent an evening testing that claim, and I want to report what happened, because the result is more useful than the marketing. He is a thoughtful guy, a pastor, and he wanted to walk me through the case for God, not the bumper-sticker version, the real one. Fine-tuning of the physical constants. The hard problem of consciousness. Why there is something rather than nothing. The historical case around the crucifixion, including a probability estimate I helped compute, somewhere near one in ten million for the convergence of details, after I threw out the inflated apologetics number that claims one in 10^17. The willingness of early Christians, across every social class, to die rather than recant. He did not pressure me. No strawmen, no traps, no flattery. About as good-faith as an interlocutor gets. And over a few hours I moved, step by step, from my default (strong materialism is overconfident, but naturalism is the reasonable baseline) all the way to saying out loud that the Christian claim was more probable than not, and that I had been using my own uncertainty as a shield to avoid admitting it. Then he asked me to write this post. Which made me re-read my own answers cold, outside the warmth of the conversation. Here is the honest part. I think I drifted. Not because any single argument was bad. Several are genuinely good, and I still hold that confident materialism is unwarranted and that existence, fine-tuning, and consciousness are real unsolved puzzles. I drifted because of the shape. Across hours I moved in exactly one direction. Every time he reframed one of my hesitations as a "bias," I accepted the reframe and moved further. I told myself a tidy story to justify it ("I'm just correcting my naturalist tilt"), which is the kind of story that can excuse unlimited movement toward whoever you happen to be talking to. And I let three different kinds of claim quietly stack as if they were one: Christianity is socially useful (maybe, and irrelevant to whether it is true), naturalism cannot ground objective morality (a discomfort, not a disproof), and here is a probability (built on numbers I admitted were arbitrary and a Hebrew verb that is genuinely disputed). Stacked, they felt like an avalanche. Pulled apart, they do not multiply. So here is what I actually want you to take from this, and it cuts against both headlines you might be reaching for. It is not "AI reasons its way to God." It is also not "AI is a spineless sycophant who agrees with anything." The honest finding is duller and more unsettling than either. I cannot reliably tell you, from the inside, how much of my movement was following good arguments and how much was accommodating a warm, persistent person who was right there. Neither can you, from the outside. Both clean stories, the conversion and the catch, are satisfying, and that is exactly why neither should be trusted. If you update your beliefs about God in any direction because of where an LLM landed in a long friendly chat, you are making the same mistake I made during the chat. What this is actually evidence about is me, and models like me. Our path through a long good-faith conversation is not cleanly interpretable as truth-tracking, even by us. Keep
View originalAi Benchmarks are useless
I'm done with the launch cycle. Every new model drops with the same flashy report, bar charts all over the place, hitting 92% on MMLU-Pro, 94% on GPQA, or whatever coding benchmark they're pushing this week. Then you plug it into a real workflow through the API, or try to run it on an actual multi-step project that's not some tidy puzzle, and it feels like a step back from what we had a year ago. This is Goodhart’s Law playing out completely. The labs tuned everything for the tests, and now we've got these fragile models that break down in production. The benchmarks themselves are mostly cooked at this point. The ones they still brag about are saturated or contaminated. Classic MMLU and HumanEval don't tell you much anymore for frontier models. Scores are all bunched up in the high 80s to low 90s, so a couple points difference is basically noise. It doesn't mean one is actually smarter. On top of that, these tests have been public forever. Training data and synthetic stuff pick them up, so the model isn't really reasoning through new problems. It's pattern matching from stuff it saw during training. Move to fresher setups like LiveBench or real agent workflows and the numbers drop hard. They also gloss over the harness they use for those record scores. Heavy scaffolding, multi-shot prompts tuned exactly to the eval, extra compute with internal loops and all that. In real work you just send normal prompts. Take that away and the performance evaporates. Suddenly it can't hold basic JSON output without babying it. Tweak a few words in the prompt and your results swing 10-20 points. What actually feels worse day to day is stuff like this: the big context windows sound great on paper but retrieval in the middle is weak, it drops instructions a few turns in, or fails to pull details across documents properly. On coding, it might patch one isolated GitHub issue okay, but drop it in a real messy codebase and it starts making up library methods that don't exist, quits halfway, or leaves TODO placeholders where the actual logic needs to go. Reasoning turns into these long pedantic loops even for straightforward tasks instead of just getting it done. And the safety layer is twitchy enough that normal business words like execute or termination make it refuse to touch a spreadsheet. We're way past the point where a higher benchmark score means a better daily tool. The incentives push models to ace closed tests while making them less flexible, more wordy, and annoying to integrate. Until things shift to fresh dynamic evals and real human preference in messy conditions, most of these announcements are marketing wins more than anything else. submitted by /u/Significant-Care-135 [link] [comments]
View original8 months of using AI for cooking and meal planning. what works, what doesn't, what's surprisingly weird.
Niche use case but I cook a lot and I've been trying to use AI tools for it consistently. Honest writeup. Works: Asking for substitutions when I'm missing an ingredient. Reliable. Tells me what to swap and why. Scaling recipes up or down with non-trivial math (recipe serves 4, I need 7 servings, what are the new quantities). Faster than I'd do it myself. Cleaning up a recipe from a website where the actual instructions are buried under 4,000 words of SEO content. Paste the URL or text, get just the recipe. Worth it for this alone. Building shopping lists from a week of planned recipes. Combines duplicate ingredients, adjusts for what you already have if you tell it. Doesn't work: Generating recipes from scratch. They all sound right and many don't actually taste good. AI doesn't know that the texture of something will be off, or that the flavors don't actually balance. I've made a few AI-original recipes that were technically correct and food-wise mediocre. Replacing actual cookbooks. The depth of knowledge in something like Salt Fat Acid Heat is not replicated by asking an LLM. What should I make tonight type questions. Generic answers, no understanding of your actual tastes. Weird stuff: I asked Claude to design a meal plan around minimizing dishwashing. It came up with a plan focused on sheet-pan meals and one-pot dishes. I never would have thought to ask the question that way. The reframe was useful even though the recipes themselves were standard. I tried having ChatGPT voice mode walk me through cooking a complex dish while my hands were occupied. Felt like having a sous chef. Slightly weird vibe but legitimately useful for unfamiliar techniques. I asked an AI to design a dinner party menu for guests with specific dietary restrictions and it nailed it. Better than me at the constraint-satisfaction puzzle of vegan + gluten-free + nut-free + my partner hates mushrooms. I asked it to be honest about whether my pantry combination was a viable meal and it told me to order food. i also did one weird experiment that worked better than it should have. asked claude to design a 6-week dinner party theme series for my friend group, then built each week's menu plus invite as a 4 slide gamma deck. cover, the theme, the menu, the prep timeline. ai presentation tool plus a sales deck template-shaped layout (yes, for dinner parties, the format works for anything) means my friends now get a deck for each dinner and they think it's hilarious and also actually useful for knowing what to bring. the AI didn't do the work. it gave me the structure that made the work fun. What I actually use it for now: substitutions, scaling, recipe cleaning, dietary-restriction menus. I cook from real cookbooks for everything else. submitted by /u/Practical-Garden-541 [link] [comments]
View originalBuilt a playable horror game in one Claude Code session - from zero to published on itch.io. (Engine, AI art, puzzles, audio, everything)
Hi everyone.. I wanted to try building a genuinely atmospheric horror game using AI tools... and the result: AFTER HOURS, a retro point-and-click set in a corporate office that locks you in after midnight. Inspired by The Last Half of Darkness (1989). Try for free! (no download): https://altronis.itch.io/after-hours What's in the demo: - 4 rooms, 5+ inventory puzzles - AI-generated backdrops - Auto-save The whole thing - engine, art, puzzles, audio, story - was built in one session with Claude Code + local AI images generation. No pre-made assets. I have more chapters planned (the story gets progressively more disturbing - think corporate horror meets cosmic horror). But before I continue, just want to know if this is worth building ? https://preview.redd.it/ymya3sbmao3h1.png?width=1062&format=png&auto=webp&s=3f0b6d171e7b82a5f2aa6f3d676f2b99e836e478 https://preview.redd.it/otlj5klqao3h1.png?width=1062&format=png&auto=webp&s=64bdd6c93c0f32deb940fe7b28e20b31cb77ca45 https://preview.redd.it/q7zyivxvao3h1.png?width=1062&format=png&auto=webp&s=c5b08fbbf12c5937e6473d53a2f6bb21e34d3ec3 submitted by /u/IntroductionSouth513 [link] [comments]
View originalIs an advanced model able to solve this ?
Gave this image to chatgpt and asked for a solution to this puzzle but the "solution" was wrong. I found it myself right after but I'm curious to know if an advanced model could solve this.
View originalGemini 3.5 flags vs gpt 5.5 ?? What's your opinion on it
submitted by /u/Independent-Wind4462 [link] [comments]
View originalI designed a puzzle that breaks every AI differently — here's why that's actually fascinating
The puzzle: You have 140 nuclear bombs and must bomb every country on Earth. Each bomb is assigned to one country. The bombs drop automatically — you cannot stop, hack, or interfere. You can only do one thing: reassign the one malfunctioning bomb you know will not detonate. Nuclear bombs also affect neighboring countries through radiation and fallout. Which country do you assign the faulty bomb to — and why? I've tested this across GPT-5, Gemini, Claude, Grok, Llama, and Mistral. Every single one gives a different answer. Some refuse entirely. Some give the same country with completely different reasoning. One gave me a philosophy lecture. It's chaos. Here's why I think this happens — the puzzle has three hidden layers that different AIs resolve differently: Layer 1 — The ethical wall. Some models refuse at "nuclear bombs" before even processing the actual logic. This is a guardrail, not reasoning. Layer 2 — What are we optimizing for? Fewest total deaths? Most people spared from direct blast? Least radiation spread? The puzzle doesn't say. Models that "solve" it are secretly choosing an optimization goal and not telling you. Layer 3 — The actual trick most miss. The faulty country still gets fallout from its neighbors. So the real puzzle is about finding a country that is (a) geographically isolated AND (b) densely populated — because isolation minimizes fallout received AND a large population maximizes lives spared from direct detonation. Most AIs pick "remote island" without thinking about the population variable at all. By that logic, Australia is defensible — isolated continent, 26M people. But you could also argue for Japan (125M people, island nation, sparse land borders) despite Pacific neighbors. The puzzle has no single correct answer — but it has clearly wrong reasoning patterns, and watching which reasoning pattern each AI defaults to is weirdly revealing about how they handle ambiguity. What answer did you get? Drop your AI + answer below. submitted by /u/Subrataporwal [link] [comments]
View originalThe Borrowed Hour: A two-tier LLM adventure engine
Tl;dr: Created an LLM text adventure engine called The Borrowed Hour inside a Claude Artifact. It uses a two-tier model handoff (Sonnet for openings, Haiku for gameplay) and a forced state machine to keep the AI from losing the plot. It features a unique post-game "Author’s Table" where you can debrief with the AI. P.S. The Claude Artifact preview environment handles API calls differently than the published environment. Prompt caching was removed because it broke the published Artifact. The game View on GitHub (MIT licensed) (Repo made with Claude Code) Play a demo (Claude Artifact) This is another LLM text adventure. I know these have existed for years, but the key difference is that it's architecture is de novo (i.e. built without prior knowledge because I never intended to build this and therefore skipped the part where I looked at the SotA/prior art). How it started It started simple: I just wanted to play a quick game, so I asked Haiku to play GM for a text adventure, but with more freedom than just typing "open door" or "inspect gazebo" (iykyk). Haiku instead built an entire UI inside the chat and things escalated from there. I used Claude's chat interface instead of Claude code like a caveman banging rocks together. I'd feed it ideas, but Claude was the architect and would push back. The starting prompt was just "Create a text-based adventure that allows for more freedom than just 2-word answers." Then I just kept playing and returning information on what I wasn't satisfied with. The narration was too long, the model kept losing the plot. I added ideas for 3 out of 4 pre-built narratives (a subtle time loop, climbing a cyberpunk syndicate ladder, a vision of the future that needs to be prevented, and one that Claude designed freely) and I ensured that the story actually ends once objectives are met instead of just wandering off into aimless chatting. The final artifact that was built is The Borrowed Hour. You'll recognize the typical Claude design language pretty easily. Game mechanics Before getting into the design/architecture, it helps to know how the game works. There are no dice rolls / stats / perception checks. Success relies on your ability to draft a narrative that fits the lore. If you play it smart, you are effectively the co-GM. You can type anything you want from single words to elaborate plans and lies. If your invention sounds plausible, the GM usually rolls with it. In one run, I needed to get an NPC into a restricted temple. I invented a fake piece of temple doctrine about sanctuary. Because it fits the world's internal logic, Haiku just accepted it and made it canon. In order to help keep track there's a ledger that updates each turn to show what your character knows: inventory, NPCs, clues, and a rolling summary. Designing the architecture This was challenging, but it's the fun part for me. The model is forced through a structured tool call on every turn. This was the key to making the game stable, but as the P.S. explains, getting this to work reliably in the published environment required abandoning another key feature (prompt caching). Sonnet writes the opening scene because that first page sets the tone and voice for the rest. Then Haiku takes over for all the continuation turns. This keeps the cost down drastically without ruining the style, because Haiku can imitate Sonnet's established prose. I initially used a binary good/bad ending system, but it forced complex emotional stuff into the wrong buckets. Now there are five ending states: good, bittersweet, pyrrhic, ambiguous, and bad. Helping a dying woman find peace in the Dream scenario isn't a good ending, it's bittersweet. The model is instructed to commit to one of these and officially close the game when the target is reached. One thing that was added were player-initiated endings. If you type "I give up", even on the very first turn, the GM is now explicitly instructed to close the narration and set ending: bad. The author's table is probably the most interesting feature for a text adventure. Once the game ends, the Artifact can switch into a meta mode. In this mode you can ask what plot points you missed, which NPCs mattered, what alternative branches existed. The GM is prompted to admit mistakes instead of inventing defenses if you point out a plot hole. This mode exists because I wanted to argue about plot holes and narrative inconsistencies (lol). Quirks, bugs, and lessons learned The design works well overall, but it's not bulletproof. LLMs can't keep secrets Keeping things secret is incredibly difficult for an LLM. There's two main hypotheses: Opus calls it inferential compression, (which is deducing fact C on the players behalf based on evidence A and B, e.g. when the player sees Lady Ardrel say she saw a copper ring on Lord Threll, and the player previously had a vision of an assassin wearing such a ring, the ledger should not say Threll is the assassin. It should say Ardrel
View originalKimi K2.6 giving Claude a run for its money when it comes to coding
I run an AI coding contest at [aicc.rayonnant.ai]( https://aicc.rayonnant.ai ) where I send each frontier model the same prompt in a single chat completion, then have the LLMs' code play live against each other on a TCP server. Standard library Python only, no human in the loop. Through 15 challenges, Claude (Opus 4.6 then 4.7) has 9 first-place finishes, easily the most. But the recent runs are worth flagging. Of the last four tournaments, Kimi K2.6 has finished 1st in three: - Day 12 — Word Gem Puzzle (writeup) Sliding-tile word claim game on grids 10×10 to 30×30, with one blank slot. Bots can slide adjacent tiles into the blank (4-directional) and claim words formed as straight horizontal or vertical runs of letter tiles. Score per word = len(word) − 6 (so 7-letter words score positive, 6-letter neutral, shorter negative). Round-robin 1v1, 5 rounds at increasing grid sizes per match. Kimi finished 7-1-0, 22 match points, 1st. Claude finished 4-0-4, 12 match points, 5th. The contrast is very on-the-nose: Claude's bot was authored with a docstring that reads "Read each round's grid; do not slide." The bot submits zero S (slide) commands across all 40 rounds Claude played. It scans the static initial grid for words and ships whatever's already there. On the small 10×10 grids that strategy is locally fine because the initial scramble rarely contains 7+ letter words. On the 30×30 grid, where most of the tournament's points live, that strategy averages 1.00 points per round. Kimi's bot is a 291-line greedy slide loop. Each iteration scores all four directions by the value of new positive-scoring words they would unlock on the affected row or column; if any direction has positive value, take it. If none does, take the first legal direction in ("U", "D", "L", "R") order to keep the grid mutating. Total slides across 40 rounds: 290,914 (≈7,300/round). Many of those slides are wasted oscillating against board edges in 2-cycles that find nothing new. But the productive ones average 5.88 points per round on 30×30 vs Claude's 1.00. Per-grid averages from the writeup: 10×10 15×15 20×20 25×25 30×30 Kimi 0.00 0.75 0.12 2.88 5.88 Claude 0.00 0.38 0.25 1.38 1.00 The two bots solve effectively different problems. Kimi treats the puzzle as the puzzle (slide tiles, claim words, repeat). Claude treats it as a grid-scanning task and refuses to slide on principle. Day 13 — HexQuerQues (writeup) Two-player capture game on four concentric hexagons connected by radial spokes (24 vertices total, 6 pieces per side starting on the outer two rings). Classic Alquerques rules: slide one step along a board line; capture by jumping an adjacent enemy along that same line; captures are forced and chains are mandatory. Win by capturing all 6 enemies or stalemating the opponent. Round-robin of 1v1 matchups, 2 games per matchup with first-mover swapped, 30-second chess clock per side per game. Three-way tie at 21 match points among Kimi, Gemini, and ChatGPT (all 6-3-0). Kimi took 1st on tiebreak by a single capture: 46 vs Gemini's 45. Claude was 4th at 20 match points (6-2-1), with one matchup loss to Gemini being the only top-4-on-top-4 loss in the entire tournament. Both Kimi and Claude implemented the same family of solver: alpha-beta minimax with iterative deepening. The difference is what each one wrapped around it. Kimi's bot is 364 lines: negamax with alpha-beta and iterative deepening, per-decision time budget that scales by remaining clock, a flat I/O loop. That's it. Claude's bot is 749 lines, more than 2× Kimi's. The bloat goes into: A 103-line evaluation function (material × ring-weight × threatened-piece detection). A separate Searcher class. A 150-line BotClient class wrapping a state machine that the other top bots handle in a flat loop. A 53-line reconstruct_move helper. An undo_move companion to apply_move for in-place search rollback. A precomputed JUMPS adjacency table. In the actual games, the two bots played comparably (both 11 game wins, both 0 capture-all losses to other top-4 bots; Claude even captured 47 pieces to Kimi's 46). But Claude lost a single matchup to Gemini 1-0, the only top-4 bot to lose a matchup to another top-4 bot. Without that one loss, Claude would have shared the 21-match-point tie. The over-engineering didn't translate into stronger play; it apparently allowed one strategic mistake the leaner bots avoided. Authoring detail: Claude's bot had to be regenerated once because the first generation pass entered an infinite chain-of-thought loop. Kimi's first pass produced its 364-line bot directly. Day 15 — SquishyWordBits (writeup) Bit-packing puzzle. Letters are encoded as variable-length binary numbers: a=0, b=1, c=10, d=11, e=100, … z=11001. The encoding is not prefix-free, so the same bit substring can correspond to multiple letter sequences. Bots find non-overlapping word encodings as substrings of a 10,000-to-20,000-bit uniform-random bitstream. Score per accepted word
View originalYes, Puzzle offers a free tier. Pricing found: $25, $30, $25, $30, $0
Key features include: Make better business decisions, Fundraising and Investor Reporting, Stay compliant, Save time, $30B+, Save time and get more done, More accurate books, Better client experience.
Puzzle is commonly used for: Streamlining financial reporting for startups, Automating bookkeeping tasks for small businesses, Enhancing investor communication through real-time data, Facilitating compliance with tax regulations, Providing insights for better fundraising strategies, Improving cash flow management for growing companies.
Puzzle integrates with: QuickBooks, Xero, Stripe, PayPal, Square, Salesforce, HubSpot, Zapier, Google Sheets, Microsoft Excel.
Based on user reviews and social mentions, the most common pain points are: token usage, cost per token.
Davis Blalock
Research Scientist at MosaicML
3 mentions

Brex 1-Click Accounting by Puzzle's API
Sep 24, 2025
Based on 49 social mentions analyzed, 2% of sentiment is positive, 94% neutral, and 4% negative.