Skip to content

odpm plugins and extensions (4.4+)

AI-translated from Russian.

odpm 4.4+ adds a host extension API: prepare steps, compose fragments, and lifecycle hooks. Plugins do not get direct access to mutable Config — only frozen ExtensionHostContext.

Extension API version (4.6+)

Current API: EXTENSION_API_VERSION = "1.1" (dev_project/extensions/api.py). Supported: 1.0, 1.1; modules without EXTENSION_API_VERSION are treated as 1.0. The host validates version when loading entry points and .odpm/plugins/*.py. In your plugin:

from dev_project.extensions.api import EXTENSION_API_VERSION, assert_extension_api_compatible

assert_extension_api_compatible(EXTENSION_API_VERSION)

Breaking changes to pluggy protocols or manifest hooks require a major API bump. Policy: ADR-004.

Three ways to extend a project

Mechanism Declared in When it runs
Manifest services odpm.json v2 → services Prepare compose.fragments; plan compose.fragment.<name>
Manifest hooks odpm.json v2 → hooks post_clone after git materialize; post_prepare after prepare; pre_up before compose up
Python entry points package pyproject.toml Pluggy: odpm.prepare_steps, odpm.hooks
Project-local plugins .odpm/plugins/*.py or extensions.local Loaded at bootstrap (sandboxed to project dir)

v2 field details: odpm.json. ADR: adr-001-extensions-and-manifest-v2.md.

Declarative service (Mailpit)

Test SMTP with web UI on port 8025. Add to nested manifest v2:

{
  "manifest_schema": 2,
  "requires_odpm": "4.5.0",
  "services": {
    "mailpit": {
      "image": "axllent/mailpit",
      "restart": "unless-stopped",
      "ports": ["8025:8025", "1025:1025"]
    }
  }
}

Sidecars may set user and tty (same as service_patches):

"services": {
  "armtek_test": {
    "image": "autoparts_env:emulator",
    "user": "root",
    "tty": true,
    "volumes": ["${DIGITAL_AUTOPARTS_ENV_DIR}/data:/data:Z"]
  }
}

Same spec in code: dev_project.extensions.reference.mailpit.MAILPIT_SERVICE_SPEC.

After odpm up the service appears in generated docker-compose.yml ({COMPOSE_SERVICE_FRAGMENTS} block). Materialize artifacts: .odpm/compose/fragments/mailpit.yml (gitignored).

Patch built-in services (service_patches, 4.6+)

Names odoo, db, postgres cannot appear in services — use patches only. Policy: ADR-009.

"service_patches": {
  "odoo": {
    "environment": {
      "CUSTOM_METRIC": "1"
    }
  }
}

odpm plan shows compose.patch.odoo (preview); patches apply at compose.generate.

command / entrypoint for sidecars (4.6+)

Exec form only (JSON string array) in services.<name>:

"services": {
  "worker": {
    "image": "busybox:latest",
    "command": ["sh", "-c", "sleep infinity"]
  }
}

The odoo start command stays owned by the generator; override via service_patches.odoo.command only when explicitly needed.

Lifecycle hooks in manifest

"hooks": {
  "post_clone": [
    ["./scripts/after-clone.sh"]
  ],
  "post_prepare": [
    ["./scripts/notify.sh", "prepare-done"],
    "mycompany.odpm.hooks.warmup"
  ],
  "pre_up": [
    ["docker", "network", "create", "odpm-dev", "||", "true"]
  ]
}

Each element is either argv (string array, runs in project_dir without a shell) or a plugin id (string) for the pluggy hook runner.

Argv supports ${VAR} / ${VAR:-default} (Compose-style): expanded at hook execution from process env → project .env → inline default. The subprocess receives merged env (process + missing keys from .env). Example sidecar image build:

"hooks": {
  "post_prepare": [[
    "docker", "build",
    "-f", "${DIGITAL_AUTOPARTS_ENV_DIR}/server_launch_system/alpine_dockerfile",
    "-t", "autoparts_env:emulator",
    "${DIGITAL_AUTOPARTS_ENV_DIR}"
  ]]
}

services / service_patches use the same substitution rules for string fields (image, volumes[], command[], environment, …) — expanded when the manifest is loaded with EnvResolver.

Order per ADR-004:

  1. Git materialize
  2. hooks.post_clone (when configured)
  3. All prepare steps (built-in + odpm.prepare_steps + local plugins), sorted by order
  4. hooks.post_prepare
  5. Runtime: debug profile, IDE, database drift
  6. hooks.pre_up
  7. docker compose up

odpm plan shows hooks.*, compose.fragment.<service>, and compose.patch.<service> steps when configured.

Prepare step order field

Lower order runs earlier among extension steps (built-in order is fixed in the registry). Conflicting id with a built-in step → ValueError on registration.

Shell hook failure → PipelineError with the command exit code.

Python plugin: compose fragment

# my_odpm_mailpit/__init__.py
from dev_project.extensions import ExtensionHostContext, register_compose_fragment
from dev_project.extensions.reference.mailpit import MAILPIT_SERVICE_SPEC

class MailpitFragment:
    name = "mailpit"

    def compose_services(self, ctx: ExtensionHostContext) -> dict:
        return {"mailpit": dict(MAILPIT_SERVICE_SPEC)}

def _register():
    register_compose_fragment("mailpit", MailpitFragment())

Register on package import or via entry point (see below).

Patch built-in services from Python (API 1.1+)

Optional compose_service_patches on a compose fragment (same rules as manifest service_patches):

def compose_service_patches(self, ctx: ExtensionHostContext) -> dict:
    return {"odoo": {"environment": {"MY_FLAG": "1"}}}

Nested dependency services (4.6+)

With use_oca_dependencies, v2 services / service_patches from dependency odpm.json files are inherited into host compose after project.map_folders. On name conflict the host manifest wins. See ADR-004.

Python plugin: prepare step

[project.entry-points."odpm.prepare_steps"]
my_step = "my_odpm_plugin.steps:plugin_factory"
from dataclasses import dataclass
from dev_project.prepare.helpers import make_plan_step
from dev_project.prepare.types import PrepareContext

@dataclass(frozen=True)
class MyPrepareStep:
    id: str = "mycompany.custom.step"
    description: str = "Custom prepare work"
    order: int = 500

    def evaluate(self, ctx: PrepareContext):
        return make_plan_step(self.id, self.description, "run", True, "always run")

    def execute(self, ctx: PrepareContext) -> None:
        ...

def plugin_factory():
    return MyPrepareStep()

evaluate must be side-effect freeodpm plan calls only evaluate.

Python plugin: lifecycle hook runner

[project.entry-points."odpm.hooks"]
warmup = "my_odpm_plugin.hooks:WarmupRunner"
class WarmupRunner:
    name = "mycompany.odpm.hooks.warmup"

    def run_post_clone(self, ctx) -> None:
        ...

    def run_post_prepare(self, ctx) -> None:
        ...

    def run_pre_up(self, ctx) -> None:
        ...

Id in manifest ("mycompany.odpm.hooks.warmup") must match runner name.

Example package pyproject.toml

[project]
name = "odpm-services-mailpit"
version = "0.1.0"
dependencies = ["odpm>=4.4"]

[project.entry-points."odpm.hooks"]
# optional lifecycle runners

[project.entry-points."odpm.prepare_steps"]
# optional prepare steps

Install the package in the host venv (pip install -e .) next to odpm.

Project-local plugins (4.5+)

Without a separate pip package, place modules under .odpm/plugins/ in the project (this directory only; no .. in module names). Optional allow-list in manifest v2:

"extensions": {
  "local": ["mailpit_local"]
}

Loads project_dir/.odpm/plugins/mailpit_local.py. Example fixture: tests/fixtures/sample_plugin/.

Cookbook (minimal plugin)

  1. Manifest v2 services.mailpit or register_compose_fragment in Python.
  2. Prepare step with side-effect-free evaluate + execute for file writes.
  3. Hook runner with name matching the id in hooks.post_prepare.
  4. pip install -e . or .odpm/plugins/my_plugin.py.
  5. Run odpm plan — verify compose.fragment.*, hooks.*, and extension prepare steps.

Template pyproject.toml: tests/fixtures/sample_plugin/pyproject.toml.

Limitations

  • Container-side ContainerConfig stays stdlib-only (no new PyPI deps in the image).
  • Compose YAML is generated by the host engine dev_project/yaml/ (ruamel.yaml); YAML anchors/merge aliases are not supported.
  • Name conflict: plugin compose fragment overwrites a same-named service from manifest.

See also

  • Generated files.odpm/compose/fragments/
  • Declarative sidecar services — Mailpit section above and the extension mechanisms table
  • Deprecated drafts in dev_project/plugins/ (services_ru.md, todo_ru.md) — redirect here