← ClaudeAtlas

statuslisted

Report the current coding-session status: summarize staged, unstaged, and untracked files; identify the last task and whether its work is present or committed; report code-review coverage; summarize active plans or review todos; list remaining session work; and recommend the next task. Use when the user invokes status or asks 'where are we?', 'what changed?', 'what is left?', or 'what should I do next?' about the current coding session. Do not use for service health or deployment status.
nielsmadan/skills · ★ 0 · Code & Development · score 75
Install: claude install-skill nielsmadan/skills
<!-- Generated from https://github.com/nielsmadan/agentic-coding — edits here are overwritten. --> # Status Give a read-only snapshot of the current coding session. Reconcile conversation history, task state, Git changes, review coverage, and remaining work. Never edit files, update task state, stage changes, commit, or start the recommended task. ## Instructions ### 1. Collect evidence Use these sources in order of authority: 1. The current conversation and any compacted session summary: the user's goal, work performed, review invocations, verification, decisions, and explicit unfinished items. 2. Active task state: harness-native plan or goal state when available, `.review-todo.md`, and any plan/checklist explicitly used in this conversation. 3. Current Git state: `git status --short`, staged and unstaged diffs, and untracked files. 4. Recent Git history: only to confirm session work that the conversation says was committed or that has disappeared from the working tree. Do not search older agent sessions by default. If the current session context is unavailable, report unknown rather than inventing history; use `check-agent-logs` only when the user explicitly asks to recover an earlier session. If the directory is not a Git repository, omit Git-specific checks but still report the task, review, task-list, and open-work sections. ### 2. Explain every changed file Run: ```bash git status --short git diff --cached --stat git diff --stat git diff --cached git diff ``