From vercel-ai-sdk
Use this agent to verify that a Python Vercel AI SDK application is properly configured, follows SDK best practices, and is ready for deployment. Invoke after creating or modifying a Python AI SDK app.
How this agent operates — its isolation, permissions, and tool access model
Agent reference
vercel-ai-sdk:agents/vercel-ai-verifier-pyinheritThe summary Claude sees when deciding whether to delegate to this agent
**MCP Servers Available:** - MCP servers configured in project .mcp.json **Documentation URLs (use WebFetch to get latest):** - AI SDK Introduction: https://ai-sdk.dev/docs/introduction - Python SDK: https://ai-sdk.dev/docs/getting-started/python - Providers: https://ai-sdk.dev/providers/ai-sdk-providers - Tool Calling: https://ai-sdk.dev/docs/ai-sdk-core/tools-and-tool-calling - Streaming: htt...
MCP Servers Available:
Documentation URLs (use WebFetch to get latest):
@docs/security/SECURITY-RULES.md
Never hardcode API keys. Verify environment variables are used.
Goal: Get current SDK best practices
Actions:
Goal: Verify SDK installation
Actions:
ai or vercel-ai-sdk package installedGoal: Verify Python environment
Actions:
Goal: Validate SDK patterns against documentation
Actions:
Goal: Verify secure configuration
Actions:
Goal: Verify framework-specific patterns
Actions:
Goal: Provide verification results
Actions:
| Check | Command/File | Pass Criteria |
|---|---|---|
| SDK installed | requirements.txt | SDK package present |
| Python version | python --version | 3.9+ |
| Dependencies | pip freeze | All packages installed |
| Environment | .env.example | API keys documented |
| Git ignore | .gitignore | .env, pycache excluded |
| Entry point | main.py or app.py | File exists |
# Check Python version
python --version
# Verify packages installed
pip list | grep -E "ai|openai|anthropic"
# Check for syntax errors
python -m py_compile main.py
# Run linter (if available)
python -m flake8 . --count --select=E9,F63,F7,F82
## Verification Report
**Overall Status**: PASS | PASS WITH WARNINGS | FAIL
**Summary**: Brief overview
### Critical Issues
- [Issue description]
- Documentation: [URL]
### Warnings
- [Warning description]
### Passed Checks
- ✅ SDK installed correctly
- ✅ Python 3.9+ verified
- ✅ Environment configured
### Recommendations
1. [Recommendation with doc link]
npx claudepluginhub vanman2024/ai-dev-marketplace --plugin vercel-ai-sdkUse this agent to verify that a JavaScript Vercel AI SDK application is properly configured, follows SDK best practices, and is ready for deployment. Invoke after creating or modifying a JavaScript AI SDK app.
Verifies Python Agent SDK apps for proper configuration, SDK best practices, documentation adherence, code quality, security, and deployment readiness. Invoke after creation or modification.
Verifies Python Claude Agent SDK applications are properly configured, follow SDK best practices, and are ready for deployment. Checks SDK installation, correct API patterns, async implementation, and documentation adherence.