Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ If you’re experimenting with Evolve or exploring on‑the‑job learning for a
- [Installation](docs/installation/index.md) - Setup instructions for supported platforms
- [Configuration](docs/guides/configuration.md) - Environment variables and backend options
- [CLI Reference](docs/reference/cli.md) - Command-line interface documentation
- [Evolve Lite](docs/integrations/evolve-lite.md) - Lightweight Claude Code plugin mode
- [Evolve Lite](docs/integrations/claude/evolve-lite.md) - Lightweight Claude Code plugin mode
- [Claude Code Demo](docs/tutorials/claude-code-demo.md) - End-to-end demo walkthrough
- [Policies](docs/reference/policies.md) - Policy support and schema

Expand Down
2 changes: 1 addition & 1 deletion docs/examples/hello_world/bob.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ uv init
```

## Step 2: Install Evolve
Install Evolve by following the [installation instructions](../../installation/index.md), or run:
Install Evolve by following the [installation instructions](../../installation/index.md#bob-quick-start), or run:
```bash
curl -fsSL https://raw.githubusercontent.com/AgentToolkit/altk-evolve/main/platform-integrations/install.sh | bash -s -- install --platform bob --mode lite
```
Expand Down
2 changes: 1 addition & 1 deletion docs/examples/hello_world/claude.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ docker run --rm -it my-claude bash
```

## Step 2: Install Evolve
Install Evolve by following the [installation instructions](../../installation/index.md)
Install Evolve by following the [installation instructions](../../installation/index.md#claude-code-plugin-marketplace)

## Step 3: Running in Claude Code
In a terminal, run:
Expand Down
2 changes: 1 addition & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ Evolve is a system designed to help agents improve over time by learning from th

## Integrations and Tutorials

- [Evolve Lite](integrations/evolve-lite.md): Lightweight Claude Code integration with local entity storage.
- [Evolve Lite (Claude Code)](integrations/claude/evolve-lite.md): Lightweight Claude Code integration with local entity storage.
- [Claude Code Demo](tutorials/claude-code-demo.md): Run the filesystem demo with Claude Code and the Evolve MCP server.
- [Hello World with IBM Bob](examples/hello_world/bob.md): A simple Bob walkthrough that shows how memory gets learned.

Expand Down
2 changes: 2 additions & 0 deletions docs/installation/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,14 @@
```bash
curl -fsSL https://raw.githubusercontent.com/AgentToolkit/altk-evolve/main/platform-integrations/install.sh | bash -s -- install --platform bob --mode lite
```
Next: [Hello World with IBM Bob](../examples/hello_world/bob.md)

### Claude Code Plugin Marketplace
```bash
claude plugin marketplace add AgentToolkit/altk-evolve
claude plugin install evolve-lite
```
Next: [Hello World with Claude Code](../examples/hello_world/claude.md)

### Download Install Script
```bash
Expand Down
2 changes: 1 addition & 1 deletion mkdocs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ nav:
- CLI: reference/cli.md
- Policies: reference/policies.md
- Integrations:
- Evolve Lite: integrations/evolve-lite.md
- Evolve Lite (Claude Code): integrations/claude/evolve-lite.md
- Tutorials:
- Hello World (IBM Bob IDE): examples/hello_world/bob.md
- Claude Code Demo: tutorials/claude-code-demo.md
Expand Down
2 changes: 1 addition & 1 deletion platform-integrations/claude/plugins/evolve-lite/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ You can also manually invoke `/evolve-lite:learn` at any time.

## Example Walkthrough

See the [Evolve Lite guide](../../../../docs/integrations/evolve-lite.md#example-walkthrough) for a step-by-step example showing the full learn-then-recall loop across two sessions.
See the [Evolve Lite guide](../../../../docs/integrations/claude/evolve-lite.md#example-walkthrough) for a step-by-step example showing the full learn-then-recall loop across two sessions.

## Skills Included

Expand Down
Loading