forked from sting8k/pi-vcc
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.ts
More file actions
18 lines (17 loc) · 798 Bytes
/
Copy pathindex.ts
File metadata and controls
18 lines (17 loc) · 798 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import type { ExtensionAPI } from "@earendil-works/pi-coding-agent";
import { scaffoldSettings } from "./src/core/settings";
import { registerBeforeCompactHook } from "./src/hooks/before-compact";
import { registerProactiveThresholdHook } from "./src/hooks/proactive-threshold";
import { registerPiVccCommand } from "./src/commands/pi-vcc";
import { registerVccRecallCommand } from "./src/commands/vcc-recall";
import { registerRecallTool } from "./src/tools/recall";
import { registerInvisibleContinue } from "./src/core/invisible-continue";
export default (pi: ExtensionAPI) => {
scaffoldSettings();
registerInvisibleContinue(pi);
registerBeforeCompactHook(pi);
registerProactiveThresholdHook(pi);
registerPiVccCommand(pi);
registerVccRecallCommand(pi);
registerRecallTool(pi);
};