Files
RiskeyL f5e73aa5b2 feat: add a global contributing footer via custom JS
Replace the per-page "Contributing Section" (previously baked into every plugin-dev page by tools/contributing_in_page.py) with a single custom JS file that Mintlify auto-includes on every page. It derives the GitHub edit URL from the current path at runtime, localizes the labels (en/zh/ja), and injects an "Edit this page | Report an issue" bar above the site footer, so the feature now covers all pages with no per-page markup.

- add contributing-footer.js
- remove the 117 baked-in Contributing Sections under en/zh/ja/develop-plugin
- retire tools/contributing_in_page.py

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
2026-06-24 11:44:09 +08:00

130 lines
4.9 KiB
Plaintext

---
dimensions:
type:
primary: conceptual
detail: introduction
level: beginner
standard_title: Getting Started with Dify Plugin Development
language: ja
title: Dify プラグイン
description: 外部サービス、カスタムロジック、専用ツールで Dify の AI アプリケーションを拡張するモジュラーコンポーネント
---
> このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/develop-plugin/getting-started/getting-started-dify-plugin) を参照してください。
Dify プラグインは、外部サービス、カスタム機能、専用ツールで Dify 上に構築した AI アプリケーションを拡張するモジュラーコンポーネントです。
<Frame caption="マーケットプレイス">
![マーケットプレイス](/images/develop-plugin/get-started/marketplace.png)
</Frame>
プラグインを通じて、AI アプリケーションは次のことができます。
- 外部 API への接続
- さまざまなタイプのデータの処理
- 専用的な計算の実行
- 実世界でのアクションの実行
## はじめに
<CardGroup cols={2}>
<Card title="プラグインタイプの選択" icon="route" href="/ja/develop-plugin/getting-started/choose-plugin-type">
ツール、モデル、Agent 戦略、拡張機能、データソース、トリガーの各プラグインから選ぶための短い意思決定ガイドです。
</Card>
<Card title="CLI のインストール" icon="rocket" href="/ja/develop-plugin/getting-started/cli">
お使いのマシンに `dify` をセットアップし、数分で新しいプラグインプロジェクトを作成できます。
</Card>
</CardGroup>
## プラグインの種類
<AccordionGroup cols={3}>
<Accordion
title="モデル"
icon="microchip"
href="/ja/develop-plugin/dev-guides-and-walkthroughs/creating-new-model-provider"
>
AI モデルをプラグインとしてパッケージ化して管理
<a href="/ja/develop-plugin/dev-guides-and-walkthroughs/creating-new-model-provider" className="text-primary">詳細を見る</a>
</Accordion>
<Accordion
title="ツール"
icon="toolbox"
href="/ja/develop-plugin/dev-guides-and-walkthroughs/tool-plugin"
>
Agent とワークフロー向けの専用機能を構築
<a href="/ja/develop-plugin/dev-guides-and-walkthroughs/tool-plugin" className="text-primary">詳細を見る</a>
</Accordion>
<Accordion
title="Agent 戦略"
icon="brain"
href="/ja/develop-plugin/dev-guides-and-walkthroughs/agent-strategy-plugin"
>
自律型 Agent 向けのカスタム推論戦略を作成
<a href="/ja/develop-plugin/dev-guides-and-walkthroughs/agent-strategy-plugin" className="text-primary">詳細を見る</a>
</Accordion>
<Accordion
title="拡張機能"
icon="puzzle-piece"
href="/ja/develop-plugin/dev-guides-and-walkthroughs/endpoint"
>
HTTP Webhook を通じた外部サービスとの統合を実装
<a href="/ja/develop-plugin/dev-guides-and-walkthroughs/endpoint" className="text-primary">詳細を見る</a>
</Accordion>
<Accordion
title="データソース"
icon="database"
href="/ja/develop-plugin/dev-guides-and-walkthroughs/datasource-plugin"
>
外部コンテンツを Dify のナレッジパイプラインに取り込む
<a href="/ja/develop-plugin/dev-guides-and-walkthroughs/datasource-plugin" className="text-primary">詳細を見る</a>
</Accordion>
<Accordion
title="トリガー"
icon="bolt"
href="/ja/develop-plugin/dev-guides-and-walkthroughs/trigger-plugin"
>
Webhook で受信したサードパーティプラットフォームのイベントからワークフローを開始
<a href="/ja/develop-plugin/dev-guides-and-walkthroughs/trigger-plugin" className="text-primary">詳細を見る</a>
</Accordion>
</AccordionGroup>
## その他のリソース
<CardGroup cols={2}>
<Card
title="開発とデバッグ"
icon="code"
href="/ja/develop-plugin/features-and-specs/plugin-types/remote-debug-a-plugin"
>
効率的なプラグイン開発のためのツールとテクニック
</Card>
<Card
title="公開とマーケットプレイス"
icon="shop"
href="/ja/develop-plugin/publishing/marketplace-listing/release-overview"
>
プラグインをパッケージ化して Dify コミュニティと共有
</Card>
<Card
title="API & SDK リファレンス"
icon="book-open"
href="/ja/develop-plugin/features-and-specs/plugin-types/general-specifications"
>
技術仕様とドキュメント
</Card>
<Card
title="コミュニティと貢献"
icon="users"
href="/ja/develop-plugin/publishing/standards/contributor-covenant-code-of-conduct"
>
他の開発者とコミュニケーションを取り、エコシステムに貢献
</Card>
</CardGroup>