File size: 3,333 Bytes
116524e
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
site_name: ACE Documentation
site_description: Agentic Context Engineering  Self-Improving Language Model Agents
site_url: https://kayba-ai.github.io/agentic-context-engine/
repo_url: https://github.com/kayba-ai/agentic-context-engine
repo_name: kayba-ai/agentic-context-engine

theme:
  name: material
  custom_dir: overrides
  logo: assets/Kayba_logo_rounded.png
  favicon: assets/Kayba_logo_rounded.png
  palette:
    - scheme: default
      primary: indigo
      accent: indigo
      toggle:
        icon: material/brightness-7
        name: Switch to dark mode
    - scheme: slate
      primary: indigo
      accent: indigo
      toggle:
        icon: material/brightness-4
        name: Switch to light mode
  features:
    - navigation.tabs
    - navigation.sections
    - navigation.expand
    - navigation.top
    - search.highlight
    - search.share
    - content.code.copy
    - content.tabs.link

plugins:
  - search
  - mike:
      alias_type: symlink
      canonical_version: latest

extra:
  version:
    provider: mike
    default: latest

nav:
  - Home: index.md
  - Getting Started:
    - Installation: getting-started/installation.md
    - Setup: getting-started/setup.md
    - Quick Start: getting-started/quick-start.md
  - Concepts:
    - How ACE Works: concepts/overview.md
    - The Skillbook: concepts/skillbook.md
    - Three Roles: concepts/roles.md
    - Insight Levels: concepts/insight-levels.md
    - Update Operations: concepts/updates.md
  - Guides:
    - Full Pipeline: guides/full-pipeline.md
    - Integration Pattern: guides/integration.md
    - Prompt Engineering: guides/prompts.md
    - Async Learning: guides/async-learning.md
    - Testing: guides/testing.md
  - Pipeline Engine:
    - Overview: pipeline/index.md
    - Quick Start: pipeline/quick-start.md
    - Core Concepts: pipeline/core-concepts.md
    - Execution Model: pipeline/execution.md
    - Branching & Parallelism: pipeline/branching.md
    - Error Handling: pipeline/error-handling.md
    - Building Custom Steps: pipeline/custom-steps.md
    - API Reference: pipeline/api-reference.md
  - Integrations:
    - Overview: integrations/index.md
    - LiteLLM: integrations/litellm.md
    - LangChain: integrations/langchain.md
    - Browser-Use: integrations/browser-use.md
    - Claude Code: integrations/claude-code.md
    - Claude SDK: integrations/claude-sdk.md
    - MCP Server: integrations/mcp.md
    - MCP Client Setup: integrations/mcp-client-setup.md
    - Opik Observability: integrations/opik.md
    - OpenClaw: integrations/openclaw.md
    - Hosted API: integrations/hosted-api.md
  - API Reference: api/index.md

markdown_extensions:
  - admonition
  - pymdownx.details
  - pymdownx.superfences:
      custom_fences:
        - name: mermaid
          class: mermaid
          format: !!python/name:pymdownx.superfences.fence_code_format
  - pymdownx.highlight:
      anchor_linenums: true
  - pymdownx.inlinehilite
  - pymdownx.tabbed:
      alternate_style: true
  - pymdownx.snippets
  - attr_list
  - md_in_html
  - pymdownx.emoji:
      emoji_index: !!python/name:material.extensions.emoji.twemoji
      emoji_generator: !!python/name:material.extensions.emoji.to_svg
  - toc:
      permalink: true