blibliki-engine
Installation
SKILL.md
Blibliki Engine
Overview
The Blibliki engine (packages/engine) is a TypeScript audio synthesis framework built on Web Audio API. Critical: Apps consume BUILT packages from dist/, not source files. Changes require rebuilding before they appear in apps.
Monorepo Build Workflow
The #1 mistake: Modifying engine source and expecting apps to pick it up without rebuilding.
digraph build_workflow {
"Modifying engine code?" [shape=diamond];
"Edit packages/engine/src/" [shape=box];
"Run: pnpm build:packages" [shape=box, style=filled, fillcolor=yellow];
"Edit apps/grid/src/" [shape=box];
"Run: pnpm dev to test" [shape=box];
"Just reading/understanding?" [shape=diamond];
"Read code directly" [shape=box];