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

推荐订阅源

WordPress大学
WordPress大学
Jina AI
Jina AI
小众软件
小众软件
GbyAI
GbyAI
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
博客园 - 【当耐特】
D
DataBreaches.Net
腾讯CDC
V
Visual Studio Blog
博客园 - 叶小钗
B
Blog
Apple Machine Learning Research
Apple Machine Learning Research
T
The Blog of Author Tim Ferriss
S
SegmentFault 最新的问题
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
V
V2EX
博客园 - 三生石上(FineUI控件)
云风的 BLOG
云风的 BLOG
The Cloudflare Blog
MongoDB | Blog
MongoDB | Blog
有赞技术团队
有赞技术团队
U
Unit 42
博客园 - 司徒正美
博客园 - 聂微东

The New Stack | DevOps, Open Source, and Cloud Native News

Agentic development hinges on verification. For cloud-native software, that is a runtime problem. AI agents need infrastructure: Why Europe’s regional cloud strategy matters Transform your AI coding agent into a deterministic Java Spring expert WeAreDevelopers is coming to the US to give unsung developers a bigger voice Cleaner AI training data, fewer bugs: Sonar’s SonarSweep explained Observability overload is drowning engineers Google’s DiffusionGemma is 4x faster than its other Gemma models Fable 5: Guardrails and burn rate are annoying users, who say it’s still better than Opus 4.8 The Anthropic leader who built Claude Code says he ditched prompting — now he just writes loops. AWS can now mathematically prove your VMs are isolated Microsoft pulled 73 GitHub repos after malware attack — but still won’t say who’s compromised Databricks wants to kill the “email me a file” problem for AI agent skills Ramp bets forward deployed engineers can do what off-the-shelf finance AI can’t Git real: AI agents aren’t just for solo developers anymore Anthropic launches Claude Mythos/Fable 5, but you better try it soon This AI agent startup ditched Anthropic for DeepSeek — and says it’s saving millions When your data model is the bottleneck: lessons from Medium’s feature store How long before we stop reading the code? The tokenmaxxing party is over, and Revenium is mopping up How AI is solving the memory crunch it created Microsoft’s pitch to enterprises: Ditch Azure Repos for GitHub, despite its rocky reliability record Claude Code’s biggest upgrade yet ran 5 agents at once — here’s what happened Why Anthropic just doubled Claude Cowork limits at no charge For years, Apache Cassandra handed this work to your team — 6.0 takes it back “A dangerous combination”: The 2 factors that can “corrupt” AI agent workflows With Foundry, Microsoft bets the enterprise AI battle is about reliability, not capability Microsoft unlocks Visual Studio for developers left behind by its own AI AI teams now deploy 1,000 times a month. Your pipeline wasn’t built for that. Microsoft just made the agent runtime free — and kept everything around it “Whoever builds the most joyous product wins”: The agent war begins
Agent Toolkit for AWS includes 20+ agent skills, but your...
Esin Saribudak · 2026-06-25 · via The New Stack | DevOps, Open Source, and Cloud Native News

If you’re like me, sometimes you get so excited to try something new that you don’t read the docs all the way through before you start using it. Last week, the Agent Toolkit for AWS had just been released, I had the README open, and two minutes later I was asking my agent to design a serverless backend in my Kiro IDE.

But the agent didn’t touch any of the tools I had just configured. It answered from training data and gave me a reasonable API Gateway + Lambda + DynamoDB architecture, but never reached for the MCP documentation search or the aws-core skills I had installed. I had to prompt it to use the MCP server and skills before it gave them a go.

I had skipped one important file in my rush to try out this new toolkit, and it turned out to be the file that made my agent predictably reach for these tools.

Diagram showing the three layers within the Agent Toolkit for AWS.

The Agent Toolkit for AWS was released on May 6. It works with Claude Code, Codex, Kiro, and any agent that supports MCP, and it has three layers:

  1. The MCP Server gives your agent access to 300+ AWS APIs through a single endpoint, plus sandboxed Python execution and real-time doc search (no AWS credentials needed to search docs).
  2. Skills are packaged domain expertise, including architecture decision tables, service comparison matrices, deployment workflows, and troubleshooting guides (20+ available today).
  3. A rules file tells the agent to use layers 1 and 2 before answering from memory.

I had layers 1 and 2 set up but skipped layer 3, so the agent had all the tools but none of the instructions for using them.

Setup takes two minutes — follow the README’s quick start for your agent (Kiro, Claude Code, Codex, or other MCP-compatible agents).

The file I skipped

There’s a rules file in the toolkit repo’s rules/ directory that I missed when setting it up. The README’s quick start section doesn’t mention it, and I was already typing prompts by the time I could have noticed. But there’s a difference between “can discover skills” and “will proactively load them before answering.” The rules file bridges that gap. It’s 17 lines and tells the agent to:

  • Prefer the AWS MCP Server for all AWS interactions
  • Before starting a task, check whether a relevant AWS skill is available
  • Load the skill with retrieve_skill and prefer its guidance over general knowledge
  • When uncertain about API parameters, permissions, or limits, verify against documentation rather than guessing

For more information on where to put the rules file for different agents, check out the docs here.

“There’s a difference between ‘can discover skills’ and ‘will proactively load them before answering.’ The rules file bridges that gap.”

Before I added this file, the agent had passive access to skills, but after I dropped it in, skill loading became the agent’s first move on any AWS question, and it started pulling architecture decision tables before writing code.

Diagram showing agent behavior with and without the rules file

For a simple CRUD app like the one I was building, the AWS MCP skills refined the implementation rather than redirected it. The LLMs have gotten so good that their general knowledge already gets you to the right architecture much of the time (in my case, API Gateway + Lambda + DynamoDB + Cognito). 

Where the skills added value was in specificity and confidence. Here’s what I got before and after:

The skills would be even more useful than general LLM knowledge for more complex architectures involving event processing or multi-pattern designs, where the pattern-selection flowcharts and service-comparison tables would change the agent’s choices rather than validate them.

What this taught me about coding agents and skills

Giving a coding agent access to tools is not the same as telling it when to use them. Skills are designed to be loaded on demand, which means something has to tell the agent when to demand them. 

“Giving a coding agent access to tools is not the same as telling it when to use them.”

Without a rule, the agent treats skills like reference books on a shelf: available if it decides to look for them, but not part of its default workflow. The rules file is what changes “available on request” into “check this before you start.”

Guardrails

If you’re wondering, “Is it safe to let an agent call AWS APIs?” that’s a great question to ask. The good news is that you can scope down what the agent is allowed to do separately from your own permissions, so even if your IAM role can create and delete resources, you can restrict the agent to read-only. 

Every request the agent makes through the MCP server gets logged, so you can trace which agent action caused it. And the skills have been tested as full end-to-end workflows before shipping, so when your agent follows a skill’s steps, those steps are verified to produce the expected result.

YOUTUBE.COM/THENEWSTACK

Tech moves fast, don't miss an episode. Subscribe to our YouTube channel to stream all our podcasts, interviews, demos, and more.

Created with Sketch.