From claude-resources
Browse and read recent Claude Code session logs and artifacts from a project-specific directory. Supports listing, filtering by prefix, and reading full log files.
How this skill is triggered — by the user, by Claude, or both
Slash command
/claude-resources:logreferThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Browse and read recent logs and artifacts from the centralized log directory (`$HOME/cclogs/{slug}/`).
Browse and read recent logs and artifacts from the centralized log directory ($HOME/cclogs/{slug}/).
Get the log directory for the current project:
LOGDIR=$(node $HOME/.claude/scripts/get-logdir.js)
If the directory does not exist, inform the user that no logs have been saved yet for this project.
Check $ARGUMENTS for these patterns:
20): List that many most recent filesreviewer, research, frontend-dev, wt-child, youtube): Filter files by that prefix patternread <filename>: Read and display the full content of the specified filels -t "$LOGDIR" to get files sorted by modification time (newest first)ls -t "$LOGDIR" | grep "<prefix>"grep -m1 '^#' "$LOGDIR/<file>")filename -- heading$LOGDIRRecent logs in $HOME/cclogs/{slug}/:
0314_1530-reviewer-auth-refactor.md -- Auth Module Code Review
0314_1200-research-caching-strategies.md -- Caching Strategy Analysis
0313_0900-frontend-dev-dashboard.md -- Dashboard Component Implementation
...
Display the full file content using the Read tool.
$LOGDIR doesn't exist or is empty, inform the user that no logs have been saved yet for this projectnpx claudepluginhub takazudo/claude-resources --plugin claude-resourcesSearches past Claude Code session logs to recall decisions, patterns, or unresolved work. Useful when users reference prior conversations, say 'do you remember', or need historical context.
Searches and analyzes logifai-captured development logs in NDJSON format using Read, Grep, Glob, Bash. Debugs errors, runtime issues, reviews activity via keywords, timestamps, stack traces, logifai:// URIs.
Searches past Claude Code session logs for keywords to recover context like decisions, data paths, CRS info, model configs, and unresolved work across projects or scoped to current one.