AI Agent
AI 代理
An AI system that observes state, chooses next actions, and uses tools within defined permissions and limits to pursue a goal.
Continue reading
Read the Agent Skill guide (Chinese) →KOF GLOSSARY · ENGLISH / 繁中
Each entry keeps only the definition you can use immediately. When a full guide or working example exists, the next link takes you there.
29 terms
AI 代理
An AI system that observes state, chooses next actions, and uses tools within defined permissions and limits to pursue a goal.
Continue reading
Read the Agent Skill guide (Chinese) →代理技能
A reusable package of instructions and references that tells an agent when to activate, what to read, how to work, and what completion means.
Continue reading
Read the full comparison (Chinese) →模型上下文協定
Short for Model Context Protocol, an open protocol for connecting AI applications to external tools, data, and reusable prompts in a consistent way.
Continue reading
See how Skills, MCP, and plugins work together (Chinese) →外掛
A product-specific installation and distribution unit that may bundle Skills, tool servers, connectors, or UI components.
Continue reading
See the shortest comparison (Chinese) →大型語言模型
Short for Large Language Model, a model trained on large amounts of text and other data to understand, generate, and transform language.
上下文視窗
The amount of input and output a model can consider in one request, usually measured in tokens; excess content must be trimmed, summarized, or split.
Continue reading
See its role in context engineering →文字單位
A basic unit used to split text, which may be a character, part of a word, or punctuation; model limits and API costs are often measured in tokens.
提示詞
Instructions and context given to a model, potentially including the task, data, examples, output format, and constraints—not merely one question.
Continue reading
Read the five-layer evolution of AI development →推論
The runtime stage where a trained model receives new input and produces a result, such as a chat response, image, or classification.
檢索增強生成
Short for Retrieval-Augmented Generation: retrieve relevant external information first, then give it to a model to generate an answer.
Continue reading
See where OKF fits beside RAG →向量嵌入
A numeric vector representation of text, images, or other data that lets systems compare semantic similarity by distance.
向量資料庫
A data system optimized for storing and searching vectors, often used to retrieve document chunks for semantic search or RAG.
Continue reading
Can OKF really replace a vector database? →開放知識格式
Short for Open Knowledge Format, an early open specification proposed by a Google Cloud team for portable agent knowledge made from Markdown, YAML frontmatter, directories, and links.
Continue reading
Read the hands-on OKF guide →瀏覽器圖形介面
A browser API that uses the GPU to draw real-time 2D and 3D graphics in a canvas; Three.js provides a friendlier layer above it.
Continue reading
Read the WebGL introduction →網頁 3D 函式庫
A JavaScript library built on browser graphics APIs such as WebGL, organizing real-time 3D around scenes, cameras, materials, and renderers.
Continue reading
Read the Three.js introduction →開源 3D 創作工具
A free, open-source 3D creation suite for modeling, materials, animation, simulation, and rendering, with Python automation for asset pipelines.
Continue reading
Read the Blender introduction →3D 傳輸格式
An open delivery format for real-time 3D that can describe meshes, materials, textures, rigs, and animation for the web or game engines.
Continue reading
See how Blender exports glTF →二進位 glTF
A binary form of glTF that packages a scene and related binary data into one file for convenient deployment, downloading, and caching.
Continue reading
Get the headless GLB export example →網格物件
A visible 3D object made from geometry and material: geometry defines the shape, while material defines how the surface appears.
Continue reading
Learn the five basic Three.js roles →著色器
A small program executed on the GPU to determine vertex positions or pixel colors, forming the foundation of materials, lighting, and post-processing.
Continue reading
Start with Three.js materials →渲染器
The component that sends a scene and camera through the graphics pipeline to draw the final image; Three.js commonly uses WebGLRenderer.
Continue reading
See a minimal Three.js scene →本地優先
An approach where primary data and core functionality live on the user’s device and work offline; sync supports collaboration and backup instead of every action.
Continue reading
Read the Local Brain implementation →無介面執行
Running without the normal graphical interface so commands or code can automate work in batches, on servers, or in CI.
Continue reading
See the headless Blender example →持續整合與交付
Short for continuous integration and continuous delivery or deployment: automated pipelines that repeatedly build, test, and release software.
應用程式介面
An agreed interface that lets programs exchange data or call functionality, describing available operations, required inputs, and returned results.
軟體開發套件
A development kit for a platform or service, commonly including libraries, types, documentation, examples, and debugging tools.
氛圍式寫程式
A fast development style driven by describing intent in natural language and iterating on AI-generated code, while humans remain responsible for requirements, verification, and maintenance.
Continue reading
See how I changed my AI development workflow →社群分享中繼資料
Metadata in the HTML head—such as title, description, and image—that tells social platforms how a shared link card should appear.
標準網址
The preferred primary URL declared with a canonical link, used to consolidate duplicate or substantially similar page addresses for search engines.
A term becomes a full Guide only when it needs more background, examples, or a working implementation.