This skill should be used when the user wants to resume previous work, continue from a last session, check what was being worked on, track completed work, log session activity, manage tech debt, review pending items, view session history, or maintain a work log. Triggered by phrases like "resume work", "continue from last session", "what was I working on", "track this work", "log what we did", "tech debt", "what's pending", "session history", "work log".
From dev-intelligencenpx claudepluginhub hedera-dev/hedera-skills --plugin dev-intelligenceThis skill uses the workspace's default tool permissions.
references/archive-strategy.mdreferences/registry-template.mdreferences/tech-debt-template.mdSearches, 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.
Searches prompts.chat for AI prompt templates by keyword or category, retrieves by ID with variable handling, and improves prompts via AI. Use for discovering or enhancing prompts.
Compares coding agents like Claude Code and Aider on custom YAML-defined codebase tasks using git worktrees, measuring pass rate, cost, time, and consistency.
Maintain continuity across AI agent sessions by providing structured work tracking, tech debt management, and report archival. This skill ensures no context is lost between sessions — the agent always knows what was done, what's pending, and what needs attention.
The report registry (.claude/reports/_registry.md) is the central index of all work performed across sessions.
Active → Resolved)### [Category] Short descriptive title
- **Date:** YYYY-MM-DD
- **Status:** Active | Resolved | Archived
- **File:** `.claude/reports/<category>/<filename>.md`
- **Summary:** One-line description of findings or changes
See references/registry-template.md for the full template with all 15 categories.
The tech debt tracker (.claude/reports/_tech-debt.md) captures technical debt discovered during development.
| Priority | Meaning | Action |
|---|---|---|
| P0 | Blocks development or production | Fix this session |
| P1 | Degrades DX or performance | Fix this week |
| P2 | Code quality concern | Fix this month |
| P3 | Nice-to-have improvement | Fix when convenient |
### [P{0-3}] Short title
- **Added:** YYYY-MM-DD
- **Category:** code-quality | performance | security | architecture | testing | dependency | documentation
- **Location:** `path/to/file.ts:123`
- **Impact:** What happens if this isn't addressed
- **Suggested Fix:** Brief approach description
- **Status:** Open | In Progress | Resolved
See references/tech-debt-template.md for the full template with examples.
Keep the registry and debt tracker lean:
.claude/reports/archive/See references/archive-strategy.md for detailed archival guidelines.
MEMORY.md is Claude Code's auto-memory file — it's loaded into every system prompt automatically. Use it as a self-improvement loop that accumulates project-specific lessons across sessions.
~/.claude/projects/<project-path-with-dashes>/memory/MEMORY.md
Organize by topic, not chronologically:
# Project — Lessons Learned
## Build & Tooling
- [lesson]
## Architecture Patterns
- [lesson]
## Testing
- [lesson]
## Common Pitfalls
- [lesson]
## Owner Preferences
- [lesson]
Keep under 200 lines — this is loaded into every system prompt. If it grows too large:
debugging.md) and link from MEMORY.mdWhen resuming work on a project with session management set up:
cat .claude/reports/_registry.mdcat .claude/reports/_tech-debt.mdgit log --oneline -10 and git statusBefore ending a session:
references/registry-template.md — Full registry template with 15 categoriesreferences/tech-debt-template.md — Tech debt tracker template with examplesreferences/archive-strategy.md — Archival rules and lifecycle management