Skip to main content

kollabor-plugins

kollabor-plugins is the plugin framework for Kollabor.

It provides plugin discovery, safe instantiation, lifecycle management, status collection, the base plugin class, and SDK helpers. Concrete plugins live in the repo-level plugins/ directory or installed package plugin locations.

Current Role

  • Discover plugin classes from development and installed plugin directories.
  • Instantiate plugins with shared dependencies such as event bus, config, and services.
  • Provide a stable BasePlugin lifecycle for initialization, hook registration, status, config widgets, and shutdown.
  • Collect plugin startup/status information without crashing the host app.
  • Provide utility helpers for safe optional-method calls.

Architecture

Module Responsibility
base.py BasePlugin lifecycle and default methods
discovery.py plugin class discovery
factory.py dependency-aware plugin construction
registry.py plugin registration and lifecycle registry
collector.py status/startup info collection
plugin_sdk.py helper API for plugin authors
plugin_utils.py safe calls, metadata, interface validation

Plugin Shape

from kollabor_plugins import BasePlugin


class MyPlugin(BasePlugin):
    name = "my_plugin"
    version = "1.0.0"
    description = "Adds one useful thing"

    async def initialize(self, args=None, **kwargs):
        return None

    async def register_hooks(self):
        return None

    async def shutdown(self):
        return None

Discovery order:

  1. ./plugins/
  2. Installed package plugin locations.

Lifecycle:

  1. Discover plugin classes.
  2. Instantiate with dependencies.
  3. Call initialize().
  4. Call register_hooks().
  5. Call shutdown() on app exit.

Known Gaps

  • Plugin metadata and config schemas are partly convention-based; stronger typed metadata would help UI and docs generation.
  • Discovery order and dependency injection behavior should be covered by more integration tests across local and installed plugin layouts.
  • Plugin shutdown must remain best-effort and non-blocking; long-running plugin tasks need clearer ownership and cancellation guidance.

Roadmap

Phase 1: Authoring clarity

  • Add a plugin author guide generated from real BasePlugin methods.
  • Document config widget and status-line conventions.
  • Add examples for hook-only, command, fullscreen, and background-task plugins.

Phase 2: Lifecycle hardening

  • Add tests for plugin discovery, instantiation failures, and shutdown failures.
  • Track plugin-owned tasks/resources explicitly.
  • Make startup/status collection easier to inspect from CLI and engine surfaces.

Phase 3: Packaging and marketplace readiness

  • Normalize plugin metadata fields for installed packages.
  • Document compatibility/version expectations for plugins.
  • Prepare a stable manifest format if plugins move toward external distribution.

Development

Targeted validation examples:

python -m py_compile packages/kollabor-plugins/src/kollabor_plugins/*.py
python -m pytest tests/unit/commands/test_all_command_handlers.py -q

Dependencies

  • kollabor-events

License

MIT

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

kollabor_plugins-0.5.23.tar.gz (18.6 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

kollabor_plugins-0.5.23-py3-none-any.whl (21.4 kB view details)

Uploaded Python 3

File details

Details for the file kollabor_plugins-0.5.23.tar.gz.

File metadata

  • Download URL: kollabor_plugins-0.5.23.tar.gz
  • Upload date:
  • Size: 18.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.12.13

File hashes

Hashes for kollabor_plugins-0.5.23.tar.gz
Algorithm Hash digest
SHA256 6895a6586ef0333ca82e7d5c086940a8c56dcb614293a5f758c34462660ebc13
MD5 ab2bb4e5e17e543a0ab6d4f81832ab66
BLAKE2b-256 b8f7956e089bc13d07275f5458572c0f3035845c757582a9333ca9119a5abf34

See more details on using hashes here.

File details

Details for the file kollabor_plugins-0.5.23-py3-none-any.whl.

File metadata

File hashes

Hashes for kollabor_plugins-0.5.23-py3-none-any.whl
Algorithm Hash digest
SHA256 e95d2bcf1ce7a6f0e1c1009e460377d6cba713af36a0ffe3fe9290f4bab3924b
MD5 c08fe795b476933fa12b4fd659e46582
BLAKE2b-256 66bc03a600e49eafc8cc370124ebe5b8f9c6ad94f5d9a9649d5276b92622c96a

See more details on using hashes here.

Release history Release notifications | RSS feed

1.0.1

2 files

1.0.0

2 files

0.7.2

2 files

0.7.1

2 files

0.7.0

2 files

0.6.1

2 files

0.6.0

2 files

0.5.24

2 files

This release

0.5.23 This release

2 files

0.5.22

2 files

0.5.20

2 files

0.5.19

2 files

0.5.18

2 files

0.5.16

2 files

0.5.15

2 files

0.5.14

2 files

0.5.13

2 files

0.5.12

2 files

0.5.11

2 files

0.5.8

2 files

0.5.7

2 files

0.5.5

2 files

0.4.22

2 files

0.4.21

2 files

0.4.19

2 files

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page