16 lines
447 B
Python
16 lines
447 B
Python
|
|
"""Grok distributor (PRD §6.4 FR-X1; T03).
|
||
|
|
|
||
|
|
Renders an approved Solution Pattern into Grok's native instruction format. Defaults
|
||
|
|
to a ``.grok/instructions.md`` snippet; the same agnostic body as the other flavors
|
||
|
|
(FR-A3), overridable via ``rendering_hints["grok"]``.
|
||
|
|
"""
|
||
|
|
|
||
|
|
from __future__ import annotations
|
||
|
|
|
||
|
|
from .base import BaseDistributor
|
||
|
|
|
||
|
|
|
||
|
|
class GrokDistributor(BaseDistributor):
|
||
|
|
flavor = "grok"
|
||
|
|
target_path = ".grok/instructions.md"
|