show

star 0

Show the full detail of a single AI coding session by its ID. Session IDs are in the format <tool>:<id> (e.g., claude:5c3f2742, cursor:a1b2c3d4). Use this skill when asked to show a specific session, inspect a session, read a session, or view the messages in a session. Trigger phrases: "show session", "open session", "inspect session", "read session", "show me claude:5c3f2742", "view session details", "what happened in session".

psacc By psacc schedule Updated 6/10/2026

name: show description: | Show the full detail of a single AI coding session by its ID. Session IDs are in the format : (e.g., claude:5c3f2742, cursor:a1b2c3d4). Use this skill when asked to show a specific session, inspect a session, read a session, or view the messages in a session. Trigger phrases: "show session", "open session", "inspect session", "read session", "show me claude:5c3f2742", "view session details", "what happened in session". license: MIT allowed-tools: Bash argument-hint: ":" metadata: version: 0.10.0

omnisess show

Show full detail for a single AI coding session.

Usage

omnisess show <tool>:<session-id>

Instructions

  1. Check that the omnisess binary is available:
if ! command -v omnisess &>/dev/null; then
  echo "omnisess not found. Install it with:"
  echo "  go install github.com/psacc/omnisess@latest"
  exit 1
fi
  1. Guard for missing argument:
if [ -z "$1" ]; then
  echo "Usage: omnisess show <tool>:<session-id>"
  echo "Example: omnisess show claude:5c3f2742"
  exit 1
fi
  1. Run the command with the provided session ID:
omnisess show "$1"

Session ID format

Session IDs always use the <tool>:<id> format:

  • claude:5c3f2742
  • cursor:a1b2c3d4
  • codex:e5f6g7h8

Use omnisess list to find available session IDs.

Example

omnisess show claude:5c3f2742
Install via CLI
npx skills add https://github.com/psacc/omnisess --skill show
Repository Details
star Stars 0
call_split Forks 1
navigation Branch main
article Path SKILL.md
More from Creator