Agent skill

context-status

Show current session status and context health for the sewage project. Use to check context usage, active work state, and what will survive compaction.

brycew6m4,252★ · +31/wk · 3 repos on radarProfile →
claude-codecan modify filesNOASSERTION
Install
npx skills add brycewang-stanford/Auto-Empirical-Research-Skills --skill context-status --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 1
SKILL.md size: 1 KB
Bundled scripts: none
Allowed tools: BashReadGlob
Path: skills/41-sticerd-eee-sewage-econometrics-check/skills/context-status/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 3,244
Language: Stata
Read our review of the source →

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Context Status Show current session status including context usage estimate and project state. ## Workflow ### Step 1: Check Session State ```bash # Recent git activity git log --oneline -5 # Working tree status git status --short # Recent output files ls -lt output/log/ 2>/dev/null | head -5 ``` ### Step 2: Check Project Progress ```bash # Count analysis scripts find scripts/R/09_analysis/ -name "*.R" | wc -l # Count output tables and figures ls output/tables/*.tex 2>/dev/null | wc -l ls output/figures/ 2>/dev/null | wc -l # Check manuscript sections ls docs/overleaf/*.tex 2>/dev/null ``` ### Step 3: Report Status Format output: ``` Session Status --- Recent commits: [last 3] Uncommitted changes: [count] Recent reports: [last 3 in output/log/] Project Progress --- Pipeline scripts: N Analysis scripts: N Output tables: N Output figures: N Manuscript sections: N .tex files Memory Files --- [List files in .claude/projects/.../memory/] ``` ## Notes - Context usage is estimated from conversation length - All important state is saved to disk (memory files, output/log/) - Use `/commit` to save work before context compaction

What's inside
Steps it walks through
  1. Workflow
  2. Step 1: Check Session State
  3. Step 2: Check Project Progress
  4. Step 3: Report Status
  5. Notes
Commands it runs
Recent git activity
git log --oneline -5
Working tree status
git status --short
Recent output files
ls -lt output/log/ 2>/dev/null | head -5
Count analysis scripts
find scripts/R/09_analysis/ -name "*.R" | wc -l
Count output tables and figures
ls output/tables/*.tex 2>/dev/null | wc -l
More from Auto-Empirical-Research-Skills
All skills →
About this skill
What does the context-status skill do?

Show current session status and context health for the sewage project. Use to check context usage, active work state, and what will survive compaction.

How do I install it?

Run `npx skills add brycewang-stanford/Auto-Empirical-Research-Skills --skill context-status --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From brycewang-stanford/Auto-Empirical-Research-Skills, a repository with 3,244 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going