From claude-resources
Browses and reads recent agent logs/artifacts from project-specific $HOME/cclogs/{slug}/. Lists top N files with headings, filters by prefix, reads full content via 'read <filename>'.
npx claudepluginhub takazudo/claude-resourcesThis skill uses the workspace's default tool permissions.
Browse and read recent logs and artifacts from the centralized log directory (`$HOME/cclogs/{slug}/`).
Guides Next.js Cache Components and Partial Prerendering (PPR): 'use cache' directives, cacheLife(), cacheTag(), revalidateTag() for caching, invalidation, static/dynamic optimization. Auto-activates on cacheComponents: true.
Guides building MCP servers enabling LLMs to interact with external services via tools. Covers best practices, TypeScript/Node (MCP SDK), Python (FastMCP).
Share bugs, ideas, or general feedback.
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 project