ソース情報
- リポジトリ
- stbenjam/skillsaw
- ソースの最終更新活動
- 2026年8月6日 11:16
- 検出された SKILL.md の言語
- 英語
- スター
- 63
- フォーク
- 15
インストール方法
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
ソースファイルを確認
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
メニュー
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/stbenjam/skillsaw --skill deployコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
Analyze upstream specs (agentskills.io, Claude Code plugin/marketplace format, OpenAI Codex plugins/marketplace, OpenClaw, MCP and MCP Registry, CodeRabbit, APM) for changes, identify gaps in skillsaw's rule coverage, and create or update PRs to close those gaps. Use when performing periodic maintenance on the skillsaw linter.
Use when reviewing database migration plans for rollback coverage and schema compatibility before approval.
Review schema migration plans. Use when preparing database schema changes.
SOC 職業分類に基づく
SKILL.md を表示中
| name | deploy |
| description | Deploy applications to Kubernetes clusters. Use when releasing an application. |
| compatibility | Requires helm, kubectl, and cluster credentials |
| metadata | {"author":"platform-team","version":"2.0"} |
Handles deployment of containerized applications to Kubernetes using Helm charts and environment-specific value overrides.
Use when deploying or updating services in staging or production environments.
Run helm lint charts/ to verify the chart is syntactically valid.
Check that all required values are defined:
image.repository and image.tagreplicaCountresources.limitsBuild the container image and push to the registry:
docker build -t $REGISTRY/$APP:$TAG .
docker push $REGISTRY/$APP:$TAG
Run helm upgrade --install with the target namespace:
helm upgrade --install $APP charts/ \
-f charts/values.yaml \
-f charts/values-$ENV.yaml \
-n $NAMESPACE --wait
Check rollout status and health endpoints:
kubectl rollout status deployment/$APP -n $NAMESPACE
curl -sf https://$APP.$DOMAIN/health