# PluginManifest

**Kind:** Interface

**Source:** [`atloria-monorepo/libs/agent-core/src/plugins/plugin-types.ts`](https://github.com/sherkety/atloria/blob/main/atloria-monorepo/libs/agent-core/src/plugins/plugin-types.ts#L16)

Plugin System Type Definitions

Defines the contract for Atloria's plugin architecture. Plugins let users
extend the agent with custom commands, agents, skills, and hooks by dropping
markdown files with YAML frontmatter into a plugins directory.

Inspired by Claude Code's plugin architecture.

## Properties

| Property | Type |
|---|---|
| `name` | `string` |
| `version` | `string` |
| `description` | `string` |
| `author` | `string | { name: string; email?: string }` |
