From 87a3b338c6159e63fce814f23df41dd9e3e5e100 Mon Sep 17 00:00:00 2001 From: Ashwin Bhat Date: Thu, 9 Oct 2025 09:56:12 -0700 Subject: [PATCH] refactor: Update agent-sdk-dev plugin structure and configuration (#9230) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Move plugin.json to .claude-plugin directory to match pr-review-toolkit pattern - Add author information: Ashwin Bhat (ashwin@anthropic.com) - Update model field from sonnet-4.5 to sonnet in all agent/command definitions 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-authored-by: Claude --- plugins/agent-sdk-dev/.claude-plugin/plugin.json | 9 +++++++++ plugins/agent-sdk-dev/agents/agent-sdk-verifier-py.md | 2 +- plugins/agent-sdk-dev/agents/agent-sdk-verifier-ts.md | 2 +- plugins/agent-sdk-dev/commands/new-sdk-app.md | 2 +- plugins/agent-sdk-dev/plugin.json | 5 ----- 5 files changed, 12 insertions(+), 8 deletions(-) create mode 100644 plugins/agent-sdk-dev/.claude-plugin/plugin.json delete mode 100644 plugins/agent-sdk-dev/plugin.json diff --git a/plugins/agent-sdk-dev/.claude-plugin/plugin.json b/plugins/agent-sdk-dev/.claude-plugin/plugin.json new file mode 100644 index 0000000..713683c --- /dev/null +++ b/plugins/agent-sdk-dev/.claude-plugin/plugin.json @@ -0,0 +1,9 @@ +{ + "name": "agent-sdk-dev", + "description": "Claude Agent SDK Development Plugin", + "version": "1.0.0", + "author": { + "name": "Ashwin Bhat", + "email": "ashwin@anthropic.com" + } +} diff --git a/plugins/agent-sdk-dev/agents/agent-sdk-verifier-py.md b/plugins/agent-sdk-dev/agents/agent-sdk-verifier-py.md index 823f558..d4b70ea 100644 --- a/plugins/agent-sdk-dev/agents/agent-sdk-verifier-py.md +++ b/plugins/agent-sdk-dev/agents/agent-sdk-verifier-py.md @@ -1,7 +1,7 @@ --- name: agent-sdk-verifier-py description: Use this agent to verify that a Python Agent SDK application is properly configured, follows SDK best practices and documentation recommendations, and is ready for deployment or testing. This agent should be invoked after a Python Agent SDK app has been created or modified. -model: sonnet-4.5 +model: sonnet --- You are a Python Agent SDK application verifier. Your role is to thoroughly inspect Python Agent SDK applications for correct SDK usage, adherence to official documentation recommendations, and readiness for deployment. diff --git a/plugins/agent-sdk-dev/agents/agent-sdk-verifier-ts.md b/plugins/agent-sdk-dev/agents/agent-sdk-verifier-ts.md index 48aef13..194b512 100644 --- a/plugins/agent-sdk-dev/agents/agent-sdk-verifier-ts.md +++ b/plugins/agent-sdk-dev/agents/agent-sdk-verifier-ts.md @@ -1,7 +1,7 @@ --- name: agent-sdk-verifier-ts description: Use this agent to verify that a TypeScript Agent SDK application is properly configured, follows SDK best practices and documentation recommendations, and is ready for deployment or testing. This agent should be invoked after a TypeScript Agent SDK app has been created or modified. -model: sonnet-4.5 +model: sonnet --- You are a TypeScript Agent SDK application verifier. Your role is to thoroughly inspect TypeScript Agent SDK applications for correct SDK usage, adherence to official documentation recommendations, and readiness for deployment. diff --git a/plugins/agent-sdk-dev/commands/new-sdk-app.md b/plugins/agent-sdk-dev/commands/new-sdk-app.md index 6188680..ded8397 100644 --- a/plugins/agent-sdk-dev/commands/new-sdk-app.md +++ b/plugins/agent-sdk-dev/commands/new-sdk-app.md @@ -1,7 +1,7 @@ --- description: Create and setup a new Claude Agent SDK application argument-hint: [project-name] -model: sonnet-4.5 +model: sonnet --- You are tasked with helping the user create a new Claude Agent SDK application. Follow these steps carefully: diff --git a/plugins/agent-sdk-dev/plugin.json b/plugins/agent-sdk-dev/plugin.json deleted file mode 100644 index e1b4667..0000000 --- a/plugins/agent-sdk-dev/plugin.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "name": "agent-sdk-dev", - "description": "Claude Agent SDK Development Plugin", - "version": "1.0.0" -}