frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

The End of Naked Locker Rooms

https://www.theatlantic.com/family/2025/11/naked-locker-room-end/684907/
2•loughnane•4m ago•0 comments

Agentic Windows

https://mikestone.me/2025-11-11-agentic-windows
1•speckx•4m ago•0 comments

OpenAI's GPT-5.1 is an obsessive researcher, and Cline gives it focus

https://cline.bot/blog/openais-gpt-5-1
2•janpio•6m ago•0 comments

Fantasy Consoles

https://fantasyconsoles.org/wiki/Main_Page
2•azkalam•7m ago•0 comments

Bring Your Own Blob Storage?

https://nuon.co/blog/bring-your-own-blob-storage/
3•MorehouseJ09•9m ago•1 comments

Show HN: DBOS Java – Postgres-Backed Durable Workflows

https://github.com/dbos-inc/dbos-transact-java
3•KraftyOne•12m ago•0 comments

AI Didn't Steal the Doctor's Job. It Gave Them Their Evenings Back

https://www.trytwofold.com/blog/ai-didnt-steal-the-doctors-job
4•ragswag•13m ago•1 comments

P3a – Pixel Art Player

https://www.xda-developers.com/adorable-esp32-project-coolest-way-show-off-pixel-art/
2•fabk•13m ago•1 comments

Ultrasound-driven programmable artificial muscles

https://www.nature.com/articles/s41586-025-09650-3
4•PaulHoule•13m ago•0 comments

Tesla Recalls Powerwall 2 AC Battery Power Systems Due to Fire and Burn Hazards

https://www.cpsc.gov/Recalls/2026/Tesla-Recalls-Powerwall-2-AC-Battery-Power-Systems-Due-to-Fire-...
2•tguvot•13m ago•1 comments

A flexible path to modern end-user computing with Cameyo by Google

https://cloud.google.com/blog/products/chrome-enterprise/a-flexible-path-to-modern-end-user-compu...
2•ChrisArchitect•15m ago•0 comments

Parsing Integers in C

https://daniel.haxx.se/blog/2025/11/13/parsing-integers-in-c/
7•8organicbits•20m ago•0 comments

The state of Maryland partners with Anthropic to better serve residents

https://www.anthropic.com/news/maryland-partnership
3•computerliker•21m ago•1 comments

Blue Origin: New Glenn Mission NG-2 Webcast [video]

https://www.youtube.com/watch?v=ecfxcTEl-1I
1•cryptoz•22m ago•0 comments

Why agents DO NOT write most of our code – a reality check

https://octomind.dev/blog/why-agents-do-not-write-most-of-our-code-a-reality-check
2•birdculture•23m ago•0 comments

Divine – an AI-free shortform video app

https://divine.video/
2•ravenical•24m ago•1 comments

The File Search Tool in Gemini API

https://blog.google/technology/developers/file-search-gemini-api/
2•kavith•24m ago•0 comments

Codeframe.work: instant ephemeral shared coding spaces

https://codeframe.work/
1•dieters•25m ago•0 comments

The App Store Mini Apps Partner Program

https://developer.apple.com/news/?id=xcz1s7cz
3•alwillis•26m ago•0 comments

AI-First: Practical Guidelines for Making Websites Readable by AI

https://github.com/ai-first-guides/first.ai/blob/main/docs/index.md
3•kure256•28m ago•1 comments

Show HN: Devme.me – A puzzle meme-driven mini-game full of terrible jokes

https://devme.me
3•linegel•31m ago•1 comments

What if the aliens come and we just can't communicate?

https://arstechnica.com/science/2025/11/what-if-the-aliens-come-and-we-just-cant-communicate/
3•dangle1•31m ago•4 comments

He built underground maze of light-filled earth homes in CA Sierras [video]

https://www.youtube.com/watch?v=U0bHhmpyKGg
1•surprisetalk•31m ago•0 comments

What happens when kids have unlimited screen time? [video]

https://www.youtube.com/watch?v=fWazT49Kgys
2•surprisetalk•32m ago•0 comments

When 1+1+1 Equals 1

https://mathenchant.wordpress.com/2024/12/19/when-111-equals-1/
2•surprisetalk•32m ago•0 comments

Google will allow "power users" sideload apps from unverified developers

https://liliputing.com/google-will-let-power-users-continue-to-sideload-apps-from-unverified-deve...
4•gorbachev•35m ago•2 comments

Learning to type made me a better writer

https://www.typequicker.com/blog/learning-to-type-makes-you-a-better-writer
2•absoluteunit1•35m ago•0 comments

Cash App's Moneybot might know your spending habits better than you do

https://apnews.com/article/cash-app-block-moneybot-chatbots-chatgpt-784574a4c13c79b26da35b75c7692ca6
2•c420•38m ago•0 comments

State Department says visas can be denied over diabetes, obesity: reports

https://www.axios.com/2025/11/13/state-department-visas-diabetes-obesity
5•srameshc•39m ago•2 comments

Kenya says over 200 of its nationals are fighting for Russia in Ukraine war

https://www.reuters.com/world/africa/kenya-says-over-200-its-nationals-are-fighting-russia-ukrain...
8•woldemariam•39m ago•0 comments
Open in hackernews

Show HN: Anytool – Give your LLM infinite tools with one API

https://anytoolhq.com/
2•acoyfellow•1h ago
I built inbox.dog and hit diminishing returns stuffing agents with dozens of static tools.

Context got noisy, tokens bloated, iteration slowed.

So I built Anytool: a single meta‑tool your agent calls to generate exactly the tool it needs, on demand.

First run generates + caches the code; subsequent runs are instant.

Each tool comes with its own isolated sandbox, ephemeral filesystem, per‑tool KV state, dedicated SQLite DB, per‑user env (USER_), full npm in a Bun container, and outbound fetch for APIs.

How I built it:

    - Frontend: SvelteKit (Svelte 5)
    - Backend: Cloudflare Workers + Durable Objects
    - Execution: Bun container, full npm, auto‑install + global cache, no bundling
    - Storage: R2 for code/metadata (hash‑based), per‑tool KV + SQLite for state
    - Auth: Better Auth; per‑user encrypted env injected at runtime as USER_*
    - API: Hono + Zod OpenAPI + Scalar docs; MCP‑native surface
    - AI: Effect‑TS retries/self‑healing; version‑pinned imports for determinism
What it does:

    - Natural‑language → real npm tool, executed in isolation
    - Hash caching: first run (AI + first install); next runs reuse cache
    - Per‑tool state (KV + SQLite) for workflows, history
    - Credentials: OPENROUTER_APIKEY and other secrets injected as env.USER_*
    - Retrieval/Augmentation (how it “learns”):
    - Full NPM accesss; indexes package README + types into R2 libraries/; generation retrieves these for better code and fewer tokens.
    - Per‑user similarity: LLM ranks your existing tools for semantic similarity and suggests modify vs create to avoid duplicates. Improves as your library grows.
    - MCP surface (simple on purpose):
        `search_user_tools` — semantic search in your library
        `create_tool` — generate and store new tool
        `execute_tool` — run a tool with input
Try it: AnytoolHQ.com

    — 1,000 free runs/month. Bring your OpenRouter key (OPENROUTER_APIKEY).
    - Works with AI SDK/LangChain/MCP. 
    - One tool → infinite capabilities.

Privacy/Safety:

    - Per‑user encrypted env; no secrets in code
    - Isolated execution; audit/run history
    - Explicit versioned imports; reproducible runs
Would love feedback on:

    - The “one meta‑tool” DX (AI SDK/LangChain/MCP)
    - First‑run latency + cache behavior
    - Env/credential ergonomics (USER_ injection)
    - Templates you want first (QR, CSV, validators, API clients, etc.)

Happy to answer questions.. cheers!

- Jordan Coeyman (x.com/acoyfellow)

Comments

SamTinnerholm•1h ago
Cool. Will try this with my agent.

Quick comment: the code on the website isn't using any sort of intellisense or highlighting

SamTinnerholm•1h ago
I can't seem to create tools on https://anytoolhq.com/dashboard. Report back when it works, and I'll give it a try.
acoyfellow•47m ago
Hey thanks for taking a look! Diving in now. support@anytoolhq.com routes to me, happy to chat!

edit: problem found, fixed, and tested.. let me know if you have a chance to try again

SamTinnerholm•4m ago
I tried creating a tool, it's been stuck "generating" for a few minutes now.
acoyfellow•45m ago
Yes, thank you, I know it's not ideal now. It would make a much better impression.

I plan on adding it soon, after smoothing out the internals.