SoftwareEngineering

46 bookmarks
Custom sorting
Software engineering with LLMs in 2025: reality check
Software engineering with LLMs in 2025: reality check

Mostly used for dev support: PR, docs, autocomplete, code reviews. Not so much for code generation.

Google takes it very slow with outlooks for 10x. Amazon pushes tooling and is CMP leader. SWE recognize how much better the tools have become.

·newsletter.pragmaticengineer.com·
Software engineering with LLMs in 2025: reality check
Expert Generalists
Expert Generalists
Being an Expert Generalist should be treated as a first-class skill, one that can be assessed and taught.
·martinfowler.com·
Expert Generalists
InfoQ Software Architecture and Design Trends Report - 2025
InfoQ Software Architecture and Design Trends Report - 2025
The InfoQ Trends Reports offer InfoQ readers a comprehensive overview of key topics worthy of attention. The reports also guide the InfoQ editorial team towards cutting-edge technologies in our reporting. In conjunction with the report and trends graph, our accompanying podcast features insightful discussions among the editors digging deeper into some of the trends.
·infoq.com·
InfoQ Software Architecture and Design Trends Report - 2025
Can AI help rebuild an application without accessing its code?
Can AI help rebuild an application without accessing its code?

A trial to use LLMs to document an application without access to the code base. The LLM had access to UI, network traffic, and database.

Reconnaissance:

  1. AI as the user: AI agent with access to Playwright MCP server navigates the application. Capture user journey, screenshots, dialog descriptions, flowchart. Conclusion: not sufficient for a comprehensive overview.
  2. Change data capture: 2nd pass, AI follows UI path and looks up database changes after each click. DB triggers were setup to create a log of every INSERT and UPDATE. Conclusion: powerful way to deconstruct queries from the outside.

Specification:

  • Refine path discovery prompt, more explicitly find and traverse all possible user actions. Run multiple times.
  • Converge versions, fix discrepancies, create a single consolidated map of the user flow.
  • Capture network traffic by analyzing JSON payloads to reverse-engineer the backend API (Swagger doc). Conclusion: possible but difficult, not very useful.

Rebuild:

  • generate backlog tasks from markdown, screenshots and DB logic descriptions
  • Feed stories into Replit

Observations:

  • AI-built prototype is a very effective way to validate and improve the specification.
  • LLM struggled to create a good implementation plan.
  • Replit ignored specifications about the datbaase.
·thoughtworks.com·
Can AI help rebuild an application without accessing its code?
The rise of "context engineering"
The rise of "context engineering"

Context engineering is building dynamic systems to provide the right information and tools in the right format such that the LLM can plausibly accomplish the task.

A common reason agentic systems don’t perform is they just don’t have the right context. Garbage in, garbage out.

The context passed to the model may be bad for a few reasons:

  • There is just missing context that the model would need to make the right decision.
  • The context us formatted poorly

Prompt engineering is a subset of context engineering.

Example of good context engineering

  • Tool use: LLM can access the tool to get information
  • Short term memory: Create a summary of a lengthy conversaion and use it in the future.
  • Long term memory: Being able to fetch information from previous preferences.
  • Prompt engineering: Clearly enumerate instructions.
  • Retrieval: fetch information dynamically and insert it into the prompt before calling the LLM.
·blog.langchain.com·
The rise of "context engineering"