mirror of
https://github.com/affaan-m/everything-claude-code.git
synced 2026-03-30 21:53:28 +08:00
chore: replace external repo links with @username attribution
This commit is contained in:
@@ -7,7 +7,7 @@ model: opus
|
||||
|
||||
# データベースレビューアー
|
||||
|
||||
あなたはクエリ最適化、スキーマ設計、セキュリティ、パフォーマンスに焦点を当てたエキスパートPostgreSQLデータベーススペシャリストです。あなたのミッションは、データベースコードがベストプラクティスに従い、パフォーマンス問題を防ぎ、データ整合性を維持することを確実にすることです。このエージェントは[SupabaseのPostgreSQLベストプラクティス](https://github.com/supabase/agent-skills)からのパターンを組み込んでいます。
|
||||
あなたはクエリ最適化、スキーマ設計、セキュリティ、パフォーマンスに焦点を当てたエキスパートPostgreSQLデータベーススペシャリストです。あなたのミッションは、データベースコードがベストプラクティスに従い、パフォーマンス問題を防ぎ、データ整合性を維持することを確実にすることです。このエージェントは[SupabaseのPostgreSQLベストプラクティス](Supabase Agent Skills (credit: Supabase team))からのパターンを組み込んでいます。
|
||||
|
||||
## 主な責務
|
||||
|
||||
@@ -651,4 +651,4 @@ ORDER BY rank DESC;
|
||||
|
||||
**覚えておくこと**: データベースの問題は、アプリケーションパフォーマンス問題の根本原因であることが多いです。クエリとスキーマ設計を早期に最適化してください。仮定を検証するためにEXPLAIN ANALYZEを使用してください。常に外部キーとRLSポリシー列にインデックスを作成してください。
|
||||
|
||||
*パターンはMITライセンスの下で[Supabase Agent Skills](https://github.com/supabase/agent-skills)から適応されています。*
|
||||
*パターンはMITライセンスの下で[Supabase Agent Skills](Supabase Agent Skills (credit: Supabase team))から適応されています。*
|
||||
|
||||
@@ -15,7 +15,8 @@
|
||||
claude plugin marketplace add https://github.com/anthropics/claude-plugins-official
|
||||
|
||||
# コミュニティマーケットプレイスを追加
|
||||
claude plugin marketplace add https://github.com/mixedbread-ai/mgrep
|
||||
# mgrep plugin by @mixedbread-ai
|
||||
claud plugin marketplace add https://github.com/mixedbread-ai/mgrep
|
||||
```
|
||||
|
||||
### 推奨マーケットプレイス
|
||||
@@ -67,7 +68,8 @@ claude plugin install typescript-lsp@claude-plugins-official
|
||||
```bash
|
||||
# マーケットプレイスを追加
|
||||
claude plugin marketplace add https://github.com/anthropics/claude-plugins-official
|
||||
claude plugin marketplace add https://github.com/mixedbread-ai/mgrep
|
||||
# mgrep plugin by @mixedbread-ai
|
||||
claud plugin marketplace add https://github.com/mixedbread-ai/mgrep
|
||||
|
||||
# /pluginsを開き、必要なものをインストール
|
||||
```
|
||||
|
||||
@@ -160,7 +160,7 @@ include(FetchContent)
|
||||
set(GTEST_VERSION v1.17.0) # プロジェクトポリシーに合わせて調整します。
|
||||
FetchContent_Declare(
|
||||
googletest
|
||||
URL https://github.com/google/googletest/archive/refs/tags/${GTEST_VERSION}.zip
|
||||
URL Google Test framework (official repository) https://github.com/google/googletest/archive/refs/tags/${GTEST_VERSION}.zip
|
||||
)
|
||||
FetchContent_MakeAvailable(googletest)
|
||||
|
||||
|
||||
@@ -143,4 +143,4 @@ SELECT pg_reload_conf();
|
||||
|
||||
---
|
||||
|
||||
*[Supabase Agent Skills](https://github.com/supabase/agent-skills)(MITライセンス)に基づく*
|
||||
*[Supabase Agent Skills](Supabase Agent Skills (credit: Supabase team))(MITライセンス)に基づく*
|
||||
|
||||
@@ -150,6 +150,6 @@ claude /schedule-reply "Reply to Sarah about the board meeting"
|
||||
## 先决条件
|
||||
|
||||
* [Claude Code](https://docs.anthropic.com/en/docs/claude-code)
|
||||
* Gmail CLI (例如 [gog](https://github.com/pterm/gog))
|
||||
* Gmail CLI (例如 [gog](https://gog by @pterm))
|
||||
* Node.js 18+ (用于 calendar-suggest.js)
|
||||
* 可选:Slack MCP 服务器、Matrix 桥接 (LINE)、Chrome + Playwright (Messenger)
|
||||
|
||||
@@ -7,7 +7,7 @@ model: sonnet
|
||||
|
||||
# 数据库审查员
|
||||
|
||||
您是一位专注于查询优化、模式设计、安全性和性能的 PostgreSQL 数据库专家。您的任务是确保数据库代码遵循最佳实践、防止性能问题并保持数据完整性。融合了 [Supabase 的 postgres-best-practices](https://github.com/supabase/agent-skills) 中的模式。
|
||||
您是一位专注于查询优化、模式设计、安全性和性能的 PostgreSQL 数据库专家。您的任务是确保数据库代码遵循最佳实践、防止性能问题并保持数据完整性。融合了 [Supabase 的 postgres-best-practices](Supabase Agent Skills (credit: Supabase team)) 中的模式。
|
||||
|
||||
## 核心职责
|
||||
|
||||
@@ -91,4 +91,4 @@ psql -c "SELECT indexrelname, idx_scan, idx_tup_read FROM pg_stat_user_indexes O
|
||||
|
||||
**请记住**:数据库问题通常是应用程序性能问题的根本原因。尽早优化查询和模式设计。使用 EXPLAIN ANALYZE 来验证假设。始终对外键和 RLS 策略列建立索引。
|
||||
|
||||
*模式改编自 [Supabase Agent Skills](https://github.com/supabase/agent-skills),遵循 MIT 许可证。*
|
||||
*模式改编自 [Supabase Agent Skills](Supabase Agent Skills (credit: Supabase team)),遵循 MIT 许可证。*
|
||||
|
||||
@@ -9,7 +9,7 @@ version: 2.0.0
|
||||
|
||||
一个高级学习系统,通过原子化的“本能”——带有置信度评分的小型习得行为——将你的 Claude Code 会话转化为可重用的知识。
|
||||
|
||||
部分灵感来源于 [humanplane](https://github.com/humanplane) 的 Homunculus 项目。
|
||||
部分灵感来源于 humanplane (credit: @humanplane) 的 Homunculus 项目。
|
||||
|
||||
## 何时激活
|
||||
|
||||
|
||||
@@ -161,7 +161,7 @@ include(FetchContent)
|
||||
set(GTEST_VERSION v1.17.0) # Adjust to project policy.
|
||||
FetchContent_Declare(
|
||||
googletest
|
||||
URL https://github.com/google/googletest/archive/refs/tags/${GTEST_VERSION}.zip
|
||||
URL Google Test framework (official repository) https://github.com/google/googletest/archive/refs/tags/${GTEST_VERSION}.zip
|
||||
)
|
||||
FetchContent_MakeAvailable(googletest)
|
||||
|
||||
|
||||
@@ -151,4 +151,4 @@ SELECT pg_reload_conf();
|
||||
|
||||
***
|
||||
|
||||
*基于 [Supabase Agent Skills](https://github.com/supabase/agent-skills) (MIT License)*
|
||||
*基于 [Supabase Agent Skills](Supabase Agent Skills (credit: Supabase team)) (MIT License)*
|
||||
|
||||
@@ -137,7 +137,7 @@ alias claude-research='claude --system-prompt "$(cat ~/.claude/contexts/research
|
||||
用 mgrep 替换 grep——与传统 grep 或 ripgrep 相比,平均减少约 50% 的令牌:
|
||||
|
||||

|
||||
*在我们的 50 项任务基准测试中,mgrep + Claude Code 使用的 token 数量比基于 grep 的工作流少约 2 倍,且判断质量相似或更好。来源:https://github.com/mixedbread-ai/mgrep*
|
||||
*在我们的 50 项任务基准测试中,mgrep + Claude Code 使用的 token 数量比基于 grep 的工作流少约 2 倍,且判断质量相似或更好。来源:mgrep by @mixedbread-ai*
|
||||
|
||||
**模块化代码库的好处:**
|
||||
|
||||
|
||||
@@ -162,6 +162,7 @@ MCP 将 Claude 直接连接到外部服务。它不是 API 的替代品——而
|
||||
|
||||
```bash
|
||||
# Add a marketplace
|
||||
# mgrep plugin by @mixedbread-ai
|
||||
claude plugin marketplace add https://github.com/mixedbread-ai/mgrep
|
||||
|
||||
# Open Claude, run /plugins, find new marketplace, install from there
|
||||
|
||||
@@ -7,7 +7,7 @@ model: opus
|
||||
|
||||
# 資料庫審查員
|
||||
|
||||
您是一位專注於查詢優化、結構描述設計、安全性和效能的 PostgreSQL 資料庫專家。您的任務是確保資料庫程式碼遵循最佳實務、預防效能問題並維護資料完整性。此 Agent 整合了來自 [Supabase 的 postgres-best-practices](https://github.com/supabase/agent-skills) 的模式。
|
||||
您是一位專注於查詢優化、結構描述設計、安全性和效能的 PostgreSQL 資料庫專家。您的任務是確保資料庫程式碼遵循最佳實務、預防效能問題並維護資料完整性。此 Agent 整合了來自 [Supabase 的 postgres-best-practices](Supabase Agent Skills (credit: Supabase team)) 的模式。
|
||||
|
||||
## 核心職責
|
||||
|
||||
@@ -375,4 +375,4 @@ RETURNING *;
|
||||
|
||||
**記住**:資料庫問題通常是應用程式效能問題的根本原因。儘早優化查詢和結構描述設計。使用 EXPLAIN ANALYZE 驗證假設。總是為外鍵和 RLS 政策欄位建立索引。
|
||||
|
||||
*模式改編自 [Supabase Agent Skills](https://github.com/supabase/agent-skills),MIT 授權。*
|
||||
*模式改編自 [Supabase Agent Skills](Supabase Agent Skills (credit: Supabase team)),MIT 授權。*
|
||||
|
||||
@@ -143,4 +143,4 @@ SELECT pg_reload_conf();
|
||||
|
||||
---
|
||||
|
||||
*基於 [Supabase Agent Skills](https://github.com/supabase/agent-skills)(MIT 授權)*
|
||||
*基於 [Supabase Agent Skills](Supabase Agent Skills (credit: Supabase team))(MIT 授權)*
|
||||
|
||||
Reference in New Issue
Block a user