nemo-rl-session-memory

작성자: nvidia

Manage durable working-session memory for coding agents. Use when a user asks to preserve or recover agent context across disconnects, VS Code restarts,…

npx skills add https://github.com/nvidia/skills --skill nemo-rl-session-memory

Session Memory

Keep a durable, human-readable record of the current working session so another agent can resume after a disconnect with minimal context loss.

When To Use

Use this skill when:

  • The user asks to preserve, recover, checkpoint, or manage agent memory.
  • Work is long-running, experimental, or likely to span disconnects.
  • You are about to make nontrivial edits, run long jobs, switch branches, or pause for user input.
  • You resume in a repo that already has ./session/ directories.

Session Directory

Create one directory per working session:

mkdir -p session
date +%Y%m%d_%H%M%S
mkdir -p session/<session_date_time>

Use local time from the machine. Reuse the same session directory for all checkpoints in the same conversation unless the user explicitly starts a new session.

Expected files:

  • session_state.md - overall goal, current subtask, loaded skills, status, plan, assumptions, blockers, and next actions.
  • timeline.md - append-only log of major actions, commands, results, and decisions.
  • files.md - files inspected, files changed, and why they matter.
  • handoff.md - concise resume instructions for the next agent.

Add other files only when useful, such as experiments.tsv, review_notes.md, or copied command logs.

Start Or Resume

At the start of a session:

  1. Check for existing session directories:
ls -dt session/* 2>/dev/null | head
  1. If the user is resuming work, read the latest relevant session_state.md, timeline.md, and handoff.md.
  2. If no relevant session exists, create a new timestamped directory.
  3. Write an initial session_state.md with the user's overall goal, current subtask, loaded skills, repo path, branch, and known constraints.

Do not treat session notes as the only source of truth. Verify important claims against git state, files, and command output before acting.

Checkpoint Rhythm

Write a checkpoint:

  • After gathering enough context to form a plan.
  • Before and after meaningful code edits.
  • Before long-running commands, experiments, branch switches, or anything hard to reconstruct from chat.
  • When the user changes direction.
  • Before final response if the session has meaningful state worth resuming.
  • At least every 30 minutes during active long-running work.

Prefer updating the same files rather than creating many small checkpoint files. Keep the record compact and scannable.

File Templates

session_state.md

# Session State

- Session: <session_date_time>
- Repo: <absolute repo path>
- Branch: <branch name>
- Started: <local timestamp>
- Updated: <local timestamp>

## Goal
<Stable overall user goal in one or two sentences. Preserve this across follow-up steering unless the user explicitly changes it.>

## Current Subtask
<Immediate task or steering request currently being handled.>

## Loaded Skills
- `<skill-name>` - <why it was loaded and any important instructions to preserve.>

## Current Status
<What is true now. Include completed work and verification status.>

## Plan
- [ ] <Next concrete step>
- [ ] <Next concrete step>

## Assumptions
- <Assumption and how to verify it if needed.>

## Blockers
- <Blocker or "None known".>

timeline.md

# Timeline

## <local timestamp>
- User asked: <brief request>
- Context gathered: <files/commands and key result>
- Decision: <important choice and rationale>
- Result: <edits/tests/outcome>

files.md

# Files

## Inspected
- `<path>` - <why it mattered>

## Changed
- `<path>` - <what changed and why>

## Generated
- `<path>` - <purpose>

handoff.md

# Handoff

## Resume From Here
<One paragraph summary of the current state.>

## Next Actions
- <Most important next action>
- <Verification or cleanup still needed>

## Watch Outs
- <Risks, user preferences, or repo constraints the next agent must preserve.>

Recovery Workflow

When resuming after a disconnect:

  1. Find the likely latest session directory.
  2. Read handoff.md first, then session_state.md, then recent timeline.md.
  3. Run lightweight verification such as git status --short, git branch --show-current, and targeted file reads.
  4. Continue from the latest verified next action.
  5. Append a timeline entry noting the recovery and any mismatches found.

Quality Rules

  • Keep notes factual and terse. Future agents need state, not a transcript.
  • Record command outcomes that matter, especially failed tests or skipped verification.
  • Mention uncommitted changes and whether they were made by the current agent or pre-existing.
  • Do not store secrets, tokens, private credentials, or large logs in session files.
  • If a session file becomes large, summarize old details and keep the latest next actions near the top of handoff.md.

nvidia의 다른 스킬

compileiq-debug
nvidia
Use when something is wrong: Search() hangs, all evaluations return INVALID_SCORE, scores aren't improving, every config returns the same number, ptxas errors…
official
create-github-pr
nvidia
gh CLI를 사용하여 GitHub 풀 리퀘스트를 생성합니다. 사용자가 새 PR을 만들거나, 코드 리뷰를 제출하거나, 풀 리퀘스트를 열고자 할 때 사용합니다. 트리거 키워드 -…
official
diagnose-perf
nvidia
First-responder performance triage for Isaac Sim and Isaac Lab. Identifies bottleneck category (GPU-bound, CPU-bound, VRAM, loading) using nvidia-smi and…
official
eagle3-review-logs
nvidia
Review EAGLE3 pipeline experiment logs from the launcher's experiments/ directory. Summarizes pass/fail status for all 4 tasks, diagnoses failures with root…
official
nemoclaw-maintainer-cross-issue-sweep
nvidia
다른 열린 이슈들을 스캔하여 주어진 PR이 함께 수정하거나 실수로 망가뜨릴 수 있는 이슈를 찾습니다. 인접 수정 기회와 모순 위험을 file:line…과 함께 출력합니다.
official
karpathy-guidelines
nvidia
일반적인 LLM 코딩 실수를 줄이기 위한 행동 지침입니다. 코드 작성, 검토 또는 리팩토링 시 과도한 복잡성을 피하고 정밀한 변경을 위해 사용하세요.
official
fhir-basics
nvidia
에이전트에게 FHIR R4 API의 작동 방식, 사용 가능한 리소스, 검색 매개변수를 사용한 쿼리 방법, 모든 응답 형식을 올바르게 파싱하는 방법을 가르칩니다…
official
underdeclared-agent
nvidia
A helpful assistant agent
official