You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/agent-studio/building-agents/overview.mdx
+16-5Lines changed: 16 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,6 +13,19 @@ Agent orchestration is the practice of **designing, running, and governing** the
13
13
14
14
---
15
15
16
+
## 🔑 Core Concepts
17
+
18
+
| Term | What it means in SmythOS |
19
+
|------|--------------------------|
20
+
|**Component**| The smallest building block—one task with defined inputs ➜ outputs.<br/>_Examples: API Call, GenAI-LLM, Web Scraper, RAG Search._|
21
+
|**Skill**| A reusable **bundle of components** wired together to solve a sub-task (e.g., “Enrich a company record” or “Summarize a PDF”). Import a skill once; drop it into many agents. |
22
+
|**Agent**| A production-ready package that stitches **multiple skills** into a full workflow, adds memory, auth, and deployment metadata, and exposes REST / WebSocket / UI endpoints. |
23
+
|**Vault**| An encrypted locker for API keys and secrets, referenced by components at runtime so credentials never leak. |
24
+
25
+
> **TL;DR** – *Components* ⟶ bundled into *Skills* ⟶ orchestrated by an *Agent* you can ship to users.
26
+
27
+
---
28
+
16
29
## What an agent gives you
17
30
18
31
| Capability | Why it matters |
@@ -21,13 +34,11 @@ Agent orchestration is the practice of **designing, running, and governing** the
21
34
|**Hosted Web UI**| SmythOS auto-generates a polished chat or form UI you can embed or white-label. |
0 commit comments