docs: minor cleanup on wording

This commit is contained in:
2026-02-06 13:04:34 -05:00
parent 93ffe82fa8
commit 8b4d6029cb
+2 -2
View File
@@ -36,11 +36,11 @@ While CleverAgents leverages LangGraph and LangChain for the underlying LLM runt
* **Apply**: Phase that commits sandbox results into the real project (and records an "applied" plan state).
* **Project**: A collection of resources + configuration that define "where work happens" and "what can be touched." Created via CLI commands. Can be **local** (contains local-only resources) or **remote** (all resources remotely accessible).
* **Resource**: Anything that can be read/written/queried (files, repo trees, DB endpoints, cloud clusters, documents). **Extends the MCP resource concept** to support both read and write operations. Each resource defines its own **sandbox strategy**.
* **Skill**: A callable capability defined **inline in actor YAML configuration** as tool nodes. Extends the **MCP standard** and **Agent Skills standard**. Skills do not have separate names; a "named skill" can be created by defining an actor with a single tool node.
* **Skill**: A callable capability defined **inline in actor YAML configuration** as tool nodes. Extends the **MCP standard** and **Agent Skills standard**. Skills follow the same naming scheme as plans, actions, etc.
* **Actor**: Anything conversational; may be a single agent/LLM or an entire graph of actors/tools. Defined via **YAML configuration files** (LangGraph definitions). Always named using `<namespace>/<name>` format.
* **Session**: A user interaction context and conversation thread that can span multiple plans.
* **Server**: Optional shared service for multi-user storage, permissions, and orchestration. Plans on remote projects can execute on the server.
* **Namespace**: Scoping mechanism for actors, actions, and plans. `local/` is reserved for local-only items. User namespaces (`<username>/`) and organization namespaces (`<orgname>/`) are stored on the server. Built-in LLM actors use provider namespaces (e.g., `openai/`, `anthropic/`).
* **Namespace**: Scoping mechanism for actors, actions, plans, skills, etc. `local/` is reserved for local-only items. User namespaces (`<username>/`) and organization namespaces (`<orgname>/`) are stored on the server. Built-in LLM actors use provider namespaces (e.g., `openai/`, `anthropic/`).
* **Decision**: A recorded choice point made during Strategize that affects downstream work. Decisions form a tree structure that enables correction and replay.
* **ULID**: Universally Unique Lexicographically Sortable Identifier. Preferred over UUID for plan and decision IDs due to time-sortability.