@windsland52/maa-log-runtime
v3.0.1
Published
Runtime orchestration package for Maa log analysis.
Readme
@windsland52/maa-log-runtime
Runtime orchestration package for Maa log analysis.
Responsibility
- Define execution adapter interface (
RuntimeExecutionAdapter) - Run analysis workflow through
analyzeLogContentWith - Produce
KernelOutputvia@windsland52/maa-log-kernel
This package does not own platform-specific input logic (zip/folder IO).
Exports
analyzeLogContentWith(adapter, input)DEFAULT_CORE_PARSE_OPTIONSRuntimeExecutionAdapterAnalyzeLogContentInput- Re-exported kernel types (
KernelOutput,ParseFileOptions)
Usage pattern
- Provide an adapter with:
parse(input) => { tasks, events }buildStatistics(tasks) => KernelStatistics
- Call
analyzeLogContentWith. - In this repository, use
@windsland52/maa-log-adapteras the concrete adapter.
Dependency policy
- Depends on
@windsland52/maa-log-kernelonly - Keep runtime generic and adapter-driven
