From cass
This skill should be used when the user asks "what do I know about", "past context for", "related sessions", "session context for this file", "what have I worked on in this project", "find related history", "context from past sessions", "catch me up", "what happened while I was gone", "bring me up to speed", "current session info", "list recent sessions", or needs to pull relevant past session context for the current task, file, or project to inform decisions.
How this skill is triggered — by the user, by Claude, or both
Slash command
/cass:session-contextThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Load relevant past session context for the current task, file, or project.
Load relevant past session context for the current task, file, or project. Uses CASS to find sessions related to what is being worked on right now, providing historical awareness across all coding agents.
Identify the active session for this workspace:
cass sessions --current --json
Browse recent sessions for a project:
# Sessions for current workspace
cass sessions --workspace "$(pwd)" --json --limit 10
# All recent sessions
cass sessions --json --limit 15
When working on a specific file, find sessions that previously touched it:
cass context <path-to-session-file> --json --limit 10
This returns sessions that referenced the same file, including modifications, discussions, and debugging sessions.
Combine workspace filtering with topical search:
# Hybrid search within current project
cass search "<current task description>" --workspace "$(pwd)" --mode hybrid --json --limit 10
# Search with time scope
cass search "<topic>" --workspace "$(pwd)" --days 30 --json --limit 10
# Search across all sources (multi-machine)
cass search "<topic>" --source all --json --limit 10
See what happened in a project over time:
# Today's sessions
cass timeline --today --json
# Last 7 days by day
cass timeline --since 7d --json --group-by day
# Last 30 days overview
cass timeline --since 30d --json --group-by day
# Specific agent activity
cass timeline --since 7d --agent claude_code --json
Get a fast summary without loading full results:
# Activity by agent in last 7 days
cass search "*" --json --aggregate agent --week
# Activity by workspace
cass search "*" --json --aggregate workspace --days 30
For sessions that look relevant, pull full message context:
cass expand <source_path> --line <line_number> -C 5 --json
After loading relevant context, invoke the mcp__memory__remember MCP tool to store key findings:
<file/project>["cass", "session-context", <project-name>]"context"Before storing, recall existing memories on the topic to avoid duplicates.
Before modifying a file, check what past sessions involved it:
# Find the current session
cass sessions --current --json
# Search for related work
cass search "login refactor" --workspace "$(pwd)" --json
Catch up on recent activity in the project:
# What happened recently?
cass timeline --since 3d --json --group-by day
# Quick agent breakdown
cass search "*" --json --aggregate agent --days 3
# Drill into specific sessions
cass expand <path> --line <line> -C 10 --json
Find when and why a decision was made:
cass search "decided to use <technology>" --workspace "$(pwd)" --mode hybrid --json
Pull context from remote sources:
# Search across all machines
cass search "deployment script" --source all --json
# Search specific remote
cass search "config" --source work-laptop --json
cass sessions --current as a starting point for current workspace context.--aggregate for quick overviews before drilling into specifics.--days, --since) to scope context to relevant periods.Provides behavioral guidelines to reduce common LLM coding mistakes, focusing on simplicity, surgical changes, assumption surfacing, and verifiable success criteria.
Searches, retrieves, and installs Agent Skills from prompts.chat registry using MCP tools like search_skills and get_skill. Activates for finding skills, browsing catalogs, or extending Claude.
Creates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.
npx claudepluginhub asragab/asragab-claude-marketplace --plugin cass