@adamchanadam/agent-handoff-kit 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,46 @@
1
+ # Session Log
2
+
3
+ Add new session entries at the top. Record what actually happened in the session; do not copy old completed work forward as new work.
4
+
5
+ This log carries recent evidence, not current state. Put the current objective, next action, risks, and workspace identity in `dev/SESSION_HANDOFF.md`.
6
+
7
+ Keep recent entries concise. If older entries no longer affect the next action, reduce them to short dated indexes that point to the durable source of truth. Archive long error output, validation detail, or research trails only when needed; do not create an archive directory by default.
8
+
9
+ Before closeout, check whether older log detail should be kept, summarized, or archived. Do not remove validation evidence, unresolved risks, or the latest opening message.
10
+
11
+ ## Entry Template
12
+
13
+ ````markdown
14
+ ## <YYYY-MM-DD> — <short session title>
15
+
16
+ - **ID:** <agent_or_session_id>
17
+ - **Summary:** <one sentence>
18
+ - **Changed:** <files changed, or none>
19
+ - **Done:** <work completed this session>
20
+ - **QC:** <checks run and results, or why not run>
21
+ - **Sync:** <doc/external sync status>
22
+ - **Pending:** <next work>
23
+ - **Risks:** <known risks or none>
24
+ - **Log maintenance:** <kept/summarized/archived/not_needed and why>
25
+
26
+ ### Next Session Opening Message
27
+
28
+ 📋 Next session: copy and paste the whole block below
29
+
30
+ ```text
31
+ Work in <absolute project root>.
32
+
33
+ Read in order:
34
+ 1. AGENTS.md
35
+ 2. dev/SESSION_HANDOFF.md
36
+ 3. dev/SESSION_LOG.md
37
+ 4. dev/PROJECT_INDEX.md
38
+ 5. dev/RULE_PACKS.md
39
+
40
+ Read dev/DOC_SYNC_REGISTRY.md before file changes or closeout.
41
+
42
+ If this root does not match the expected project root, stop and ask for confirmation.
43
+
44
+ After reading, summarize current objective, confirmed decisions, pending work, risks, and the next recommended action.
45
+ ```
46
+ ````