Skip to content

Commit

Permalink
fix: remove duplicate documentation in plugins.md (#3764)
Browse files Browse the repository at this point in the history
Remove duplicate documentation.

Co-authored-by: Odilitime <[email protected]>
  • Loading branch information
notorious-d-e-v and odilitime authored Mar 4, 2025
1 parent 0cfce9e commit 3ff8bbc
Showing 1 changed file with 0 additions and 40 deletions.
40 changes: 0 additions & 40 deletions docs/docs/core/plugins.md
Original file line number Diff line number Diff line change
Expand Up @@ -302,46 +302,6 @@ packages/
],
```

## Using Your Custom Plugins
Plugins that are not in the official registry for ElizaOS can be used as well. Here's how:

### Installation

1. Upload the custom plugin to the packages folder:

```
packages/
├─plugin-example/
├── package.json
├── tsconfig.json
├── src/
│ ├── index.ts # Main plugin entry
│ ├── actions/ # Custom actions
│ ├── providers/ # Data providers
│ ├── types.ts # Type definitions
│ └── environment.ts # Configuration
├── README.md
└── LICENSE
```

2. Add the custom plugin to your project's dependencies in the agent's package.json:

```json
{
"dependencies": {
"@elizaos/plugin-example": "workspace:*"
}
}
```

3. Import the custom plugin to your agent's character.json

```json
"plugins": [
"@elizaos/plugin-example",
],
```

## FAQ

### What exactly is a plugin in ElizaOS?
Expand Down

0 comments on commit 3ff8bbc

Please sign in to comment.