Samberスキル
ego lite browser
スポンサーego liteは、AIエージェントがウェブ自動化を実行するための最速のブラウザであり、CodexやClaude Codeとログイン状態を共有し、コストゼロ、設定不要です。
Alpha Vantage MCP Server
スポンサー金融市場データにアクセス:リアルタイムおよび過去の株式、ETF、オプション、外国為替、暗号通貨、商品、ファンダメンタルズ、テクニカル指標など
Composio
スポンサー1500以上のMCPサーバーに1クリックで接続
golang-observability
cc-skills-golang/skills/golang-observability
Go言語の日常的な可観測性 — 本番環境で常時オンとなるシグナル。slogによる構造化ログ、Prometheusメトリクス、OpenTelemetry分散トレーシング、pprof/Pyroscopeによる継続的プロファイリング、サーバーサイドRUMイベント追跡、アラート、Grafanaダッシュボードをカバー。Goサービスを本番監視用に計装する際、メトリクスやアラートを設定する際、OpenTelemetryトレーシングを追加する際、ログとトレースを関連付ける際、レガシーロガー(zap/logrus/zerolog)をslogに移行する際、追加する際に適用。
開発DevOpsgolang-performance
cc-skills-golang/skills/golang-performance
Golangのパフォーマンス最適化パターンと方法論 - XのボトルネックがあればYを適用。アロケーション削減、CPU効率、メモリレイアウト、GCチューニング、プーリング、キャッシング、ホットパス最適化をカバー。プロファイリングやベンチマークでボトルネックが特定され、それを修正するための適切な最適化パターンが必要な場合に使用。また、パフォーマンスコードレビューを行い、改善点や迅速なパフォーマンス向上を特定するのに役立つベンチマークを提案する場合にも使用。測定方法論には使用しない(→...)
開発コードレビューgolang-popular-libraries
cc-skills-golang/skills/golang-popular-libraries
本番環境で使用可能なGolangライブラリとフレームワークを推奨します。ユーザーが明示的にライブラリの提案を求めた場合、代替案の比較を希望する場合、特定のタスクに適したライブラリを選択する必要がある場合、またはプロジェクトに新しい依存関係を追加する際に適用します。
開発リサーチコードレビューgolang-project-layout
cc-skills-golang/skills/golang-project-layout
Golangプロジェクトのレイアウトとワークスペースの設定ガイドを提供します。新しいGoプロジェクトを開始するとき、既存のコードベースを整理するとき、複数のパッケージを持つモノレポを設定するとき、複数のメインパッケージを持つCLIツールを作成するとき、cmd/internal/pkgディレクトリの規約を決定するとき、またはパッケージの再構築、パッケージ分割、モジュール分割について議論するときに使用します。
開発golang-safety
cc-skills-golang/skills/golang-safety
防御的なGolangコーディングにより、パニック、データの静かな破損、および微妙なランタイムバグを防止します。nilパニック、appendエイリアシング、マップの同時アクセス、浮動小数点比較の落とし穴、またはゼロ値設計に関する問題に遭遇した場合に使用します。また、nil安全性、数値変換のオーバーフロー、リソースライフサイクルの問題(ループ内のdefer)、またはスライスやマップの防御的コピーについてコードをレビューする際にも使用します。
開発コードレビューセキュリティgolang-samber-do
cc-skills-golang/skills/golang-samber-do
Golangでsamber/doを使用した依存性注入 — サービスコンテナ、ライフサイクル管理、スコープ、ヘルスチェック、グレースフルシャットダウン、モジュール構成。samber/doを使用または採用する場合、コードベースがgithub.com/samber/doまたはgithub.com/samber/do/v2をインポートしている場合、または手動のコンストラクタインジェクションをDIコンテナにリファクタリングする場合に適用します。
開発コードレビューテストgolang-samber-hot
cc-skills-golang/skills/golang-samber-hot
Golangでsamber/hotを使用したインメモリキャッシング — 退避アルゴリズム(LRU、LFU、TinyLFU、W-TinyLFU、S3FIFO、ARC、TwoQueue、SIEVE、FIFO)、TTL、キャッシュローダー、シャーディング、stale-while-revalidate、ミスキーキャッシング、Prometheusメトリクス。samber/hotを使用または導入する場合、コードベースがgithub.com/samber/hotをインポートする場合、またはプロジェクトが同じ中〜低カーディナリティのリソースを高頻度で繰り返し読み込み、レイテンシやバックエンド負荷を軽減する必要がある場合に適用します。
開発データベースgolang-samber-lo
cc-skills-golang/skills/golang-samber-lo
Functional programming helpers for Golang using samber/lo — 500+ type-safe generic functions for slices, maps, channels, strings, math, tuples, and concurrency (Map, Filter, Reduce, GroupBy, Chunk, Flatten, Find, Uniq, etc.). Core immutable package (lo), concurrent variants (lo/parallel aka lop), in-place mutations (lo/mutable aka lom), lazy iterators (lo/it aka loi for Go 1.23+), and experimental SIMD (lo/exp/simd). Apply when using or adopting samber/lo, when the codebase imports...
開発golang-samber-mo
cc-skills-golang/skills/golang-samber-mo
Monadic types for Golang using samber/mo — Option, Result, Either, Future, IO, Task, and State types for type-safe nullable values, error handling, and functional composition with pipeline sub-packages. Apply when using or adopting samber/mo, when the codebase imports `github.com/samber/mo`, or when considering functional programming patterns as a safety design for Golang.
開発コードレビューgolang-samber-oops
cc-skills-golang/skills/golang-samber-oops
Golangにおけるsamber/oopsを使用した構造化エラーハンドリング — エラービルダー、スタックトレース、エラーコード、エラーコンテキスト、エラーラッピング、エラー属性、ユーザー向けメッセージと開発者向けメッセージ、パニックリカバリ、ロガー統合。samber/oopsを使用または採用する場合、またはコードベースが既にgithub.com/samber/oopsをインポートしている場合に適用します。
開発golang-samber-ro
cc-skills-golang/skills/golang-samber-ro
Golangにおけるsamber/roを使用したリアクティブストリームとイベント駆動プログラミング — 150以上の型安全なオペレーター、コールド/ホットオブザーバブル、5つのサブジェクトタイプ(Publish、Behavior、Replay、Async、Unicast)、Pipeによる宣言的パイプライン、40以上のプラグイン(HTTP、cron、fsnotify、JSON、ロギング)、自動バックプレッシャー、エラー伝搬、Goコンテキスト統合を備えたReactiveX実装。samber/roを使用または採用する場合、コードベースがgithub.com/samber/roをインポートする場合、または非同期処理を構築する場合に適用。
開発APIデータ分析golang-samber-slog
cc-skills-golang/skills/golang-samber-slog
Golang向け構造化ログ拡張機能。samber/slog-****パッケージを使用したマルチハンドラーパイプライン(slog-multi)、ログサンプリング(slog-sampling)、属性フォーマット(slog-formatter)、HTTPミドルウェア(slog-fiber、slog-gin、slog-chi、slog-echo)、バックエンドルーティング(slog-datadog、slog-sentry、slog-loki、slog-syslog、slog-logstash、slog-graylog...)。slogを使用または導入する場合、またはコードベースが既にgithub.com/samber/slog-*パッケージをインポートしている場合に適用します。
開発APIgolang-security
cc-skills-golang/skills/golang-security
Golangのセキュリティベストプラクティスと脆弱性防止。インジェクション(SQL、コマンド、XSS)、暗号化、ファイルシステムの安全性、ネットワークセキュリティ、クッキー、シークレット管理、メモリ安全性、ログ記録をカバー。Goコードのセキュリティに関する作成、レビュー、監査時、または暗号、I/O、シークレット管理、ユーザー入力処理、認証を含むリスクのあるコードに取り組む際に適用。セキュリティツールの設定を含む。
セキュリティコードレビュー開発golang-spf13-cobra
cc-skills-golang/skills/golang-spf13-cobra
We need to translate the given text from English to Japanese. The text describes a Golang CLI command tree library using spf13/cobra. It lists various features and concepts. The instruction says to preserve product names, protocol names, URLs, numbers, and technical terms. So "Golang", "spf13/cobra", "cobra.Command", "RunE", "Run", "PersistentPreRunE", "Args", "NoArgs", "ExactArgs", "MatchAll", "ValidArgsFunction", "RegisterFlagCompletionFunc", "ShellCompDirective", "SetArgs", "SetOut", "SetErr", "github.com/spf13/cobra" should remain as is. Also "man-page" and "markdown" are technical terms. The text ends with "For..." which might be incomplete, but we translate as is. We need to output only the translation, no extra commentary. The target language is Japanese. We'll produce a natural Japanese translation while keeping the technical terms in English. Let's translate: "Golang CLI command tree
開発golang-spf13-viper
cc-skills-golang/skills/golang-spf13-viper
We need to translate the given text from English to Japanese, preserving the name "golang-spf13-viper" but it's not in the text. The text describes a Golang configuration library using spf13/viper. We must not include the name unless it appears in the source text. The source text does not contain the name "golang-spf13-viper". So we just translate the text inside <text>. Also preserve technical terms like spf13/viper, BindPFlag, etc. The text ends with "For CLI command..." which seems incomplete but we translate as is. Translation: Golang設定ライブラリ spf13/viper を使用 — 階層的な優先順位 (フラグ > 環境変数 > ファイル > KV > デフォルト)、BindPFlag/BindPFlags、SetEnvPrefix + SetEnvKeyReplacer + AutomaticEnv、ReadInConfig + ConfigFileNotFoundError、Unmarshal + mapstructure 構造体タグ、サブツリー用
開発APIコードレビューgolang-stay-updated
cc-skills-golang/skills/golang-stay-updated
Golangのニュース、コミュニティ、フォローすべき人々に関する最新情報を得るためのリソースを提供します。Goの学習リソースを探すとき、新しいライブラリを発見するとき、コミュニティチャンネルを見つけるとき、またはGo言語の変更やリリースに関する最新情報を追いかけたいときに使用します。
開発リサーチgolang-stretchr-testify
cc-skills-golang/skills/golang-stretchr-testify
Golangテストにおけるstretchr/testifyの包括的なガイド。assert、require、mock、suiteパッケージを詳細にカバー。testifyを使ったテスト作成、モックの作成、テストスイートのセットアップ、assertとrequireの選択時に使用。testifyのアサーション、モックの期待値、引数マッチャー、呼び出し検証、スイートのライフサイクル、Eventually、JSONEq、カスタムマッチャーなどの高度なパターンをカバー。コードベースがgithub.com/stretchr/testifyをインポートしている場合に適用。
開発テストコードレビューgolang-structs-interfaces
cc-skills-golang/skills/golang-structs-interfaces
Golangの構造体とインターフェースの設計パターン — コンポジション、埋め込み、型アサーション、型スイッチ、インターフェース分離、インターフェースを介した依存性注入、構造体フィールドタグ、ポインタレシーバと値レシーバ。Goの型を設計する際、インターフェースの定義や実装、構造体やインターフェースの埋め込み、型アサーションや型スイッチの記述、JSON/YAML/DBシリアライゼーションのための構造体フィールドタグの追加、ポインタレシーバと値レシーバの選択時にこのスキルを使用してください。また、ユーザーが...
開発コードレビューgolang-swagger
cc-skills-golang/skills/golang-swagger
Golang OpenAPI/Swaggerドキュメント — swaggo/swagによるアノテーションコメント(@Summary、@Param、@Success、@Router、@Security)、swag initコード生成、フレームワーク統合(gin、echo、fiber、chi、net/http)、セキュリティ定義(Bearer/JWT、OAuth2、APIキー)、および構造体タグ(swaggertype、enums、example、swaggerignore)。GoプロジェクトでSwagger/OpenAPIドキュメントを追加または保守する場合、またはコードベースがgithub.com/swaggo/swag、github.com/swaggo/gin-swagger、...をインポートしている場合に適用します。
開発APIgolang-testing
cc-skills-golang/skills/golang-testing
We need to translate the given text from English to Japanese, preserving the name "golang-testing" if it appears. The text is a description of a directory item type "agent skill". The instruction says: "Do not include the name unless it appears in the source text." The name "golang-testing" does not appear in the provided <text>? Actually, looking at the text: it starts with "Production-ready Golang tests — ..." and later mentions "samber/cc-skills-golang@golang-stretchr-testify". The name "golang-testing" is not in the text. So we should not add it. We just translate the content. We need to preserve product names, protocol names, URLs, numbers, technical terms. So "Golang", "testify", "goleak", "CI", "Go", "samber/cc-skills-golang@golang-stretchr-testify" should remain as is. Also "table-driven tests", "testify suites and mocks", "parallel tests", "f
開発テストコードレビューgolang-troubleshooting
cc-skills-golang/skills/golang-troubleshooting
We need to translate the given text from English to Japanese, preserving the name "golang-troubleshooting" and other technical terms. The instruction says to translate only the text inside <text>, and not include the name unless it appears in the source text. The name appears in the source text as part of a skill reference? Actually, the source text mentions "samber/cc-skills-golang@golang-benchmark" but not "golang-troubleshooting" explicitly. The directory item type is agent skill, and the name to preserve is golang-troubleshooting, but it's not in the text. So we just translate the text. The text: "Troubleshoot Golang programs systematically - find and fix the root cause. Use when encountering bugs, crashes, deadlocks, or unexpected behavior in Go code. Covers debugging methodology, common Go pitfalls, test-driven debugging, pprof setup and capture, Delve debugger, race detection, GODEBUG tracing, and production debugging. Start here for any 'something is wrong' situation
開発テストgolang-uber-dig
cc-skills-golang/skills/golang-uber-dig
Implements dependency injection in Golang using uber-go/dig — reflection-based container, Provide/Invoke, dig.In/dig.Out parameter and result objects, named values, value groups, optional dependencies, scopes, and Decorate. Apply when using or adopting uber-go/dig, when the codebase imports `go.uber.org/dig`, or when wiring an application graph at startup. For higher-level lifecycle and modules, see `samber/cc-skills-golang@golang-uber-fx` skill.
開発APIgolang-uber-fx
cc-skills-golang/skills/golang-uber-fx
G
開発APIhumaniseur-fr
cc-skills/skills/humaniseur-fr
フランス語テキストからAI的な書き方を除去し、声、個性、魂を注入します。ChatGPT/Claudeの出力のように読めるフランス語コンテンツの編集、レビュー、書き直し、またはクリーンアップ時に使用します。人間らしく、ヒューマナイズし、デスロップ化します。27のパターンを検出・修正します:AI語彙の過剰使用(crucial, essentiel, notamment, par ailleurs, dans le paysage)、英語優先モデルからの英仏混淆(faire du sens, adresser un problème)、コピュラ回避、決まりきった書き出し(À l'ère de, Dans le paysage actuel)、...
クリエイティブコミュニケーションinfluence-and-negotiation
cc-skills/skills/influence-and-negotiation
あらゆるやり取りにおいて、たとえ「交渉」と明確に位置づけられていない場合でも、相手の同意が必要な場面で役立つ影響力と交渉のツールキット。対象範囲:B2B営業、給与査定、団体交渉・労働組合、厳しい1対1の面談、決定事項の発表、調停、異文化間の取引、採用、マネージャー・CFO・顧客・ベンダー・同僚への連絡、フィードバックへの対応、人員要求、断り、範囲の押し戻し、遅延の正当化、決定の説明、懸念の表明、獲得...
コミュニケーションリサーチ生産性linkedin-ghostwriter
cc-skills/skills/linkedin-ghostwriter
linkedin-ghostwriter — AIエージェント用のインストール可能なスキル。
マーケティングコミュニケーションクリエイティブlinkedin-ghostwriting
cc-skills/skills/linkedin-ghostwriting
B2B LinkedIn向けゴーストライティング — 戦略的インタビュー、フック設計、投稿本文。ユーザーがLinkedInのコンテンツを作成したい、ゴーストライトの投稿を作成したい、創業者や経営幹部向けにゴーストライティングを行いたい、B2Bソーシャル戦略を策定したい、またはLinkedIn向けのフック、投稿構成、コピーライティングフレームワークを必要とする場合に使用します。ユーザーがストーリー、結果、洞察を共有し、それを投稿にしたい場合に適用します。
マーケティングコミュニケーションクリエイティブpress-release-writer
cc-skills/skills/press-release-writer
プロフェッショナルなプレスリリースを、あらゆる機会、メディアタイプ、国向けに作成します。ユーザーがプレスリリース、コミュニケ・ドゥ・プレス、メディア向け発表、ニュースリリース、PRステートメント(製品発表、資金調達ラウンド、パートナーシップ、危機対応コミュニケーション、業績発表、役員採用、イベント、M&A、オープンソースのマイルストーン、メディアアドバイザリーを含む)を作成、草案、改善したい場合に使用します。すべてのリリースタイプ、メディアターゲット(印刷、デジタル/ワイヤー、放送、ソーシャル/SMPR、業界紙)をカバーし、さらに...
マーケティングコミュニケーションクリエイティブpromql-cli
cc-skills/skills/promql-cli
PrometheusおよびPromQL互換エンジン(Thanos、Cortex、VictoriaMetrics、Grafana Mimir、Grafana Tempo...)をクエリするためのCLI — 即時クエリ、範囲クエリ、メトリクス発見(metrics/labels/metaサブコマンド)、出力形式(table/csv/json/graph)。PromQLクエリの実行時、可観測性を持つソフトウェアのパフォーマンス問題のトラブルシューティング、レイテンシ/エラー率/飽和状態の調査、または時系列データの分析時に適用します。
開発DevOpsデータ分析site-launch-checklist
cc-skills/skills/site-launch-checklist
新サイト公開前のチェックリスト。アナリティクス設定(GA4、PostHog、Google Search Console、Ahrefs)、法的コンプライアンス、セキュリティヘッダーと監査、SEOおよびGEO(キーワードリサーチをGoogleトレンドで検証、robots.txt、サイトマップ、llms.txt、AIポリシー、スキーママークアップ、hreflang)、TONE.mdと対象言語でのヒューマナイザー処理によるコピーライティングの一貫性、OpenGraphとソーシャルプレビュー、マニフェスト付き完全なファビコンセット、品質ゲート(Lighthouse、Core Web...
開発リサーチ
65 件中 31–60 件