# Terminator:info

> Show the configured kill phrases and case sensitivity for both local (project) and global (user) terminator installations. Use when the user asks "what is my kill phrase", "show terminator config", "terminator info", or "what phrase is configured".

- Skill: `florianbuetow/terminator-info` (Agent Skill)
- Install (CLI): `npx skillmds@latest add florianbuetow/terminator-info`
- Raw SKILL.md: https://api.skillmd.com/api/skills/florianbuetow/terminator-info/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: florianbuetow (https://skillmd.com/u/florianbuetow)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/florianbuetow/terminator-info

---


# Terminator: Info

Show the currently configured kill phrases for local and/or global scope.

## Step 1 — Read both scopes

```bash
local_config=".claude/terminator.json"
global_config="$HOME/.claude/terminator.json"

echo "=== LOCAL scope ($local_config) ==="
if [ -f "$local_config" ]; then
  cat "$local_config"
else
  echo "not installed"
fi

echo ""
echo "=== GLOBAL scope ($global_config) ==="
if [ -f "$global_config" ]; then
  cat "$global_config"
else
  echo "not installed"
fi
```

## Step 2 — Report

Present the findings clearly:

```
## Terminator Info

LOCAL scope (.claude/terminator.json):
  single_killphrase : <phrase or "not set">
  double_killphrase : <phrase or "not set">
  case sensitive    : <true|false|"not set">

GLOBAL scope (~/.claude/terminator.json):
  single_killphrase : <phrase or "not set">
  double_killphrase : <phrase or "not set">
  case sensitive    : <true|false|"not set">
```

If a scope is not installed, show `— not installed —` for that block.
If neither scope is installed, offer `/terminator:install`.

