> For the complete documentation index, see [llms.txt](https://developer.eagle.cool/plugin-api/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://developer.eagle.cool/plugin-api/zh-tw/get-started.md).

# 入門

- [簡介](https://developer.eagle.cool/plugin-api/zh-tw/get-started/readme.md): 本文件旨在向想要使用 Eagle Plugin API 開發插件的開發者提供一份易於理解的指南。我們將提供詳細的説明，幫助您更好地理解如何使用 API 開發插件。此外，我們還將提供大量範例程式碼，方便您快速學習。
- [你的第一個插件](https://developer.eagle.cool/plugin-api/zh-tw/get-started/creating-your-first-plugin.md): 這篇文章將指導您如何為 Eagle 新增一個插件
- [檔案結構概述](https://developer.eagle.cool/plugin-api/zh-tw/get-started/anatomy-of-an-extension.md): 這篇文章將快速介紹，插件項目中可能出現的檔案
- [插件類型](https://developer.eagle.cool/plugin-api/zh-tw/get-started/plugin-types.md): 這篇文章將詳細介紹，四種不同插件的開發差異及使用情境。
- [視窗](https://developer.eagle.cool/plugin-api/zh-tw/get-started/plugin-types/window.md): 這篇文章將闡述視窗插件的基本概念。
- [背景服務](https://developer.eagle.cool/plugin-api/zh-tw/get-started/plugin-types/service.md): 這篇文章將闡述背景服務插件的基本概念。
- [格式擴充](https://developer.eagle.cool/plugin-api/zh-tw/get-started/plugin-types/preview.md): 這篇文章將闡述格式擴充插件的基本概念。
- [檢查器](https://developer.eagle.cool/plugin-api/zh-tw/get-started/plugin-types/inspector.md): 這篇文章將闡述檢查器擴充的基本概念。
- [除錯插件](https://developer.eagle.cool/plugin-api/zh-tw/get-started/debugging.md): 這篇文章將詳細介紹有效除錯、除錯 Eagle 插件的方式。


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://developer.eagle.cool/plugin-api/zh-tw/get-started.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
