Welcome to the official community plugin registry for LAO (Local AI Orchestrator)!
This is the place to discover, share, and contribute plugins that supercharge your local AI workflows.
🚀 Explore plugins on our site:
https://abendrothj.github.io/lao-plugins
LAO is an offline, agentic workflow engine for chaining local AI models and plugins into powerful, prompt-driven pipelines. This repo powers the plugin ecosystem—open to all!
Plugins live in /plugins/YourPluginName/:
/plugins/
  /MyPlugin/
    plugin.yaml     # Plugin metadata (manifest, see below)
    README.md       # Usage/install info
    [binaries, examples, source, etc.]
name: MyAwesomePlugin
version: 1.0.0
description: Adds next-gen AI processing to LAO
author: Contributor Name
license: MIT
repository: https://github.com/yourusername/my-awesome-plugin
tags: [ai, processing, text]
capabilities:
  - name: summarize
    description: Summarizes text with LLM
    input_type: text
    output_type: text
compatible_core: 0.5.0
dependencies: []
To use plugins:
- Browse or search plugins on the site.
 - Each plugin's 
README.mdhas install/use instructions. - Check 
plugin.yamlfor compatibility/version info. 
To contribute a new plugin:
- Fork this repo, add a new directory to 
/plugins/. - Include your 
plugin.yaml,README.md, and binaries (if distributing). - Submit a Pull Request (see CONTRIBUTING.md)!
 
plugin.yamlmanifest: required fields as above.- Documentation (
README.md): how to install/use, contact. - All distributed binaries built for major OS targets, where needed.
 - List dependencies and special requirements.
 
Best starting point: plugin-template
See CONTRIBUTING.md for full details!
- Fork, branch, PR—just like any open source repo.
 - We welcome all contributions that enhance LAO's local agentic workflows.
 
- Plugin-specific issues: check their README or linked repo.
 - General help/questions? Open an issue here.
 - For engine/core issues: visit LAO main repo.
 
Each community plugin: see its own license.
This registry is MIT-licensed.
Built for the LAO ecosystem with GitHub Pages & Jekyll.
Want to help LAO grow? Build and contribute a plugin!