16 lines
447 B
Python
16 lines
447 B
Python
|
|
"""Codex distributor (PRD §6.4 FR-X1; T03).
|
||
|
|
|
||
|
|
Renders an approved Solution Pattern into an ``AGENTS.md`` snippet — Codex's native
|
||
|
|
repo-convention surface. Identical agnostic body to the other flavors (FR-A3: one
|
||
|
|
pattern, expressible everywhere); only the target file differs.
|
||
|
|
"""
|
||
|
|
|
||
|
|
from __future__ import annotations
|
||
|
|
|
||
|
|
from .base import BaseDistributor
|
||
|
|
|
||
|
|
|
||
|
|
class CodexDistributor(BaseDistributor):
|
||
|
|
flavor = "codex"
|
||
|
|
target_path = "AGENTS.md"
|