Skip to content

Commit 47d5b3c

Browse files
committed
Fix links
1 parent 218ecca commit 47d5b3c

File tree

8 files changed

+28
-28
lines changed

8 files changed

+28
-28
lines changed

crates/wasmind/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,6 @@ This is a library crate for building applications - for conceptual understanding
1616

1717
## Links
1818

19-
- **📚 [Wasmind Book](https://silasmarvin.github.io/wasmind/)** - Complete user and developer guides
20-
- **💻 [Wasmind_cli](../Wasmind_cli/)** - Reference implementation showing how to use this library
21-
- **📖 [API Documentation](https://docs.rs/Wasmind)** - Complete API reference
19+
- **📚 [wasmind Book](https://silasmarvin.github.io/wasmind/)** - Complete user and developer guides
20+
- **💻 [wasmind_cli](https://github.com/silasmarvin/wasmind/tree/main/crates/wasmind_cli/)** - Reference implementation showing how to use this library
21+
- **📖 [API Documentation](https://docs.rs/wasmind)** - Complete API reference

crates/wasmind_actor_bindings/README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,17 +8,17 @@ No Rust is exported from this crate! It is designed to be included as a componen
88

99
```
1010
[package.metadata.component.target.dependencies]
11-
"Wasmind:actor" = "0.1"
11+
"wasmind:actor" = "0.1"
1212
```
1313

1414
You can then import these interfaces in your WIT definition. E.G:
1515

1616
```
1717
world your-world {
18-
import Wasmind:actor/host-info@0.1.0;
19-
import Wasmind:actor/messaging@0.1.0;
20-
import Wasmind:actor/http@0.1.0;
21-
import Wasmind:actor/logger@0.1.0;
18+
import wasmind:actor/host-info@0.1.0;
19+
import wasmind:actor/messaging@0.1.0;
20+
import wasmind:actor/http@0.1.0;
21+
import wasmind:actor/logger@0.1.0;
2222
2323
... your exports
2424
}
@@ -34,5 +34,5 @@ The WIT definitions specify how actors:
3434

3535
## Links
3636

37-
- **🔧 [Actor Development Utils](../Wasmind_actor_utils/)** - High-level abstractions for building actors
38-
- **🎭 [Example Actors](../../actors/)** - Reference implementations using these bindings
37+
- **🔧 [Actor Development Utils](https://github.com/silasmarvin/wasmind/tree/main/crates/wasmind_actor_utils/)** - High-level abstractions for building actors
38+
- **🎭 [Example Actors](https://github.com/silasmarvin/wasmind/tree/main/actors/)** - Reference implementations using these bindings

crates/wasmind_actor_loader/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,6 @@ Dynamic loading and dependency resolution system for Wasmind WASM actor componen
3131

3232
## Links
3333

34-
- **📚 [Wasmind Book](https://silasmarvin.github.io/wasmind/)** - Complete system documentation
35-
- **⚙️ [Configuration Guide](../Wasmind_config/)** - Actor configuration reference
36-
- **📖 [API Documentation](https://docs.rs/Wasmind_actor_loader)** - Complete API reference
34+
- **📚 [wasmind Book](https://silasmarvin.github.io/wasmind/)** - Complete system documentation
35+
- **⚙️ [Configuration Guide](https://github.com/silasmarvin/wasmind/tree/main/crates/wasmind_config/)** - Actor configuration reference
36+
- **📖 [API Documentation](https://docs.rs/wasmind_actor_loader)** - Complete API reference

crates/wasmind_actor_utils/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@ It is not required to use the traits, macros, etc... in this crate to build acto
99
## Links
1010

1111
- **📚 [Actor Development Guide](https://silasmarvin.github.io/wasmind/developer-guide/building-actors.html)** - Complete tutorial for building actors
12-
- **🎭 [Example Actors](../../actors/)** - Reference implementations using these utilities
13-
- **📖 [API Documentation](https://docs.rs/Wasmind_actor_utils)** - Complete API reference
12+
- **🎭 [Example Actors](https://github.com/silasmarvin/wasmind/tree/main/actors/)** - Reference implementations using these utilities
13+
- **📖 [API Documentation](https://docs.rs/wasmind_actor_utils)** - Complete API reference

crates/wasmind_actor_utils_common_messages/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Common message types for inter-actor communication in the Wasmind actor system.
66

77
## Important Notes
88

9-
**If you're building a Rust actor, use [`Wasmind_actor_utils`](../Wasmind_actor_utils/) instead of this crate directly.** This crate is re-exported from `Wasmind_actor_utils` for convenience.
9+
**If you're building a Rust actor, use [`wasmind_actor_utils`](https://github.com/silasmarvin/wasmind/tree/main/crates/wasmind_actor_utils/) instead of this crate directly.** This crate is re-exported from `wasmind_actor_utils` for convenience.
1010

1111
**This is not the "end all be all" of messages in Wasmind.** Wasmind can pass any message type that can be represented as `Vec<u8>` bytes - this includes images, binary data, custom formats, literally anything. These common messages are just JSON-serialized text messages that provide convenient, standardized communication patterns for actors.
1212

@@ -19,5 +19,5 @@ Common message types for inter-actor communication in the Wasmind actor system.
1919

2020
## Links
2121

22-
- **[Wasmind_actor_utils](../Wasmind_actor_utils/)** - Main utilities crate for Rust actor development
23-
- **[Wasmind_llm_types](../Wasmind_llm_types/)** - LLM type definitions used by these messages
22+
- **[wasmind_actor_utils](https://github.com/silasmarvin/wasmind/tree/main/crates/wasmind_actor_utils/)** - Main utilities crate for Rust actor development
23+
- **[wasmind_llm_types](https://github.com/silasmarvin/wasmind/tree/main/crates/wasmind_llm_types/)** - LLM type definitions used by these messages

crates/wasmind_actor_utils_macros/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ Procedural macros for building Rust actors in the Wasmind actor system. This cra
44

55
[![docs.rs](https://docs.rs/wasmind_actor_utils_macros/badge.svg)](https://docs.rs/wasmind_actor_utils_macros)
66

7-
These macros are re-exported through [`Wasmind_actor_utils`](../Wasmind_actor_utils/) for convenient access when building actors.
7+
These macros are re-exported through [`wasmind_actor_utils`](https://github.com/silasmarvin/wasmind/tree/main/crates/wasmind_actor_utils/) for convenient access when building actors.
88

99
## Links
1010

11-
- **[Wasmind_actor_utils](../Wasmind_actor_utils/)** - Main utilities crate for Rust actor development
11+
- **[wasmind_actor_utils](https://github.com/silasmarvin/wasmind/tree/main/crates/wasmind_actor_utils/)** - Main utilities crate for Rust actor development

crates/wasmind_cli/README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -84,9 +84,9 @@ wasmind_cli -c path/to/your/config.toml
8484
### Create Your Own Actor Configurations
8585

8686
- Study `example_configs/` - Ready-to-run sample configurations
87-
- Explore `../../actors/` - Available actor implementations you can use
87+
- Explore the [actors directory](https://github.com/silasmarvin/wasmind/tree/main/actors/) - Available actor implementations you can use
8888
- Build custom actors - see [Creating Actors Guide](https://silasmarvin.github.io/wasmind/developer-guide/building-actors.html)
89-
- See the [Configuration Guide](../wasmind_config/) for creating custom setups
89+
- See the [Configuration Guide](https://github.com/silasmarvin/wasmind/tree/main/crates/wasmind_config/) for creating custom setups
9090

9191
### Debugging Configurations
9292

@@ -133,7 +133,7 @@ wasmind_cli info
133133
# Clean the actor cache (removes compiled WASM components)
134134
# Actors are compiled and cached on first use for faster subsequent loads
135135
wasmind_cli clean
136-
# See [wasmind_actor_loader](../wasmind_actor_loader/) for details on caching
136+
# See [wasmind_actor_loader](https://github.com/silasmarvin/wasmind/tree/main/crates/wasmind_actor_loader/) for details on caching
137137

138138
# Validate and debug configuration files
139139
wasmind_cli check -c example_configs/code_with_experts.toml
@@ -163,10 +163,10 @@ The CLI uses TOML configuration files to define your actor setup. Configurations
163163
- Actor-specific overrides
164164
- LLM provider configuration via LiteLLM
165165

166-
The example configurations show different patterns you can use, but you're free to create any actor configuration that suits your needs. See the [Configuration Guide](../wasmind_config/) for detailed reference.
166+
The example configurations show different patterns you can use, but you're free to create any actor configuration that suits your needs. See the [Configuration Guide](https://github.com/silasmarvin/wasmind/tree/main/crates/wasmind_config/) for detailed reference.
167167

168168
## Links
169169

170-
- **📚 [Wasmind Book](https://silasmarvin.github.io/wasmind/)** - Complete user guides and concepts
171-
- **⚙️ [Configuration Guide](../wasmind_config/)** - Detailed configuration reference
172-
- **🎭 [Actor Examples](../../actors/)** - Available actors and their capabilities
170+
- **📚 [wasmind Book](https://silasmarvin.github.io/wasmind/)** - Complete user guides and concepts
171+
- **⚙️ [Configuration Guide](https://github.com/silasmarvin/wasmind/tree/main/crates/wasmind_config/)** - Detailed configuration reference
172+
- **🎭 [Actor Examples](https://github.com/silasmarvin/wasmind/tree/main/actors/)** - Available actors and their capabilities

crates/wasmind_llm_types/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,5 @@ These types are used throughout the Wasmind actor ecosystem for consistent LLM i
1010

1111
## Links
1212

13-
- **[Wasmind_actor_utils_common_messages](../Wasmind_actor_utils_common_messages/)** - Common message types that use these LLM types
13+
- **[wasmind_actor_utils_common_messages](https://github.com/silasmarvin/wasmind/tree/main/crates/wasmind_actor_utils_common_messages/)** - Common message types that use these LLM types
1414
- **[LiteLLM](https://www.litellm.ai/)** - Source of many of these type definitions

0 commit comments

Comments
 (0)