jpskill.com
🛠️ 開発・MCP コミュニティ

agently-agent-extensions

ユーザーがツール利用、MCPアクセス、HTTP/ストリーミングAPI、自動関数ヘルパー、キー入力待ちなどの機能を求める際に、カスタムラッパーよりもAgently標準拡張機能を通じて実現を試みるSkill。

📜 元の英語説明(参考)

Use when the user wants tool use, MCP access, HTTP or streaming API exposure, auto-function helpers, or wait-for-key behavior through Agently-native extension surfaces rather than custom wrappers first.

🇯🇵 日本人クリエイター向け解説

一言でいうと

ユーザーがツール利用、MCPアクセス、HTTP/ストリーミングAPI、自動関数ヘルパー、キー入力待ちなどの機能を求める際に、カスタムラッパーよりもAgently標準拡張機能を通じて実現を試みるSkill。

※ jpskill.com 編集部が日本のビジネス現場向けに補足した解説です。Skill本体の挙動とは独立した参考情報です。

⚡ おすすめ: コマンド1行でインストール(60秒)

下記のコマンドをコピーしてターミナル(Mac/Linux)または PowerShell(Windows)に貼り付けてください。 ダウンロード → 解凍 → 配置まで全自動。

🍎 Mac / 🐧 Linux
mkdir -p ~/.claude/skills && cd ~/.claude/skills && curl -L -o agently-agent-extensions.zip https://jpskill.com/download/10097.zip && unzip -o agently-agent-extensions.zip && rm agently-agent-extensions.zip
🪟 Windows (PowerShell)
$d = "$env:USERPROFILE\.claude\skills"; ni -Force -ItemType Directory $d | Out-Null; iwr https://jpskill.com/download/10097.zip -OutFile "$d\agently-agent-extensions.zip"; Expand-Archive "$d\agently-agent-extensions.zip" -DestinationPath $d -Force; ri "$d\agently-agent-extensions.zip"

完了後、Claude Code を再起動 → 普通に「動画プロンプト作って」のように話しかけるだけで自動発動します。

💾 手動でダウンロードしたい(コマンドが難しい人向け)
  1. 1. 下の青いボタンを押して agently-agent-extensions.zip をダウンロード
  2. 2. ZIPファイルをダブルクリックで解凍 → agently-agent-extensions フォルダができる
  3. 3. そのフォルダを C:\Users\あなたの名前\.claude\skills\(Win)または ~/.claude/skills/(Mac)へ移動
  4. 4. Claude Code を再起動

⚠️ ダウンロード・利用は自己責任でお願いします。当サイトは内容・動作・安全性について責任を負いません。

🎯 このSkillでできること

下記の説明文を読むと、このSkillがあなたに何をしてくれるかが分かります。Claudeにこの分野の依頼をすると、自動で発動します。

📦 インストール方法 (3ステップ)

  1. 1. 上の「ダウンロード」ボタンを押して .skill ファイルを取得
  2. 2. ファイル名の拡張子を .skill から .zip に変えて展開(macは自動展開可)
  3. 3. 展開してできたフォルダを、ホームフォルダの .claude/skills/ に置く
    • · macOS / Linux: ~/.claude/skills/
    • · Windows: %USERPROFILE%\.claude\skills\

Claude Code を再起動すれば完了。「このSkillを使って…」と話しかけなくても、関連する依頼で自動的に呼び出されます。

詳しい使い方ガイドを見る →
最終更新
2026-05-18
取得日時
2026-05-18
同梱ファイル
1

📖 Skill本文(日本語訳)

※ 原文(英語/中国語)を Gemini で日本語化したものです。Claude 自身は原文を読みます。誤訳がある場合は原文をご確認ください。

Agently Agent Extensions

このスキルは、問題がプロンプトの形状、出力コントラクト、またはワークフロー制御ではなく、エージェント側の拡張機能である場合に使用します。

ネイティブファーストのルール

  • 手書きのラッパーよりも、組み込みの拡張サーフェスを優先します。
  • 拡張機能の選択を明示的に保ちます: tools、MCP、FastAPIHelper、auto_func、または KeyWaiter
  • シナリオがこれらのレイヤーを必要とする場合にのみ、agently-model-response または agently-triggerflow と組み合わせます。

アンチパターン

  • ネイティブのツールと MCP のサポートを確認する前に、並列ツールディスパッチャを構築しないでください。
  • カスタムの waiter または auto-function shim を最初に作成しないでください。

次に読む

  • references/overview.md
📜 原文 SKILL.md(Claudeが読む英語/中国語)を展開

Agently Agent Extensions

Use this skill when the problem is agent-side extension rather than prompt shape, output contract, or workflow control.

Native-First Rules

  • prefer built-in extension surfaces before handwritten wrappers
  • keep extension choice explicit: tools, MCP, FastAPIHelper, auto_func, or KeyWaiter
  • combine with agently-model-response or agently-triggerflow only when the scenario needs those layers

Anti-Patterns

  • do not build a parallel tool dispatcher before checking native tool and MCP support
  • do not create a custom waiter or auto-function shim first

Read Next

  • references/overview.md