.claude/skills.nouse/status/SKILL.md
Show current project status — worklog state, Phase progress, and layer implementation coverage. Use when you need a snapshot of where the project stands.
npx skillsauth add taewook486/real-estate-mcp statusInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Gather a lightweight snapshot of the current project state.
localdocs/worklog.doing.md — full (usually short)localdocs/worklog.todo.md — full (usually short)localdocs/worklog.done.md — last 20 lines only (tail -n 20)Never read the full done file — it grows unboundedly.
Read the project plan document if it exists (look for files matching localdocs/plan*.md).
Read only the section that describes phases or implementation priorities — skip detailed specs.
If no plan document exists, infer structure from the source directory:
ls -1 src/
# or the equivalent directory listing
Do not hardcode assumptions about phases or layers — derive them from what you find.
List the source directory to see which layers/modules exist:
ls -1 src/*/ # one level deep is enough
Report what exists vs. what the plan indicates is still missing.
.env — existence only (do not read contents).localdocs — confirm .env is listedpyproject.toml — key dependencies (skim, don't parse exhaustively)git branch --show-current && git status --short
## Project Status
### Phase Progress
[Derived from plan doc or inferred — e.g.:]
- Phase 0 (foundation): complete
- Phase 1 (data collection): in progress (3/7 tasks)
- Phase 2+: not started
### Implementation Coverage
[Derived from directory listing — e.g.:]
- config/: ✓
- collectors/: partial (base.py only)
- models/: ✗
...
### Worklog
- In progress: [items from doing, or "none"]
- Top backlog: [top 3 from todo]
- Recently done: [last 2-3 items from done tail]
### Environment
- .env: [exists/missing]
- Key dependencies: [present/missing items]
### Git
- Branch: [name]
- Changed files: [count]
End with: "Run next to see the recommended next task."
lstesting
--- name: worklog description: Update worklog files by moving tasks between todo/doing/done states. Use when recording task progress, starting new work, or marking tasks complete. Requires explicit arguments: worklog [done|doing|todo] [description]. --- # Worklog Update task state in worklog files. Requires explicit arguments. ## Worklog Files - `localdocs/worklog.todo.md` — backlog - `localdocs/worklog.doing.md` — in progress - `localdocs/worklog.done.md` — completed (grouped by date, appen
development
Test-Driven Development workflow. Use for ALL code changes - features, bug fixes, refactoring. TDD is non-negotiable.
tools
Guide for creating effective skills. This skill should be used when users want to create a new skill (or update an existing skill) that extends Claude's capabilities with specialized knowledge, workflows, or tool integrations.
development
Refactoring assessment and patterns. Use after tests pass (GREEN phase) to assess improvement opportunities.