Install
$ agentstack add skill-lifecycle-innovations-limited-claude-ops-ops-recap Open-source listing — not yet scanned by AgentStack. Follow the source repository for install instructions.
Security review
⚠ Flagged1 finding(s); flagged for manual review. · v0.1.0 How review works →
- • Prompt-injection patterns
- • Secret / credential exfiltration
- • Dangerous shell & filesystem operations
- • Untrusted network calls
- • Known-malicious package signatures
- high Destructive filesystem operation.
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
About
OPS ► RECAP
The recap marquee is a launchd-managed daemon that aggregates per-session Claude transcripts (via the recap-capture Stop hook) and per-tool activity (via the recap-tool-activity PostToolUse hook) into a single rolling headline at /tmp/claude-recap-digest. Tmux reads that file every refresh interval via scripts/recap/marquee.sh and scrolls it across status-right.
Files:
| Path | Role | | ---------------------------------------------------------- | ---------------------------------------------------------- | | ${CLAUDE_PLUGIN_ROOT}/scripts/recap/daemon.sh | Background loop — polls inputs, calls digest.sh when stale | | ${CLAUDE_PLUGIN_ROOT}/scripts/recap/digest.sh | Synthesizes one-line digest via claude -p --model claude-sonnet-4-6 | | ${CLAUDE_PLUGIN_ROOT}/scripts/recap/marquee.sh | Tmux-side scroller (called from status-right) | | ${CLAUDE_PLUGIN_ROOT}/hooks/recap-capture.sh | Stop hook → writes /tmp/claude-recap- | | ${CLAUDE_PLUGIN_ROOT}/hooks/recap-tool-activity.sh | PostToolUse hook → live activity per session | | ~/Library/LaunchAgents/com.claude-ops.recap-daemon.plist | Launchd agent (macOS) | | /tmp/claude-recap-digest | Rolling one-liner (read by tmux + marquee.sh) | | /tmp/claude-recap-daemon.log | Daemon log (rotated at 500KB) | | /tmp/claude-recap-digest.log | Last 50 generated digests, chronological |
Subcommand: status (default)
Print a compact health panel:
PLIST=~/Library/LaunchAgents/com.claude-ops.recap-daemon.plist
LABEL=com.claude-ops.recap-daemon
DIGEST=/tmp/claude-recap-digest
DAEMON_LOG=/tmp/claude-recap-daemon.log
# Plist installed?
if [ -f "$PLIST" ]; then echo "✓ plist installed: $PLIST"; else echo "✗ plist missing"; fi
# Launchd loaded?
launchctl print "gui/$(id -u)/${LABEL}" >/dev/null 2>&1 \
&& echo "✓ launchd loaded ($LABEL)" \
|| echo "✗ launchd not loaded — run /ops:recap restart"
# Daemon process alive?
if [ -f /tmp/claude-recap-daemon.pid ]; then
pid=$(cat /tmp/claude-recap-daemon.pid)
kill -0 "$pid" 2>/dev/null && echo "✓ daemon alive (pid $pid)" || echo "✗ stale pid file"
else
echo "✗ no pid file"
fi
# Digest freshness
if [ -f "$DIGEST" ]; then
age=$(($(date +%s) - $(stat -f %m "$DIGEST" 2>/dev/null || stat -c %Y "$DIGEST" 2>/dev/null || echo 0)))
echo "✓ digest age: ${age}s"
echo " preview: $(head -c 120 "$DIGEST")..."
else
echo "✗ digest file missing — daemon may not have produced one yet"
fi
# Log size
if [ -f "$DAEMON_LOG" ]; then
bytes=$(stat -f %z "$DAEMON_LOG" 2>/dev/null || stat -c %s "$DAEMON_LOG" 2>/dev/null)
echo " log: $DAEMON_LOG (${bytes} bytes)"
fi
# tmux integration?
# Display surfaces — tmux status-right + Claude Code statusLine can coexist
tmux_wired=0
statusline_wired=0
if command -v tmux >/dev/null 2>&1; then
if grep -q claude-recap "$HOME/.tmux.conf" 2>/dev/null; then
echo "✓ tmux status-right wired"
tmux_wired=1
else
echo "○ tmux installed but status-right not wired — run /ops:recap configure"
fi
else
echo "○ tmux not installed"
fi
SETTINGS="$HOME/.claude/settings.json"
statusline_check_skipped=0
if ! command -v jq >/dev/null 2>&1; then
echo "○ Claude Code statusLine — cannot check (jq not installed; install via 'brew install jq' or your distro's package manager)"
statusline_check_skipped=1
elif [ ! -f "$SETTINGS" ]; then
echo "○ Claude Code statusLine — no ~/.claude/settings.json found (run Claude Code at least once, or run /ops:recap configure to create one)"
statusline_check_skipped=1
else
sl_cmd=$(jq -r '.statusLine.command // empty' "$SETTINGS" 2>/dev/null)
if echo "$sl_cmd" | grep -q claude-recap-digest; then
echo "✓ Claude Code statusLine wired"
statusline_wired=1
else
echo "○ Claude Code statusLine not wired — run /ops:recap configure"
fi
fi
# Only warn "no display surface active" when we actually verified both surfaces.
# If statusline check was skipped due to missing prerequisites, statusline_wired
# being 0 is uninformative — surface that explicitly instead of misleading text.
if [ "$tmux_wired" -eq 0 ] && [ "$statusline_wired" -eq 0 ]; then
if [ "$statusline_check_skipped" -eq 1 ]; then
echo " → tmux not wired; statusLine status unknown (prerequisite missing — see above). Daemon still produces /tmp/claude-recap-digest (useful for /ops:recap tail)."
else
echo " → no display surface active. Daemon still produces /tmp/claude-recap-digest (useful for /ops:recap tail)."
fi
fi
Subcommand: tail
Stream the rolling digest log:
echo "─── Last 20 generated digests ───"
tail -n 20 /tmp/claude-recap-digest.log 2>/dev/null || echo "(no digest log yet)"
echo
echo "─── Daemon log (tail 30) ───"
tail -n 30 /tmp/claude-recap-daemon.log 2>/dev/null || echo "(no daemon log yet)"
Subcommand: configure
Walk the user through display-surface integration. Two surfaces are supported and they can coexist: tmux status-right and Claude Code statusLine (~/.claude/settings.json). Detect existing config first to avoid clobbering.
- Check tmux availability — if missing, jump to the statusLine fallback flow below:
``bash if ! command -v tmux >/dev/null 2>&1; then echo "tmux not installed — offering Claude Code statusLine fallback." # → see "statusLine fallback" section below fi ``
- Check current
~/.tmux.conf:
``bash TMUX_CONF="$HOME/.tmux.conf" tmux_already_wired=0 if grep -q claude-recap "$TMUX_CONF" 2>/dev/null; then echo "✓ tmux status-right already configured." tmux_already_wired=1 fi existing=$(grep -E '^\s*set\s+-g\s+status-right' "$TMUX_CONF" 2>/dev/null | head -1) ``
Steps 3–5 only apply when tmux is not already wired (tmux_already_wired=0):
- If
existingis non-empty,AskUserQuestion:
- Question: "Existing tmux status-right detected:
$existing. Append recap marquee?" - Options:
[Append (keep existing)][Replace with recap-only][Skip]
- On append: insert the marquee snippet ahead of the existing setting so both render. On replace: comment out the old line and add the new one.
Snippet to append — expand the plugin path when writing ~/.tmux.conf (tmux #() does not expand env vars):
```bash PLUGINROOT="${CLAUDEPLUGINROOT:-$(ls -d "$HOME/.claude/plugins/cache/ops-marketplace/ops"/*/ 2>/dev/null | sort -V | tail -1)}" cat >> "$TMUXCONF" /dev/null 2>&1 && tmux source-file "$TMUX_CONF" 2>/dev/null
### `configure` — statusLine fallback (no tmux, or in addition to tmux)
When tmux is missing — or the user wants a second surface — wire the recap into Claude Code's own status bar via `~/.claude/settings.json`.
1. `AskUserQuestion` (Rule 1 — exactly 4 options):
```
Wire recap into Claude Code statusLine (~/.claude/settings.json)?
[Add to Claude Code statusLine] [Show me the JSON, I'll add manually] [Skip] [Help]
```
2. On `Add to Claude Code statusLine`, detect existing entry:
```bash
SETTINGS="$HOME/.claude/settings.json"
mkdir -p "$(dirname "$SETTINGS")"
[ -f "$SETTINGS" ] || echo '{}' > "$SETTINGS"
existing=$(jq -r '.statusLine // empty' "$SETTINGS")
```
3. If `existing` is non-empty, ask (Rule 1 — 3 options):
```
Existing statusLine detected. How to handle?
[Replace with recap] [Append after current (chain commands)] [Skip]
```
4. Merge with `jq` so other settings are preserved:
```bash
TMP=$(mktemp)
jq '.statusLine = {
"type": "command",
"command": "cat /tmp/claude-recap-digest 2>/dev/null | head -c 80",
"refreshInterval": 30
}' "$SETTINGS" > "$TMP" && mv "$TMP" "$SETTINGS"
```
For the append branch, chain commands so both render side-by-side:
```bash
prev_cmd=$(jq -r '.statusLine.command // ""' "$SETTINGS")
if [ -n "$prev_cmd" ]; then
new_cmd="${prev_cmd}; cat /tmp/claude-recap-digest 2>/dev/null | head -c 80"
else
new_cmd="cat /tmp/claude-recap-digest 2>/dev/null | head -c 80"
fi
TMP=$(mktemp)
jq --arg cmd "$new_cmd" '.statusLine.command = $cmd' "$SETTINGS" > "$TMP" && mv "$TMP" "$SETTINGS"
```
5. Print: `✓ Claude Code statusLine wired — restart Claude Code (or open a new session) to activate.`
The JSON snippet (for the manual / `Show me the JSON` path):
```json
{
"statusLine": {
"type": "command",
"command": "cat /tmp/claude-recap-digest 2>/dev/null | head -c 80",
"refreshInterval": 30
}
}
Subcommand: restart
Reload the launchd agent without reconfiguring:
LABEL=com.claude-ops.recap-daemon
PLIST=~/Library/LaunchAgents/com.claude-ops.recap-daemon.plist
launchctl bootout "gui/$(id -u)/${LABEL}" 2>/dev/null || true
rm -rf /tmp/claude-recap-daemon.lock /tmp/claude-recap-daemon.pid
launchctl bootstrap "gui/$(id -u)" "$PLIST" && echo "✓ daemon restarted"
Linux / systemd alternative
The launchd plist is macOS-only. Linux users can wrap scripts/recap/daemon.sh in a systemd --user unit. Minimal example (~/.config/systemd/user/claude-recap-daemon.service):
[Unit]
Description=Claude Ops Recap Daemon
After=default.target
[Service]
Type=simple
ExecStart=/bin/sh %h/.claude/plugins/cache/ops-marketplace/ops/CURRENT/scripts/recap/daemon.sh
Restart=always
RestartSec=30
[Install]
WantedBy=default.target
Then systemctl --user daemon-reload && systemctl --user enable --now claude-recap-daemon. The CLI subcommands above (status / tail / restart) won't auto-detect systemd — use systemctl --user status claude-recap-daemon directly.
Invocation
/ops:recap (alias: shows status). Subcommand parsing:
sub="${1:-status}"
case "$sub" in
status|tail|configure|restart) ;;
*) echo "Unknown subcommand: $sub. Try: status | tail | configure | restart"; exit 1 ;;
esac
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: Lifecycle-Innovations-Limited
- Source: Lifecycle-Innovations-Limited/claude-ops
- License: MIT
- Homepage: https://github.com/Lifecycle-Innovations-Limited/claude-ops/wiki
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet — be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.