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
21 changes: 14 additions & 7 deletions core-concepts/agents.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -28,16 +28,23 @@ The complete TypeScript interface for agents:
| `username` | string | ❌ | Social media username |
| `system` | string | ❌ | System prompt override |
| `templates` | object | ❌ | Custom prompt templates |
all?: string[]; // General style rules
chat?: string[]; // Chat-specific style
post?: string[]; // Post-specific style
};

// Advanced
templates?: Templates; // Custom prompt templates

### Style Object Structure

```typescript
style: {
all?: string[]; // General style rules
chat?: string[]; // Chat-specific style
post?: string[]; // Post-specific style
}
```

### Templates Object Structure

```typescript
templates?: Templates; // Custom prompt templates
```

## Working Example

```typescript
Expand Down
2 changes: 0 additions & 2 deletions deep-dive/bootstrap/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,6 @@ title: "Bootstrap Plugin Overview"
description: "Comprehensive documentation for @elizaos/plugin-bootstrap - the core message handler and event system for ElizaOS agents"
---

# Plugin Bootstrap Documentation

Welcome to the comprehensive documentation for the `@elizaos/plugin-bootstrap` package - the core message handler and event system for ElizaOS agents.

## 📚 Documentation Structure
Expand Down
2 changes: 0 additions & 2 deletions deep-dive/real-world-patterns.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,6 @@ title: "Real-World Plugin and Project Patterns"
description: "Practical patterns and structures used in the Eliza framework based on real implementations"
---

# Real-World Plugin and Project Patterns in Eliza

This guide documents the actual patterns and structures used in the Eliza framework based on examination of real plugin implementations and project structures.

## Plugin Structure Patterns
Expand Down
2 changes: 2 additions & 0 deletions docs.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,10 @@
"pages": [
"guides/plugin-developer-guide",
"guides/plugin-publishing-guide",
"guides/compose-state-guide",
{
"group": "Plugin Migration (0.x to 1.x)",
"icon": "arrow-right-arrow-left",
"pages": [
"guides/plugin-migration/overview",
"guides/plugin-migration/migration-guide",
Expand Down
Loading