From 2ddb9431b53f2c7de565568f8de1b54d660e2086 Mon Sep 17 00:00:00 2001 From: GRayHook Date: Wed, 17 Jun 2026 09:56:20 +0700 Subject: [PATCH] =?UTF-8?q?Phase=200:=20add=20src/index.ts=20shell=20?= =?UTF-8?q?=E2=80=94=20minimal=20ExtensionAPI=20entry=20for=20pi=20-e=20sm?= =?UTF-8?q?oke.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Register empty session_start handler; real tracking and reinject logic follow in later phases. Co-authored-by: Cursor --- src/index.ts | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 src/index.ts diff --git a/src/index.ts b/src/index.ts new file mode 100644 index 0000000..58ed041 --- /dev/null +++ b/src/index.ts @@ -0,0 +1,7 @@ +import type { ExtensionAPI } from "@earendil-works/pi-coding-agent"; + +export default function skillReinject(pi: ExtensionAPI): void { + pi.on("session_start", () => { + // Phase 0 shell — hooks wired in later phases + }); +}