What problem does it solve?
It eliminates drift and stale AI prompt artifacts by letting you regenerate the project’s .cursor/ content from the source of truth in .ahrena/framework and .ahrena/artifacts.
Core Features & Use Cases
- Deterministic regeneration: Ensures .cursor/ is rebuilt using the Makefile target sync-cursor or the equivalent .ahrena/update.py sync-cursor workflow.
- Environment validation: Confirms required Ahrena files/directives exist (or instructs you to install/bootstrapping first) so regeneration runs in the expected context.
- Terminal-aware execution: Selects the right terminal behavior based on .ahrena/.directives (or OS inference) to avoid inconsistent command execution.
Use case: after updating Ahrena inputs (framework/artifacts) you need your editor/runtime prompt setup to match the latest project state without manually copying files.
Quick Start
Run the sync-cursor target for this repository from the project root so .cursor/ is regenerated from .ahrena/framework and .ahrena/artifacts, using make sync-cursor when available or python .ahrena/update.py --target . --sync-cursor otherwise.