Skip to content

Commit 48d2ba8

Browse files
authored
fix: replace path-style links with relative markdown links (EN+VI+ZH) (#52)
1 parent a627789 commit 48d2ba8

72 files changed

Lines changed: 109 additions & 109 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

advanced/context-pruning.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ As agents run long tasks, tool results accumulate in the conversation history. L
1111
1. **Soft trim** — truncate oversized tool results to head + tail, dropping the middle.
1212
2. **Hard clear** — if the context is still too full, replace entire tool results with a short placeholder.
1313

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.
1515

1616
---
1717

@@ -226,7 +226,7 @@ Increase `softTrim.headChars` and `softTrim.tailChars`, or raise `softTrim.maxCh
226226

227227
**Context still overflows despite pruning**
228228

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.
230230

231231
---
232232

@@ -244,8 +244,8 @@ Tool output is now capped at the source before being added to context. Rather th
244244

245245
## What's Next
246246

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
249249
- [Configuration Reference](/config-reference) — full agent config reference
250250

251251
<!-- goclaw-source: 050aafc9 | updated: 2026-04-09 -->

advanced/knowledge-graph.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -395,7 +395,7 @@ When an agent uses `vault_search`, the VaultSearchService fans out to **both** t
395395
## What's Next
396396

397397
- [Knowledge Vault](knowledge-vault.md) — Document-level knowledge store with wikilinks and semantic search
398-
- [Memory System](/memory-system) — Vector-based long-term memory
399-
- [Sessions & History](/sessions-and-history) — Conversation storage
398+
- [Memory System](../core-concepts/memory-system.md) — Vector-based long-term memory
399+
- [Sessions & History](../core-concepts/sessions-and-history.md) — Conversation storage
400400

401401
<!-- goclaw-source: 1296cdbf | updated: 2026-04-11 -->

advanced/knowledge-vault.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -318,7 +318,7 @@ No feature flag. Vault is active if the migration ran and VaultStore initialized
318318
## What's Next
319319

320320
- [Knowledge Graph](knowledge-graph.md) — Entity and relation graph auto-extracted from conversations
321-
- [Memory System](/memory-system) — Vector-based long-term memory
322-
- [Context Files](/context-files) — Static documents injected into agent context
321+
- [Memory System](../core-concepts/memory-system.md) — Vector-based long-term memory
322+
- [Context Files](../agents/context-files.md) — Static documents injected into agent context
323323

324324
<!-- goclaw-source: 1296cdbf | updated: 2026-04-11 -->

agents/creating-agents.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ These files are placed in the stable portion of the system prompt (above the cac
207207
## What's Next
208208

209209
- [Open vs. Predefined](/open-vs-predefined) — understand context isolation differences
210-
- [Context Files](/context-files) — learn about SOUL.md, IDENTITY.md, and other system files
210+
- [Context Files](../agents/context-files.md) — learn about SOUL.md, IDENTITY.md, and other system files
211211
- [Summoning & Bootstrap](/summoning-bootstrap) — how LLM generates personality files on first use
212212

213213
<!-- goclaw-source: 050aafc9 | updated: 2026-04-09 -->

agents/editing-personality.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Your agent's personality emerges from two primary configuration files:
99
- **SOUL.md**: Defines tone, values, boundaries, expertise, and operational style. This is the "who you are" file.
1010
- **IDENTITY.md**: Contains metadata like name, emoji, creature type, and avatar. This is the "what you look like" file.
1111

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.
1313

1414
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.
1515

@@ -260,7 +260,7 @@ This is governed by the `buildSelfEvolveSection()` in `internal/agent/systemprom
260260

261261
## What's Next
262262

263-
- [Context Files — Extending personality with per-user context](/context-files)
263+
- [Context Files — Extending personality with per-user context](../agents/context-files.md)
264264
- [System Prompt Anatomy — How personality gets injected into prompts](/system-prompt-anatomy)
265265
- [Creating Agents — Set up personality during agent creation](/creating-agents)
266266

agents/open-vs-predefined.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ Or switch to **predefined** later if the agent outgrows single-user use.
179179

180180
## What's Next
181181

182-
- [Context Files](/context-files) — deep dive into each file (SOUL.md, IDENTITY.md, etc.)
182+
- [Context Files](../agents/context-files.md) — deep dive into each file (SOUL.md, IDENTITY.md, etc.)
183183
- [Summoning & Bootstrap](/summoning-bootstrap) — how personality is generated for predefined agents
184184
- [Creating Agents](/creating-agents) — agent creation walkthrough
185185

agents/summoning-bootstrap.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -367,7 +367,7 @@ If you manually set USER.md at agent level before the first user chats, it's use
367367

368368
## What's Next
369369

370-
- [Context Files](/context-files) — detailed reference for each file
370+
- [Context Files](../agents/context-files.md) — detailed reference for each file
371371
- [Open vs. Predefined](/open-vs-predefined) — understand when to use each type
372372
- [Creating Agents](/creating-agents) — step-by-step agent creation
373373

agents/system-prompt-anatomy.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -414,7 +414,7 @@ This agent will:
414414
## What's Next
415415

416416
- [Editing Personality — Customize SOUL.md and IDENTITY.md](/editing-personality)
417-
- [Context Files — Add project-specific context](/context-files)
417+
- [Context Files — Add project-specific context](../agents/context-files.md)
418418
- [Creating Agents — Set up system prompt configuration](/creating-agents)
419419

420420
<!-- goclaw-source: 050aafc9 | updated: 2026-04-09 -->

channels/INDEX.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -205,6 +205,6 @@ grep -i discord ~/.goclaw/logs/gateway.log
205205

206206
## What's Next
207207

208-
- **[Development Rules](../../development-rules.md)** — Code style for channels
209-
- **[System Architecture](../../00-architecture-overview.md)** — How channels fit in
210-
- **[Gateway Protocol](../../04-gateway-protocol.md)** — WebSocket protocol details
208+
- **[Development Rules](../../core-concepts/how-goclaw-works.md)** — Code style for channels
209+
- **[System Architecture](../../core-concepts/how-goclaw-works.md)** — How channels fit in
210+
- **[Gateway Protocol](../../reference/websocket-protocol.md)** — WebSocket protocol details

channels/telegram.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -316,6 +316,6 @@ No configuration needed. Check logs for `telegram: migrating group chat` entries
316316
- [Overview](/channels-overview) — Channel concepts and policies
317317
- [Discord](/channel-discord) — Discord bot setup
318318
- [Browser Pairing](/channel-browser-pairing) — Pairing flow
319-
- [Sessions & History](/sessions-and-history) — Conversation history
319+
- [Sessions & History](../core-concepts/sessions-and-history.md) — Conversation history
320320

321321
<!-- goclaw-source: 050aafc9 | updated: 2026-04-09 -->

0 commit comments

Comments
 (0)