fix(architecture): route sys output through adapters, fix violations #7
Labels
No labels
coordination/cross-repo
coordination/needed
effort
large
effort
medium
effort
small
meta/duplicate
meta/planning
meta/wontfix
priority
high
priority
low
priority
medium
session
blocker
session
handover
session
next
status
blocked
status
done
status
in-progress
status
review
status
to-go
type
admin
type
bug
type
config
type
deployment
type
docs
type
enhancement
type
feature
type
handover
type
infrastructure
type
installation
type
maintenance
type
migration
type
research
type
security
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
DAW/daw-modul-berhtjan-cli#7
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Problem
render.lua, prompt.lua and dispatch.lua use daw.common.sys directly
instead of routing through adapters/. This violates the DAW architecture
rule: sys is only allowed in adapters/.
Detected by: fragjan code
Violations
Required changes
render.lua
prompt.lua
dispatch.lua
Additional violations (same run)
Context
render_record() is required by DAW/fragjan#90 (adapters/ui render chain).
adapters/ui will call mod.render_record(record, fields) and expects
true, nil | nil, err as return value.
Fixes applied:
pcall+_check_deps() pattern; lazy out init; all exported functions
check deps before execution
suppress comments inline per fragjan convention
is the abstraction layer; no additional adapter needed in modules
fragjan checks: fixtures exclusion and sys-check scope fixed in
DAW/fragjan; suppress mechanism verified working.
All 35 tests passing on Lua 5.1 and 5.4.