@xynogen/pix-core 0.2.1 → 0.2.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/index.ts +0 -2
package/package.json
CHANGED
package/src/index.ts
CHANGED
|
@@ -16,7 +16,6 @@
|
|
|
16
16
|
*/
|
|
17
17
|
|
|
18
18
|
import type { ExtensionAPI } from "@earendil-works/pi-coding-agent";
|
|
19
|
-
import registerSkillLoader from "@xynogen/pix-skills";
|
|
20
19
|
import registerAgentSop from "./commands/agent-sop/agent-sop.ts";
|
|
21
20
|
import registerClear from "./commands/clear/clear.ts";
|
|
22
21
|
import registerDiff from "./commands/diff/diff.ts";
|
|
@@ -32,7 +31,6 @@ import registerWelcome from "./ui/welcome.ts";
|
|
|
32
31
|
|
|
33
32
|
export default function (pi: ExtensionAPI): void {
|
|
34
33
|
registerAgentSop(pi);
|
|
35
|
-
registerSkillLoader(pi);
|
|
36
34
|
registerWelcome(pi);
|
|
37
35
|
registerFooter(pi);
|
|
38
36
|
registerDiagnostics(pi);
|