惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

人人都是产品经理
人人都是产品经理
量子位
月光博客
月光博客
罗磊的独立博客
宝玉的分享
宝玉的分享
博客园_首页
酷 壳 – CoolShell
酷 壳 – CoolShell
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
WordPress大学
WordPress大学
博客园 - 叶小钗
博客园 - 聂微东
阮一峰的网络日志
阮一峰的网络日志
V
V2EX
雷峰网
雷峰网
博客园 - 三生石上(FineUI控件)
Jina AI
Jina AI
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
博客园 - Franky
美团技术团队
爱范儿
爱范儿
V
Visual Studio Blog
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
H
Hackread – Cybersecurity News, Data Breaches, AI and More
Y
Y Combinator Blog

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Give Your AI Assistant Infrastructure Eyes Before It Writ...
Siddharth Pandey · 2026-06-10 · via DEV Community

You asked Claude Code to add pagination to your order history endpoint. It generated a clean function — listOrdersByUser() — using a DynamoDB Scan with a Limit parameter. It compiled. Tests passed. You shipped it.

Three days later your AWS bill had a line item you didn't recognize: 47 million read capacity units consumed in 72 hours. The Orders table has 50M rows. Scan reads every one of them regardless of LimitLimit only controls how many results come back, not how many items DynamoDB reads.

Claude Code didn't know your table had 50M rows. It didn't know you had a GSI on userId. It guessed, and the guess was expensive.

infrawise · npm

What AI Assistants Don't Know About Your Infrastructure

AI coding assistants read your source files. They understand function signatures, TypeScript types, and import chains. What they cannot see is the infrastructure those functions run against.

When Claude Code looks at a file that calls dynamoClient.scan({ TableName: "Orders" }), it has no idea that:

  • The Orders table has 50M items
  • There is already a GSI named userId-index on the userId attribute
  • Three other functions are already using Query against that same GSI
  • The Sessions table is accessed by 6 separate code paths, making it a hot partition candidate

Without that context, the assistant fills the gap with generic patterns. It recommends Scan because it has no reason not to. It suggests adding a GSI on status because it doesn't know one exists. It writes SELECT * because it has no idea which columns are expensive to pull.

This isn't a bug in the model. It's a missing input. The model was never given your infrastructure.

What Happens When infrawise Is in the Loop

infrawise statically analyzes your codebase, your DynamoDB tables, and your PostgreSQL schemas, then exposes that context to your editor through MCP. Claude Code gets 15 tools that answer questions like: which tables exist, what are their partition keys and sort keys, which GSIs are already defined, which functions are already scanning, and which patterns are flagged as high severity.

The difference in output is concrete. Here's what infrawise surfaces before any code gets written:

Findings  3 total

  1.  HIGH   Full table scan detected on DynamoDB table "Orders"
             listAllOrders() scans without any filter — reads every item in the table.
             → Replace Scan with Query using a partition key or add a GSI.

  2.  MED    PostgreSQL table "users" has no index on column "email"
             Filtering on "email" causes sequential scans.
             → CREATE INDEX CONCURRENTLY idx_users_email ON users(email);

  3.  MED    DynamoDB table "Sessions" accessed by 6 distinct code paths
             Hot partition risk — multiple functions hammer the same key.
             → Review access patterns and consider partition key design.

When Claude Code has this context, its suggestions change. It knows userId-index exists and recommends Query against it instead of Scan. It knows the email column has no index and includes the exact CREATE INDEX CONCURRENTLY statement rather than a generic suggestion. It knows which functions are already hitting a partition hard before it adds another one.

The recommendations become specific to your actual tables, not generic advice copied from documentation.

infrawise does none of this with an LLM. The analysis is entirely deterministic: TypeScript AST parsing via ts-morph for the code graph, schema introspection for the database layer, rule-based analyzers for pattern detection, and graph correlation to connect code paths to tables. No model is involved in the analysis — models are only consumers of the output.

Wiring It Up — infrawise start --claude

npm install -g infrawise
cd your-project
infrawise start --claude

On first run, infrawise asks a few questions and generates infrawise.yaml. It then scans your AWS services, databases, and codebase, writes .mcp.json so your editor auto-connects, and opens Claude Code with all 15 MCP tools ready.

Every session after that:

claude

No infrawise command needed. The editor manages the MCP connection. Analysis is cached for 24 hours; when the cache goes stale, infrawise stdio — spawned automatically at session start — refreshes it. File changes are detected within the session and the code graph updates automatically without re-running AWS extraction.

For PostgreSQL, infrawise uses a read-only connection. Create the user with these four statements:

CREATE USER infrawise_ro WITH PASSWORD 'yourpassword';
GRANT CONNECT ON DATABASE yourdb TO infrawise_ro;
GRANT USAGE ON SCHEMA public TO infrawise_ro;
GRANT SELECT ON ALL TABLES IN SCHEMA public TO infrawise_ro;

If you want to check findings without opening an editor:

infrawise analyze --severity high
infrawise analyze --severity high --output report.md

The --severity flag accepts high, medium, low, or verify. The --output flag saves findings as a markdown report.

Conclusion

The problem isn't that AI coding assistants write bad code. The problem is that they write code for an infrastructure they've never seen. A Scan on an empty dev table and a Scan on a 50M-row production table look identical in source — the model has no way to tell them apart unless something provides that context.

infrawise makes that context available deterministically, before the code gets written. The assistant stops guessing about your GSIs, your partition keys, and your missing indexes because it no longer needs to guess.

Try it: GitHub · npm

Key Takeaways

  • AI coding assistants have no knowledge of your actual infrastructure — they infer from source files and fill gaps with generic patterns
  • A Scan with Limit still reads every item in DynamoDB before applying the limit — the model won't know this unless it knows your table's access patterns
  • infrawise exposes your exact schemas, GSIs, partition keys, and flagged patterns to your editor through MCP — 15 tools Claude Code can query before writing a single line
  • All analysis is deterministic: TypeScript AST parsing, schema introspection, rule-based detection — no LLM in the analysis path
  • Setup is one command: infrawise start --claude generates config, writes .mcp.json, and opens your editor with full context ready