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: advanced/context-pruning.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -11,7 +11,7 @@ As agents run long tasks, tool results accumulate in the conversation history. L
11
11
1.**Soft trim** — truncate oversized tool results to head + tail, dropping the middle.
12
12
2.**Hard clear** — if the context is still too full, replace entire tool results with a short placeholder.
13
13
14
-
Context pruning is distinct from [session compaction](/sessions-and-history). Compaction permanently summarizes and truncates conversation history. Pruning is non-destructive: the original tool results remain in the session store and are never modified — only the message slice sent to the LLM is trimmed.
14
+
Context pruning is distinct from [session compaction](../core-concepts/sessions-and-history.md). Compaction permanently summarizes and truncates conversation history. Pruning is non-destructive: the original tool results remain in the session store and are never modified — only the message slice sent to the LLM is trimmed.
15
15
16
16
---
17
17
@@ -226,7 +226,7 @@ Increase `softTrim.headChars` and `softTrim.tailChars`, or raise `softTrim.maxCh
226
226
227
227
**Context still overflows despite pruning**
228
228
229
-
Pruning only acts on tool results. If long user messages or system prompt components dominate the context, pruning will not help. Consider [session compaction](/sessions-and-history) or reduce the system prompt size.
229
+
Pruning only acts on tool results. If long user messages or system prompt components dominate the context, pruning will not help. Consider [session compaction](../core-concepts/sessions-and-history.md) or reduce the system prompt size.
230
230
231
231
---
232
232
@@ -244,8 +244,8 @@ Tool output is now capped at the source before being added to context. Rather th
244
244
245
245
## What's Next
246
246
247
-
-[Sessions & History](/sessions-and-history) — session compaction, history limits
248
-
-[Memory System](/memory-system) — 3-tier memory architecture and consolidation pipeline
247
+
-[Sessions & History](../core-concepts/sessions-and-history.md) — session compaction, history limits
248
+
-[Memory System](../core-concepts/memory-system.md) — 3-tier memory architecture and consolidation pipeline
249
249
-[Configuration Reference](/config-reference) — full agent config reference
Copy file name to clipboardExpand all lines: agents/editing-personality.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,7 +9,7 @@ Your agent's personality emerges from two primary configuration files:
9
9
-**SOUL.md**: Defines tone, values, boundaries, expertise, and operational style. This is the "who you are" file.
10
10
-**IDENTITY.md**: Contains metadata like name, emoji, creature type, and avatar. This is the "what you look like" file.
11
11
12
-
**AGENTS.md** also contributes to the overall persona — it defines conversational rules, memory usage, and group chat behavior. While less about "personality," it shapes how the agent expresses itself in practice. See [Context Files](/context-files) for details.
12
+
**AGENTS.md** also contributes to the overall persona — it defines conversational rules, memory usage, and group chat behavior. While less about "personality," it shapes how the agent expresses itself in practice. See [Context Files](../agents/context-files.md) for details.
13
13
14
14
You can edit these files three ways: via the Dashboard UI, the WebSocket API, or directly on disk. Edits made through the UI or API are stored in the database.
15
15
@@ -260,7 +260,7 @@ This is governed by the `buildSelfEvolveSection()` in `internal/agent/systemprom
260
260
261
261
## What's Next
262
262
263
-
-[Context Files — Extending personality with per-user context](/context-files)
263
+
-[Context Files — Extending personality with per-user context](../agents/context-files.md)
264
264
-[System Prompt Anatomy — How personality gets injected into prompts](/system-prompt-anatomy)
265
265
-[Creating Agents — Set up personality during agent creation](/creating-agents)
0 commit comments