From claude-resources
Resolves Dependabot alerts and PRs: analyzes issues, runs pnpm audit, applies updates, performs typecheck/lint/test/build checks, syncs Playwright Docker images, creates changelog PRs.
npx claudepluginhub takazudo/claude-resourcesThis skill uses the workspace's default tool permissions.
Execute a comprehensive dependency update workflow:
Guides Next.js Cache Components and Partial Prerendering (PPR): 'use cache' directives, cacheLife(), cacheTag(), revalidateTag() for caching, invalidation, static/dynamic optimization. Auto-activates on cacheComponents: true.
Guides building MCP servers enabling LLMs to interact with external services via tools. Covers best practices, TypeScript/Node (MCP SDK), Python (FastMCP).
Share bugs, ideas, or general feedback.
Execute a comprehensive dependency update workflow:
gh issue list --label "dependencies" --state open --json number,title,url,body to list all open Dependabot issuespnpm audit to check for security vulnerabilitiesIf there are updates to apply:
deps-update-MMDD from the current branchpnpm update <package-name> or pnpm add <package-name>@<version> as appropriatepnpm install to ensure lockfile is updatedSome packages require coordinated updates across multiple files. Check for these patterns:
When updating @playwright/test or playwright in package.json:
package.json: Look for @playwright/test and playwright versions.github/workflows/*.yml: Search for mcr.microsoft.com/playwright:v Docker image tagsUpdate Docker image tag to match the npm package version:
# In workflow files using Playwright Docker container
container:
image: mcr.microsoft.com/playwright:v<NEW_VERSION>-noble
Verify image exists at https://mcr.microsoft.com/v2/playwright/tags/list or check Microsoft's Playwright Docker documentation
Example: If updating @playwright/test from 1.57.0 to 1.58.0:
"@playwright/test": "^1.58.0"image: mcr.microsoft.com/playwright:v1.58.0-noblenext, eslint-config-next, etc.Run all quality checks in sequence:
pnpm typecheckpnpm lint (or pnpm lint:fix if auto-fixable)pnpm format (or pnpm format:fix if needed)pnpm test:unitpnpm build (to ensure the project builds successfully)pnpm test:e2e:critical or pnpm test:e2e:full-prod for comprehensive testingOnce all checks pass:
git add .git commit -m "chore: Update dependencies (MMDD)"git push -u origin deps-update-MMDDgh pr create with:
List of updated packages and versions
Summary of security fixes (if any)
Links to Dependabot issues being resolved using list format:
- 関連Issue
- https://github.com/<owner>/<repo>/issues/<issue-1>
- https://github.com/<owner>/<repo>/issues/<issue-2>
Note that all quality checks passed
--force flagspnpm serve and manual testing if needed)