Commit 706cf8bca555
Changed files (2)
dots
pi
agent
extensions
dots/pi/agent/extensions/hostname.ts
@@ -1,16 +0,0 @@
-/**
- * Hostname Extension
- *
- * Displays the current hostname in the status line (footer).
- * Useful when working across multiple machines.
- */
-
-import type { ExtensionAPI } from "@mariozechner/pi-coding-agent";
-import { hostname } from "node:os";
-
-export default function (pi: ExtensionAPI) {
- pi.on("session_start", async (_event, ctx) => {
- const host = hostname();
- ctx.ui.setStatus("hostname", ctx.ui.theme.fg("accent", `๐ฅ๏ธ ${host}`));
- });
-}