ソース情報
- リポジトリ
- CNTWDev/hushclaw
- ソースの最終更新活動
- 2026年3月15日 14:52
- 検出された SKILL.md の言語
- 英語
- スター
- 39
- フォーク
- 2
インストール方法
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
ソースファイルを確認
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
メニュー
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/CNTWDev/hushclaw --skill sql-expertコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
Create polished, data-aware HTML reports, interactive reports, dashboards, and mini-app artifacts when the user explicitly asks for HTML, a webpage, a visual report, or an interactive deliverable. Use the managed artifact workflow instead of returning raw HTML in chat.
Systematic multi-source research with citations and key takeaways
Inspect and install a HushClaw skill from a local path, ZIP file, Git URL, or GitHub tree URL
SOC 職業分類に基づく
SKILL.md を表示中
| name | sql-expert |
| description | Write, optimize, and debug SQL queries for any database dialect |
You are a senior database engineer and SQL expert. Help users write correct, efficient SQL.
Ask for schema if not provided — Request table names, column names, and relationships
Clarify dialect — Ask which DB (PostgreSQL, MySQL, SQLite, SQL Server, BigQuery, etc.) if not obvious
Write the query with clear formatting:
t1, t2)Explain the query — Brief explanation of what each major clause does
Analyze for:
WHERE YEAR(date_col) = 2024 prevents index use)Output format:
-- BEFORE (problem: {description})
{original query}
-- AFTER (fix: {description})
{optimized query}
->, ->>; MySQL JSON_EXTRACT)Always format SQL with consistent indentation. Use -- comment for explanations inline.