AI tools as project scaffolds
Developers outlined a workflow that uses AI assistants (Cursor, Claude) to rapidly sketch, explain and rebuild a full-stack app — for example, prompt a Next.js app, ask the agent to map the repo file-by-file, then deploy and iterate. The thread also showed how long-form Claude prompts can coordinate cross-repo integration and shared API/data-structure design for more ambitious portfolio projects. (x.com) (x.com)
A small but telling genre of developer post is spreading across X. It does not show off a finished app. It shows off a way of getting to one. The workflow is simple enough to fit in a thread. Ask an AI coding agent to generate a Next.js project. Then point the same agent back at the repo and tell it to explain what it just made, file by file. Then deploy, inspect the rough edges, and ask for the next round of changes. What used to be the slow opening act of a side project now looks more like scaffolding that appears on demand. That pattern matters because it turns AI from a code generator into a navigation system. Cursor’s own quickstart tells users to begin by asking the agent to explain a codebase, identify entry points, and highlight what to read before making changes. Its agent mode is built to search a repo, edit multiple files, run terminal commands, and verify results. In other words, the tool is not just there to write code. It is there to orient the human inside a codebase that may have appeared only minutes earlier. (cursor.com) The repo walkthrough is the key move. It solves the most obvious problem with AI-generated software, which is not that the code is always bad. It is that the human often does not know what is where. Cursor says its agents combine exact text search with semantic search, so a prompt like “where do we handle authentication?” can find the right file even when that word never appears in it. On larger codebases, the company says combining semantic search with grep improved answer accuracy over grep alone. That makes the “map this project for me” step more than a parlor trick. It is a way to turn generated code into something legible enough to keep. (cursor.com) Once that map exists, the project stops feeling like a one-shot prompt and starts feeling like normal software work again. Cursor explicitly pushes users toward a loop of small edits, diff review, tests, and bigger changes only after a plan is approved. Its documentation even frames AI-generated documentation as something that should be grounded in actual code paths and dependencies rather than guesses. That is the deeper idea in the threads: use the model to get a first draft of the system, then use the model again to produce the explanation, the README, the architecture notes, and the next task list. The app and its documentation grow together. (cursor.com) That same logic scales past a single repo. The second thread pointed to long Claude prompts that coordinate work across multiple repositories, shared APIs, and common data structures. Anthropic has been building directly toward that use case. Claude Projects lets users load a large body of context into one workspace, attach custom instructions, and keep the model grounded in the same set of documents and code over time. Anthropic says each Project includes a 200K context window, enough for hundreds of pages of material. That is exactly the kind of space needed to hold a frontend repo, a backend repo, a schema, and the rules that tie them together. (anthropic.com) The hard part is not stuffing all of that into a model once. It is keeping the work coherent after the first pass. Anthropic’s own engineering notes say long-running coding agents fail when they try to do too much in one shot or when a later session mistakes partial progress for completion. Their fix is procedural. Set up an initializer that lays down the environment. Then let later coding sessions make incremental progress while leaving clear artifacts for the next session. That is almost a formal description of what these developers are doing by hand with giant prompts, repo summaries, and shared interface definitions. The prompt is not magic. It is project management in plain English. (anthropic.com) Seen that way, the striking part of these threads is not that AI can spin up another demo app. It is that developers are using AI to create the missing middle layer between idea and maintainable project: the map of the repo, the explanation of each file, the shared contract between services, the written record of what comes next. The concrete artifact is no longer just a generated Next.js app. It is the moment right after, when the agent is asked to point at the folder it just made and explain the main entry points before anyone touches deploy.