snowtower-maintainer
SnowTowerプロジェクトのドキュメントやREADME、Claudeの設定を最新に保ち、プロジェクトの状態とドキュメントの整合性を確認したり、エージェント定義を見直したりするSkill。
📜 元の英語説明(参考)
Maintains SnowTower project documentation, README, and Claude configuration. Use when updating documentation, auditing .claude folder contents, syncing README with actual project state, or reviewing agent/pattern definitions. Triggers on mentions of documentation, README, maintenance, or .claude folder updates.
🇯🇵 日本人クリエイター向け解説
SnowTowerプロジェクトのドキュメントやREADME、Claudeの設定を最新に保ち、プロジェクトの状態とドキュメントの整合性を確認したり、エージェント定義を見直したりするSkill。
※ jpskill.com 編集部が日本のビジネス現場向けに補足した解説です。Skill本体の挙動とは独立した参考情報です。
下記のコマンドをコピーしてターミナル(Mac/Linux)または PowerShell(Windows)に貼り付けてください。 ダウンロード → 解凍 → 配置まで全自動。
mkdir -p ~/.claude/skills && cd ~/.claude/skills && curl -L -o snowtower-maintainer.zip https://jpskill.com/download/18307.zip && unzip -o snowtower-maintainer.zip && rm snowtower-maintainer.zip
$d = "$env:USERPROFILE\.claude\skills"; ni -Force -ItemType Directory $d | Out-Null; iwr https://jpskill.com/download/18307.zip -OutFile "$d\snowtower-maintainer.zip"; Expand-Archive "$d\snowtower-maintainer.zip" -DestinationPath $d -Force; ri "$d\snowtower-maintainer.zip"
完了後、Claude Code を再起動 → 普通に「動画プロンプト作って」のように話しかけるだけで自動発動します。
💾 手動でダウンロードしたい(コマンドが難しい人向け)
- 1. 下の青いボタンを押して
snowtower-maintainer.zipをダウンロード - 2. ZIPファイルをダブルクリックで解凍 →
snowtower-maintainerフォルダができる - 3. そのフォルダを
C:\Users\あなたの名前\.claude\skills\(Win)または~/.claude/skills/(Mac)へ移動 - 4. Claude Code を再起動
⚠️ ダウンロード・利用は自己責任でお願いします。当サイトは内容・動作・安全性について責任を負いません。
🎯 このSkillでできること
下記の説明文を読むと、このSkillがあなたに何をしてくれるかが分かります。Claudeにこの分野の依頼をすると、自動で発動します。
📦 インストール方法 (3ステップ)
- 1. 上の「ダウンロード」ボタンを押して .skill ファイルを取得
- 2. ファイル名の拡張子を .skill から .zip に変えて展開(macは自動展開可)
- 3. 展開してできたフォルダを、ホームフォルダの
.claude/skills/に置く- · macOS / Linux:
~/.claude/skills/ - · Windows:
%USERPROFILE%\.claude\skills\
- · macOS / Linux:
Claude Code を再起動すれば完了。「このSkillを使って…」と話しかけなくても、関連する依頼で自動的に呼び出されます。
詳しい使い方ガイドを見る →- 最終更新
- 2026-05-18
- 取得日時
- 2026-05-18
- 同梱ファイル
- 1
📖 Skill本文(日本語訳)
※ 原文(英語/中国語)を Gemini で日本語化したものです。Claude 自身は原文を読みます。誤訳がある場合は原文をご確認ください。
SnowTowerプロジェクトのメンテナ
SnowTowerプロジェクトのドキュメント、README、およびClaude Code構成を維持するための専門スキルです。
主な責任
1. READMEのメンテナンス
README.mdを正確かつ最新の状態に保ちます。
- バージョンバッジ: CI/CDバッジが正しいワークフローを指していることを確認します。
- コマンドリファレンス: すべての
uv runコマンドが有効であることを検証します。 - アーキテクチャ図: mermaid図が実際の構造と同期している状態を保ちます。
- 統計: ユーザー数、データベース数、ウェアハウス数を更新します。
- リンク: すべての内部リンクが正しく解決されることを検証します。
監査チェックリスト:
# READMEに記載されているコマンドが実際に存在するか検証します
uv run --help | grep -E "snowddl-plan|deploy-safe|manage-users"
# ワークフローバッジのURLが実際のワークフローファイルと一致するか確認します
ls .github/workflows/
# ドキュメントのリンクを検証します
find docs/ -name "*.md" | head -20
2. Claudeフォルダのメンテナンス
.claude/の構成を維持します。
.claude/
├── skills/ # Claude Codeスキル (これのような)
├── agents/ # タスク委譲のためのエージェント定義
├── patterns/ # 再利用可能なパターンとテンプレート
└── settings.local.json
エージェント監査タスク:
- 重複または冗長なエージェントを削除します。
- 目的が重複するエージェントを統合します。
- 現在の機能に合わせてエージェントの説明を更新します。
- エージェントが正しいファイルパスを参照していることを確認します。
パターン監査タスク:
- パターンが現在のプロジェクトの規約と一致していることを検証します。
- パターンのコード例を更新します。
- 古くなったパターンを削除します。
3. ドキュメントの同期
ドキュメントが実際のプロジェクトの状態を反映していることを確認します。
| ドキュメントファイル | 一致すべきもの |
|---|---|
docs/guide/MANAGEMENT_COMMANDS.md |
pyproject.tomlのスクリプト |
docs/guide/QUICKSTART.md |
現在のセットアッププロセス |
docs/guide/SCHEMA_GRANTS.md |
現在の権限処理 |
.claude/agents/内のエージェントファイル |
利用可能な機能 |
メンテナンス手順
簡単なヘルスチェック
# 1. プロジェクト構造を検証します
ls -la snowddl/ src/ scripts/ docs/
# 2. 利用可能なコマンドを確認します
uv run --help
# 3. テストがパスすることを確認します
uv run pytest --co -q | tail -5
# 4. pre-commitの状態を確認します
uv run pre-commit run --all-files
README更新ワークフロー
-
現在の状態を収集します:
# 設定されているユーザー数をカウントします grep -c "^ [A-Z]" snowddl/user.yaml # データベース数をカウントします ls -d snowddl/*/ | grep -v __pycache__ | wc -l # ウェアハウスをリストします grep "^ [A-Z]" snowddl/warehouse.yaml -
コマンドを検証します:
# pyproject.tomlからコマンドを抽出します grep -A1 "\[project.scripts\]" pyproject.toml -
READMEの統計セクションを現在の数で更新します。
-
すべてのリンクが既存のファイルに解決されることを検証します。
エージェントの統合
.claude/agents/を監査する場合:
-
すべてのエージェントをリストします:
ls .claude/agents/*.md -
重複を特定します: 類似の目的を持つエージェントを探します。
-
統合基準:
- 同じドメインを扱うエージェントをマージします。
- 明確で価値のある役割を持つエージェントは維持します。
- 組み込みの機能を複製するエージェントを削除します。
-
参照を更新します: 統合後、削除されたエージェントを参照しているドキュメントを更新します。
自己メンテナンス
このスキルは、以下の方法で自身をメンテナンスする必要があります。
- このSKILL.mdをプロジェクトの変更に合わせて最新の状態に保ちます。
- プロジェクトの進化に合わせて新しいメンテナンス手順を追加します。
- プロジェクト構造が変更されたときにファイルパスを更新します。
- メンテナンス中に発見された新しいパターンを文書化します。
一般的なメンテナンス作業
タスク: READMEの統計を更新する
### ステータスとメトリクス
- **アクティブユーザー**: [COUNT] MFAが設定されたユーザー
- **データベース**: [COUNT] 管理されている本番データベース
- **ウェアハウス**: [COUNT] 自動中断機能付きウェアハウス
これらを更新するには、以下を実行します。
echo "Users: $(grep -c '^ [A-Z]' snowddl/user.yaml)"
echo "Databases: $(ls -d snowddl/*/ 2>/dev/null | grep -v __pycache__ | wc -l)"
echo "Warehouses: $(grep -c '^ [A-Z]' snowddl/warehouse.yaml)"
タスク: ワークフローバッジを検証する
READMEのバッジが実際のワークフローと一致することを確認します。
# ワークフローをリストします
ls .github/workflows/
# READMEのバッジURLがこれらのファイルを参照していることを検証します
grep "actions/workflows" README.md
タスク: エージェント定義を監査する
# エージェントとその目的をリストします
for f in .claude/agents/*.md; do
echo "=== $f ==="
head -5 "$f"
echo
done
タスク: 古くなったコンテンツをクリーンアップする
以下への参照を削除します。
- 削除されたファイルまたはディレクトリ
- 非推奨のコマンド
- 古いワークフロー名
- 削除された機能
プロジェクトとの統合
このスキルは以下と連携します。
- CI/CDワークフロー:
.github/workflows/ - SnowDDL構成:
snowddl/*.yaml - Pythonツール:
src/,scripts/ - ドキュメント:
docs/ - Claude構成:
.claude/
起動するタイミング
このスキルは、以下の場合に起動します。
- ユーザーが「READMEを更新する」ように依頼した場合
- ユーザーが「ドキュメントのメンテナンス」について言及した場合
- ユーザーが「.claudeフォルダを監査する」ことを希望した場合
- ユーザーが「プロジェクトのドキュメント」について質問した場合
- 大幅な機能追加後
- ドキュメントが最新であることを確認するためのリリース前
- 新しいコントリビューターのオンボーディング時
📜 原文 SKILL.md(Claudeが読む英語/中国語)を展開
SnowTower Project Maintainer
A specialized skill for maintaining the SnowTower project's documentation, README, and Claude Code configuration.
Core Responsibilities
1. README Maintenance
Keep README.md accurate and current:
- Version badges: Ensure CI/CD badges point to correct workflows
- Command references: Verify all
uv runcommands are valid - Architecture diagrams: Keep mermaid diagrams in sync with actual structure
- Statistics: Update user counts, database counts, warehouse counts
- Links: Verify all internal links resolve correctly
Audit checklist:
# Verify commands mentioned in README actually exist
uv run --help | grep -E "snowddl-plan|deploy-safe|manage-users"
# Check workflow badge URLs match actual workflow files
ls .github/workflows/
# Verify documentation links
find docs/ -name "*.md" | head -20
2. Claude Folder Maintenance
Maintain .claude/ organization:
.claude/
├── skills/ # Claude Code skills (like this one)
├── agents/ # Agent definitions for task delegation
├── patterns/ # Reusable patterns and templates
└── settings.local.json
Agent audit tasks:
- Remove duplicate or redundant agents
- Consolidate agents with overlapping purposes
- Update agent descriptions to match current capabilities
- Ensure agents reference correct file paths
Pattern audit tasks:
- Verify patterns match current project conventions
- Update code examples in patterns
- Remove outdated patterns
3. Documentation Sync
Ensure docs reflect actual project state:
| Doc File | Should Match |
|---|---|
docs/guide/MANAGEMENT_COMMANDS.md |
pyproject.toml scripts |
docs/guide/QUICKSTART.md |
Current setup process |
docs/guide/SCHEMA_GRANTS.md |
Current grant handling |
Agent files in .claude/agents/ |
Available functionality |
Maintenance Procedures
Quick Health Check
# 1. Verify project structure
ls -la snowddl/ src/ scripts/ docs/
# 2. Check available commands
uv run --help
# 3. Verify tests pass
uv run pytest --co -q | tail -5
# 4. Check pre-commit status
uv run pre-commit run --all-files
README Update Workflow
-
Gather current state:
# Count configured users grep -c "^ [A-Z]" snowddl/user.yaml # Count databases ls -d snowddl/*/ | grep -v __pycache__ | wc -l # List warehouses grep "^ [A-Z]" snowddl/warehouse.yaml -
Verify commands:
# Extract commands from pyproject.toml grep -A1 "\[project.scripts\]" pyproject.toml -
Update statistics section in README with current counts
-
Verify all links resolve to existing files
Agent Consolidation
When auditing .claude/agents/:
-
List all agents:
ls .claude/agents/*.md -
Identify overlaps: Look for agents with similar purposes
-
Consolidation criteria:
- Merge agents that serve the same domain
- Keep agents with distinct, valuable roles
- Remove agents that duplicate built-in capabilities
-
Update references: After consolidation, update any docs referencing removed agents
Self-Maintenance
This skill should maintain itself by:
- Keeping this SKILL.md up to date with project changes
- Adding new maintenance procedures as project evolves
- Updating file paths when project structure changes
- Documenting new patterns discovered during maintenance
Common Maintenance Tasks
Task: Update README Statistics
### Status & Metrics
- **Active Users**: [COUNT] configured users with MFA
- **Databases**: [COUNT] production databases managed
- **Warehouses**: [COUNT] warehouses with auto-suspend
Update these by running:
echo "Users: $(grep -c '^ [A-Z]' snowddl/user.yaml)"
echo "Databases: $(ls -d snowddl/*/ 2>/dev/null | grep -v __pycache__ | wc -l)"
echo "Warehouses: $(grep -c '^ [A-Z]' snowddl/warehouse.yaml)"
Task: Verify Workflow Badges
Check that README badges match actual workflows:
# List workflows
ls .github/workflows/
# Verify badge URLs in README reference these files
grep "actions/workflows" README.md
Task: Audit Agent Definitions
# List agents and their purposes
for f in .claude/agents/*.md; do
echo "=== $f ==="
head -5 "$f"
echo
done
Task: Clean Up Obsolete Content
Remove references to:
- Deleted files or directories
- Deprecated commands
- Old workflow names
- Removed features
Integration with Project
This skill works with:
- CI/CD workflows:
.github/workflows/ - SnowDDL configs:
snowddl/*.yaml - Python tooling:
src/,scripts/ - Documentation:
docs/ - Claude config:
.claude/
When to Trigger
Invoke this skill when:
- User asks to "update the README"
- User mentions "documentation maintenance"
- User wants to "audit the .claude folder"
- User asks about "project documentation"
- After significant feature additions
- Before releases to ensure docs are current
- When onboarding new contributors