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
1 change: 1 addition & 0 deletions .github/scripts/validate_plugins.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@

ALLOWED_CATEGORIES = {
"PerceptionStrategy",
"PredictionStrategy",
"LocalizationStrategy",
"MappingStrategy",
"PlanningStrategy",
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ A central registry of community-maintained plugins for [AVLite](https://github.c
Use one or more of the following standard categories for `category`. If your plugin doesn't fit, open an issue to propose a new one rather than inventing one ad hoc:

- `PerceptionStrategy` — sensing, detection, tracking, segmentation, fusion
- `PredictionStrategy` — trajectory and motion forecasting sub-strategies
- `LocalizationStrategy` — pose estimation, SLAM-based localization
- `MappingStrategy` — map building, SLAM mapping, environment representation
- `PlanningStrategy` — global/local planners, behavior planning, decision-making
Expand Down Expand Up @@ -64,4 +65,4 @@ If a plugin is no longer maintained or is being renamed, open a PR that updates

## License

This registry is distributed under the terms of the [LICENSE](LICENSE) file in this repository. Each listed plugin is governed by the license of its own repository.
This registry is distributed under the terms of the [LICENSE](LICENSE) file in this repository. Each listed plugin is governed by the license of its own repository.
8 changes: 8 additions & 0 deletions plugins.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
# Each plugin entry should follow the structure below

plugins:
- name: basic_predictor
description: LSTM trajectory prediction plugin for AVLite
repository: https://github.com/Murdism/basic_predictor
version: latest
author: Murdism
category:
- PredictionStrategy

- name: sample_avlite_plugin
description: Sample AVLite plugin demonstrating the plugin interface
repository: https://github.com/AV-Lab/sample-avlite-plugin
Expand Down
Loading