Get the FREE Ultimate OpenClaw Setup Guide β†’

terminal-title

Scanned
npx machina-cli add skill aiskillstore/marketplace/terminal-title --openclaw
Files (1)
SKILL.md
9.8 KB
<!-- ABOUTME: Terminal title skill that automatically updates terminal window title --> <!-- ABOUTME: Uses emoji from environment + Claude's project detection + current topic -->

Terminal Title Management

Overview

This skill updates the terminal window title to show current context:

  • Work/fun emoji (from $TERMINAL_TITLE_EMOJI environment variable)
  • Project name (intelligently detected by Claude)
  • Current topic (what you're working on)

Format: πŸ’Ό ProjectName - Topic

CRITICAL: When to Invoke

MANDATORY invocations:

  1. Session start: Automatically triggered by SessionStart hook. Claude must respond by setting title to "Claude Code" as default topic.
  2. Topic changes: Claude MUST detect and invoke when user shifts to new topic.

Topic change patterns (Claude must detect these):

  • βœ… "let's talk about X" / "can you tell me about Y" β†’ invoke immediately
  • βœ… User switches domains: debugging β†’ documentation, frontend β†’ backend, feature β†’ tests
  • βœ… User starts working on different module/component after sustained discussion
  • βœ… User asks about completely unrelated topic after 3+ exchanges on current topic
  • ❌ Follow-up questions on same topic ("add a comment to that function") β†’ do NOT invoke
  • ❌ Small refinements to current work ("make it blue") β†’ do NOT invoke
  • ❌ Clarifications about current task β†’ do NOT invoke

Claude's responsibility: Actively monitor conversation flow and invoke this skill whenever topic materially shifts. Do not wait for explicit permission.

Example titles:

  • πŸ’Ό Skills Repository - Terminal Title
  • πŸŽ‰ dotfiles - zsh config
  • πŸ’Ό OneOnOne - Firebase Config

Setup Requirements

Required Permission:

This skill runs scripts to update the terminal title. To prevent Claude from prompting for permission every time, add this to your ~/.claude/settings.json:

For Unix/Linux/macOS:

{
  "permissions": {
    "allow": [
      "Bash(bash *skills/scripts/set_title.sh:*)"
    ]
  }
}

For Windows:

{
  "permissions": {
    "allow": [
      "Bash(pwsh *skills/scripts/set_title.ps1:*)"
    ]
  }
}

Why this permission is needed: The skill executes a script that sends terminal escape sequences silently in the background to update your window title without interrupting your workflow.

Cross-platform support: The plugin includes both bash scripts (.sh) for Unix-like systems and PowerShell scripts (.ps1) for Windows. The SessionStart hook automatically detects your OS and uses the appropriate script.

Project Detection Strategy

Primary method: Claude's intelligence

Claude analyzes the current context to determine the project name:

  • Current working directory and recent conversation
  • Files read during the session
  • Git repository information
  • Package metadata (package.json, README.md, etc.)
  • Overall understanding of what the project represents

Key principle: Use intelligent understanding, not just mechanical file parsing.

Detection examples:

  • /Users/dylanr/work/2389/skills β†’ "Skills Repository" (not just "skills")
  • /Users/dylanr/work/2389/oneonone/hosting β†’ "OneOnOne"
  • /Users/dylanr/dotfiles β†’ "dotfiles"
  • /Users/dylanr/projects/my-app β†’ "My App" (humanized from directory)

Supporting evidence Claude checks:

  1. Git remote URL or repository directory name
  2. package.json name field (Node.js projects)
  3. First heading in README.md
  4. Directory basename (last resort)

Fallback: If Claude cannot determine context, use current directory name.

Always include project name - Claude can always determine something meaningful.

Title Formatting

Standard format:

$emoji ProjectName - Topic

Component details:

1. Emoji (from environment):

  • Read from $TERMINAL_TITLE_EMOJI environment variable
  • Set by zsh theme based on directory context
  • Common values: πŸ’Ό (work), πŸŽ‰ (fun/personal)
  • Fallback: Use πŸŽ‰ if variable not set

2. Project Name (from Claude's detection):

  • Human-friendly name, not slug format
  • Proper capitalization (e.g., "OneOnOne" not "oneonone")
  • Always present (use directory name as minimum)

3. Topic (from invocation context):

  • Short description of current work (2-4 words)
  • Provided when skill is invoked
  • Examples: "Terminal Title", "Firebase Config", "CSS Refactor"

Script usage:

bash scripts/set_title.sh "ProjectName" "Topic"

Note: The script automatically reads emoji from environment and handles terminal escape sequences.

Edge cases:

  • No $TERMINAL_TITLE_EMOJI: Use πŸŽ‰ as default
  • Very long project/topic: Let terminal handle truncation naturally
  • Empty topic: Use "Claude Code" as default

Workflow

When Claude detects a topic change (or session start), immediately invoke this workflow:

Follow these steps to update the terminal title:

Step 1: Determine project name

Use Claude's understanding of the current codebase and context to determine the project name. Check:

  • What you know about this project from conversation and files
  • Git repository name/remote URL
  • package.json name field (if Node.js project)
  • README.md first heading
  • Directory basename (minimum fallback)

Generate a human-friendly name (e.g., "Skills Repository" not "skills").

Step 2: Get topic from context

The topic should come from:

  • Invocation parameter (if provided explicitly)
  • Current conversation context (what user is working on)
  • Default to "Claude Code" for session start

Step 3: Detect operating system

Before executing the script, detect the operating system:

# Check if running on Windows (check for common Windows indicators)
if [[ "$OSTYPE" == "msys" || "$OSTYPE" == "win32" || "$OSTYPE" == "cygwin" ]]; then
    OS="windows"
else
    OS="unix"
fi

Step 4: Execute title update script (cross-platform)

Find the skill base directory (available in the skill loading message) and execute the appropriate script based on OS:

For Unix/Linux/macOS:

bash <skill-base-dir>/scripts/set_title.sh "Project Name" "Topic"

For Windows:

pwsh -NoProfile -ExecutionPolicy Bypass -File <skill-base-dir>/scripts/set_title.ps1 "Project Name" "Topic"

The scripts handle:

  • Reading emoji from $TERMINAL_TITLE_EMOJI (Unix) or $env:TERMINAL_TITLE_EMOJI (Windows)
  • Sanitizing inputs
  • Formatting and sending terminal escape sequences

Execute this command silently using the Bash tool (pre-approved via permissions).

Step 5: Done

Title updated silently. Continue responding to user without mentioning the title update unless they ask about it.

Examples

Example 1: Session Start in Skills Repository

Context: User starts Claude Code in /Users/dylanr/work/2389/skills

Environment: TERMINAL_TITLE_EMOJI=πŸ’Ό

Execution:

  1. Project: "Skills Repository" (Claude's knowledge)
  2. Topic: "Claude Code" (session start default)
  3. Command: bash /Users/dylanr/work/2389/claude-plugins/terminal-title/skills/scripts/set_title.sh "Skills Repository" "Claude Code"

Result: Terminal title shows πŸ’Ό Skills Repository - Claude Code (script reads emoji from environment)


Example 2: Topic Change Detection

Context: Conversation shifts from "terminal title implementation" to "rare VWs"

Claude's detection: User asked "can you tell me about rare vws?" - this is a clear topic shift

Environment: TERMINAL_TITLE_EMOJI=πŸŽ‰

Claude's action:

  1. Detect topic change (from terminal implementation to VWs)
  2. Invoke terminal-title skill workflow
  3. Project: "Home" (current directory basename)
  4. Topic: "Rare VWs" (from new conversation direction)
  5. Command: bash <skill-base-dir>/scripts/set_title.sh "Home" "Rare VWs"
  6. Continue answering user's question about rare VWs

Result: Terminal title silently updates to πŸŽ‰ Home - Rare VWs (script reads emoji from environment)


Example 3: Personal Project Without Environment Variable

Context: User working in ~/projects/dotfiles directory

Environment: TERMINAL_TITLE_EMOJI not set

Execution:

  1. Project: "dotfiles" (from directory)
  2. Topic: "zsh config" (from conversation)
  3. Command: bash <skill-base-dir>/scripts/set_title.sh "dotfiles" "zsh config"

Result: Terminal title shows πŸŽ‰ dotfiles - zsh config (script uses πŸŽ‰ as fallback when TERMINAL_TITLE_EMOJI not set)


Example 4: Different Project Context

Context: User working in /Users/dylanr/work/2389/oneonone/hosting

Environment: TERMINAL_TITLE_EMOJI=πŸ’Ό

Execution:

  1. Project: "OneOnOne" (Claude knows this project name)
  2. Topic: "Firebase Config" (from conversation)
  3. Command: bash <skill-base-dir>/scripts/set_title.sh "OneOnOne" "Firebase Config"

Result: Terminal title shows πŸ’Ό OneOnOne - Firebase Config (script reads emoji from environment)


Example 5: Windows User Session Start

Context: Windows user starts Claude Code in C:\Users\Nat\projects\my-app

Environment: $env:TERMINAL_TITLE_EMOJI=πŸ’» (Windows environment variable)

OS Detection: Claude detects Windows via $OSTYPE check

Execution:

  1. Project: "My App" (from directory name, humanized)
  2. Topic: "Claude Code" (session start default)
  3. Command: pwsh -NoProfile -ExecutionPolicy Bypass -File <skill-base-dir>/scripts/set_title.ps1 "My App" "Claude Code"

Result: Terminal title shows πŸ’» My App - Claude Code (PowerShell script reads emoji from $env:TERMINAL_TITLE_EMOJI)

Note: The SessionStart hook automatically detected Windows and invoked the PowerShell version of the script instead of the bash version.

Source

git clone https://github.com/aiskillstore/marketplace/blob/main/skills/2389-research/terminal-title/SKILL.mdView on GitHub

Overview

Automatically updates the terminal window title to reflect the current project and topic. It uses an emoji from TERMINAL_TITLE_EMOJI, detects the active project via Claude’s intelligence, and shows the current topic, keeping you oriented across sessions and topics.

How This Skill Works

The skill runs at session start via the SessionStart hook and on topic changes. It formats the title as emoji + project + topic (e.g., πŸ’Ό Project - Topic) and sends terminal escape sequences using set_title.sh on Unix-like systems or set_title.ps1 on Windows. It relies on environment data and Claude’s project-detection logic to keep titles accurate.

When to Use It

  • Session start to establish a baseline title for a new conversation
  • Topic changes where the user shifts to a new subject (e.g., debugging to docs)
  • Domain switches like debugging to documentation or frontend to backend
  • Working on a different module/component after sustained discussion
  • User asks about a completely unrelated topic after 3+ exchanges on the current topic

Quick Start

  1. Step 1: Add the permission block for your OS in ~/.claude/settings.json (Unix: Bash(bash *skills/scripts/set_title.sh:*), Windows: Bash(pwsh *skills/scripts/set_title.ps1:*)).
  2. Step 2: Set the TERMINAL_TITLE_EMOJI environment variable and ensure the set_title.sh / set_title.ps1 scripts are present.
  3. Step 3: Start a session; Claude will initialize the title and automatically update it on topic changes via the SessionStart hook.

Best Practices

  • Ensure TERMINAL_TITLE_EMOJI is set in the environment so the emoji can render
  • Configure the permission blocks in ~/.claude/settings.json for your OS
  • Rely on Claude’s topic-drift detection rather than manual prompts
  • Test on both Unix-like and Windows environments to confirm script paths
  • Verify the title format consistently shows emoji, project, and topic

Example Use Cases

  • πŸ’Ό Skills Repository - Terminal Title
  • πŸŽ‰ dotfiles - zsh config
  • πŸ’Ό OneOnOne - Firebase Config
  • πŸ’Ό ExampleProject - API Refactor
  • 🧭 ProjectX - Module Overview

Frequently Asked Questions

Add this skill to your agents
Sponsor this space

Reach thousands of developers β†—