# illutionlab｜動態研所

> Welcome to our site

**When to use this site**

Reach for illutionlab｜動態研所 when a user needs information about this creator's online learning offerings on this specific site. It is the right source for these jobs:

- Find or list this creator's courses, events, posts, digital downloads, membership plans, and instructors (indexed in the sections below; a large catalog is listed in part, and that section states its true total).
- Answer "what is coming up?" — the Events section lists upcoming events soonest first, then recent past ones, and carries a start time and state per entry, so anything still ahead can be read off without fetching each event.
- Search by keyword across courses, events, membership plans, and posts at [https://www.illutionlab.com/search?q=KEYWORD](https://www.illutionlab.com/search?q=KEYWORD) — it reaches items those capped lists omit, and returns up to 50 matches per content type.
- Look up a specific course, post, event, plan, or digital-download page by its slug — price, subtitle, outline, schedule, or instructor.
- Discover every page, including past events and categories, via the [sitemap](https://www.illutionlab.com/sitemap.xml).
- Answer "does this creator teach X?" or "how much is course Y?" for this site.

Do not use it for general web search, other creators' sites, or platform-wide account actions — it only describes the content published on www.illutionlab.com.

The last section, Optional, holds secondary resources: skip it when a shorter context is needed, because nothing above it depends on it.

**How to call it**

- **MCP server** (best for tools/agents): connect to https://www.illutionlab.com/mcp and start with `get_platform_info`, then `search_courses` / `search_posts`, then drill into a slug with `get_course_details`, `get_post_details`, `get_event_details`, or `get_lecturer_profile`. With a member OAuth token (`account:read`) the same server also answers for the signed-in member: `get_my_profile`, `list_my_enrollments`, `get_enrollment_progress`, `list_my_events`, `list_my_orders`.
- **Account API** (signed-in member's own data): POST GraphQL to https://www.illutionlab.com/account/graphql with `Authorization: Bearer` and the `account:read` scope — enrollments with access expiry, last-watched lecture, orders, event registrations. Obtain the token as described in [auth.md](https://www.illutionlab.com/auth.md).
- **Markdown**: add `.md` to a page path — `/courses/:slug.md`, or `/index.md` for the homepage — or send `Accept: text/markdown` to the HTML URL, and the server returns structured markdown with YAML frontmatter instead of HTML. Either signal works on any path below:
  - `/` (homepage)
  - `/faq`
  - `/search?q=:keyword` (searches courses, events, membership plans, and posts, up to 50 matches per type; add `&type=post` to narrow, `&page=2` to paginate)
  - `/courses` (course index, first page only)
  - `/lecturers` (instructor index, first page only)
  - `/@:slug` (instructor profile)
  - `/courses/:slug`
  - `/posts/:slug`
  - `/plans/:slug`
  - `/events/:slug`
  - `/digital-downloads/:slug`
  - `/categories/:slug`
- **HTTP API**: see the OpenAPI spec at [https://www.illutionlab.com/openapi.json](https://www.illutionlab.com/openapi.json).

## Posts

- [綠幕第七章｜追蹤點材質怎麼買？才不會反光又殘膠](https://www.illutionlab.com/posts/gsch07): 那種藍色和綠色的電火布或大力膠，到底能不能直接拿來貼綠幕？
- [綠幕第六章｜如何判斷追蹤點的形狀和數量](https://www.illutionlab.com/posts/gsch06): 拍綠幕時，Traking Marker（又稱追蹤點）的形狀和數量，將是後期製作順不順利的關鍵之一。
- [綠幕第五章｜追蹤點常見顏色－初階解析](https://www.illutionlab.com/posts/gsch05): 對後期軟體的追蹤功能來講，軟體追得準不準、效率高不高，主要是看顏色好不好辨識。
- [綠幕第四章｜不是所有綠幕都要貼追蹤點](https://www.illutionlab.com/posts/gsch04): 其實只要了解後製軟體的邏輯，幾乎都可以有明確的解答。
- [綠幕第三章｜綠幕到底要準備什麼大小才好呢？](https://www.illutionlab.com/posts/gsch03): 考慮綠幕背景要準備多大或多小之前，可以從分鏡上先判斷。
- [綠幕第二章｜什麼狀況下才要用綠幕拍攝呢？](https://www.illutionlab.com/posts/gsch02): 如果我們已經算到了拍攝可能有哪些潛在風險，這時候藍綠幕可能就是一個降低風險的解決辦法。
- [綠幕第一章｜是時候搞懂為何要拍藍綠幕了](https://www.illutionlab.com/posts/gsch01): 技術上為何使用綠色，而不是紅色、白色或紫色呢？

## Lecturers

- [麥可吳](https://www.illutionlab.com/@mike): Nuke Compositor / VFX Artist
- [Adam Liu](https://www.illutionlab.com/@3): Postvis artist 後期預覽藝術家 / Matchmover 攝影機對位
- [ST.Chritine](https://www.illutionlab.com/@4): Lighting / Senior Nuke Compositor
- [蓋文張](https://www.illutionlab.com/@ccgavin): VFX Supervisor
- [鍾曉雲 Monica](https://www.illutionlab.com/@7): 自媒體形象導師 / 創才顧問執行長
- [動態](https://www.illutionlab.com/@1)
- [蔡佳璇 Cc Mackup](https://www.illutionlab.com/@6): 影視特效彩妝師

## Developer & agent resources

- [Developer portal](https://www.illutionlab.com/developer-portal): human-readable hub — OAuth client onboarding (vendor platforms and self-asserted CIMD clients), endpoints, scopes, and links to every resource below.
- [Command-line interface](https://www.npmjs.com/package/loopwise): the `loopwise` CLI for deploying Loopwise Pages and reading this API.
- [MCP server](https://www.illutionlab.com/mcp): Model Context Protocol endpoint for tools and agents. Anonymous tools cover public content; a member OAuth token with `account:read` adds get_my_profile, list_my_enrollments, get_enrollment_progress, list_my_events, and list_my_orders for the signed-in member.
- [MCP server card](https://www.illutionlab.com/.well-known/mcp/server-card.json): discovery metadata for that MCP server.
- [Account API](https://www.illutionlab.com/account/graphql): member-scoped GraphQL (POST, `Authorization: Bearer` with `account:read`) — the signed-in member's own enrollments, progress, orders, and event registrations. See the authentication guide for obtaining a token.
- [AI catalog](https://www.illutionlab.com/.well-known/ai-catalog.json): Agentic Resource Discovery manifest for this origin.
- [Agent skills index](https://www.illutionlab.com/.well-known/agent-skills/index.json): the skills this origin publishes.
- [API catalog](https://www.illutionlab.com/.well-known/api-catalog): RFC 9727 catalog of this origin's APIs.
- [OpenAPI spec](https://www.illutionlab.com/openapi.json): the HTTP API surface.
- [Pricing](https://www.illutionlab.com/pricing.md): machine-readable plan and price list.
- [Authentication guide](https://www.illutionlab.com/auth.md): OAuth 2.0 and OpenID Connect flows.
- [OAuth authorization server metadata](https://www.illutionlab.com/.well-known/oauth-authorization-server): RFC 8414 discovery document.
- [OpenID Connect discovery](https://www.illutionlab.com/.well-known/openid-configuration): OIDC discovery document.
- [Agentic Commerce manifest](https://www.illutionlab.com/.well-known/acp.json): ACP checkout capabilities.
- [Developer documentation](https://docs.loopwise.com): guides for building against this platform.

## Optional

- [www.illutionlab.com/llms-full.txt](https://www.illutionlab.com/llms-full.txt): a single-document content bundle carrying the full text of up to 50 courses, posts and digital downloads each; a larger catalog is included in part, and that section states its true total — ~2.5k tokens, so check it against your context budget first.
- [Loopwise](https://loopwise.com): the platform this site runs on (formerly Teachify) — courses, events, and digital products for creators.
