Commit c0709ced5899
Changed files (1)
dots
pi
agent
extensions
dots/pi/agent/extensions/terminal-status.ts
@@ -24,6 +24,7 @@
import type { ExtensionAPI } from "@mariozechner/pi-coding-agent";
import { execSync } from "node:child_process";
+import { hostname } from "node:os";
import path from "node:path";
// =============================================================================
@@ -156,9 +157,10 @@ function getSkillIcon(skillName: string): string {
*/
function buildTitle(context?: string, isError?: boolean): string {
const project = getProjectName();
+ const host = hostname();
const prefix = "π";
- let parts = [prefix, project];
+ let parts = [prefix, `${host}:${project}`];
// Add git branch if available
if (currentBranch) {