nowfound

Alternatives

Products that do what Laravel Agent Response does

Package for llms.txt, fewer tokens, clarity for agents.

  1. 1AJ

    Hey HN, we’re building an open specification that lets agents discover and invoke APIs with natural language, built on the OpenAPI standard. agents.json clearly defines the contract between LLMs and API as a standard that's open, observable, and replicable. Here’s a walkthrough of how it works: https://youtu.be/kby2Wdt2Dtk?si=59xGCDy48Zzwr7ND. There’s 2 parts to this: 1. An agents.json file describes how to link API calls together into outcome-based tools for LLMs. This file sits alongside an OpenAPI file. 2. The agents.json SDK loads agents.json files as tools for an LLM that…

    2025 · github.com

  2. 2WW

    I spent a few hours last weekend testing whether AI can replace code by executing directly. Built a contact manager where every HTTP request goes to an LLM with three tools: database (SQLite), webResponse (HTML/JSON/JS), and updateMemory (feedback). No routes, no controllers, no business logic. The AI designs schemas on first request, generates UIs from paths alone, and evolves based on natural language feedback. It works—forms submit, data persists, APIs return JSON—but it's catastrophically slow (30-60s per request), absurdly expensive ($0.05/request), and has zero UI…

    Nov 2025 · github.com

  3. 3

    Build AI agents that respond with UI instead of text

    Feb 2026

  4. 4

    Get your site AI ready with a llms.txt

    2024

  5. 5
    liteLLM120

    One library to standardize all LLM APIs

    2023

  6. 6AK

    I shipped a wiki layer for AI agents that uses markdown + git as the source of truth, with a bleve (BM25) + SQLite index on top. No vector or graph db yet. It runs locally in ~/.wuphf/wiki/ and you can git clone it out if you want to take your knowledge with you. The shape is the one Karpathy has been circling for a while: an LLM-native knowledge substrate that agents both read from and write into, so context compounds across sessions rather than getting re-pasted every morning. Most implementations of that idea land on Postgres, pgvector, Neo4j, Kafka, and a dashboard. I…

    Apr 2026 · github.com

  7. 7

    Cut your AI token costs by 40-60% with one API call

    Feb 2026

  8. 8SD

    Hi! Been working on DialtoneApp, a free domain scanning tool to see how your site does with all the new rules for AI SEO. Also known as AEO (Answer Engine Optimization) or GEO (Generative Engine Optimization) the A can also stand for "Agent"! It's a whole new world out there and we haven't even gotten to agents.json files and the new "b2b" (bot to bot) commerce part. But there are some standards starting to take shape with llms.txt and using things like: on all your html pages to have this other markdown version. We list the top 300 sites in terms of how well they follow all the new rules.…

    Apr 2026

  9. 9
    Twigg157

    Git for LLMs - a Context Management Tool

    Oct 2025

  10. 10

    Optimize your website for AI Agents, not just humans.

    Jan 2026

  11. 11LT

    Current AI-assisted CLI tools are often part of larger systems and work better on Linux. I built llm-term to address these. It's a Rust-based tool that compiles into a single binary file. You only need to download the binary, add it to your PATH, and configure your OpenAI key to get started. While llm-term offers an option for gpt-4o, it works great with gpt-4o-mini. So it's not costly. I appreciate any feedback or suggestions.

    2024 · github.com

  12. 12

    Generate your site's llms.txt in one command

    Jun 2026 · github.com

  13. 13AF

    Hi HN - We’re building Agent File (.af), which makes it possible to re-create the exact same agent (including memories, tools, message history, configs, etc.) across different machines. A big difference between LLMs and agents is that agents have associated state: system prompts, editable memory (personality and user information), tool configurations (code and schemas), and LLM/embedding model settings. While you can run the same LLM as someone else by downloading the weights, there’s no “representation” of agents that allows you to re-create an instance of an agent across services.…

    2025 · github.com

  14. 14

    Does your site have an llms.txt file?

    14d ago · querytrace.co

  15. 15

    Make your website visible to AI in less than 30 seconds

    Jan 2026

  16. 16

    Standardize your website for AI agents and LLM crawlers.

    Apr 2026

  17. 17TO
  18. 18

    Free llms.txt Generator for Agent-Ready Docs

    Jun 2026 · llms-txt.io

  19. 19LS

    Hi HN! Stefan here from superglue and today I’d like to share a new benchmark we’ve just open sourced: an Agent-API Benchmark, in which we test how well LLMs handle APIs. We gave LLMs API documentation and asked them to write code that makes actual API calls. Things like "create a Stripe customer" or "send a Slack message". We're not testing if they can use SDKs; we're testing if they can write raw HTTP requests (with proper auth, headers, body formatting) that actually work when executed against real API endpoints and can extract relevant information from that response. tl:dr: LLMs suck at…

    2025 · github.com

  20. 20CK

    Hi HN, for quite some time I've been thinking how LLMs are missing the knowledge base, where I can dump CSVs, PDFs, and most important, inline web app. running on Claude Code (bring your own agent) with agents with heartbeats and jobs https://runcabinet.com It runs locally and is installable via npm. GitHub (open source): https://github.com/hilash/cabinet This is still very early. I put the first version together quickly after seeing a post by Andrej Karpathy about LLM knowledge bases, which matched closely with what I’d been building. Some people have already…

    Apr 2026 · runcabinet.com

  21. 21AG

    npx agentseed init AGENTS.md (https://agents.md) is a standard file used by AI coding agents to understand a repo (stack, commands, conventions). Agentseed generates it directly from the codebase using static analysis. Optional LLM augmentation is supported by bringing your own API key. Extracts languages, frameworks, dependencies, build/test commands, directory structure, and monorepo boundaries.

    Feb 2026 · github.com

  22. 22

    llms.txt generator

    Jul 2026 · geekflare.com

  23. 23AC

    Multi-tier exact-match cache for AI agents backed by Valkey or Redis. LLM responses, tool results, and session state behind one connection. Framework adapters for LangChain, LangGraph, and Vercel AI SDK. OpenTelemetry and Prometheus built in. No modules required - works on vanilla Valkey 7+ and Redis 6.2+. Shipped v0.1.0 yesterday, v0.2.0 today with cluster mode. Streaming support coming next. Existing options locked you into one tier (LangChain = LLM only, LangGraph = state only) or one framework. This solves both. npm:…

    Apr 2026

  24. 24LF

    Hey HN, I built SWE-Kit, LLM toolkit (Function callable tools) which makes building agents specialised in coding like Devin very easy. I noticed a typical pattern while building local agents: creating & perfecting LLM tools to interact with system or codebase was the repeated and time-consuming. We created a layer that simplifies building agents that can interact with code, file system, git, shell and allows you to quickly solve for a wide variety of coding agent use cases. Aren’t there open coding agents already? Well, yes, but most folks would want to solve their specific use case like a…

    2024 · swekit.dev

Ranked by how close each launch is in meaning, then by votes. Refine with a description →