$npx -y skills add Arman-Kudaibergenov/1c-ai-development-kit --skill session-saveSave current session state to session-notes.md in project root. Use when context is getting high (70%+) or before ending a work session.
| 1 | # session-save |
| 2 | |
| 3 | Save current session state to `session-notes.md` in project root. |
| 4 | Use when context is getting high (70%+) or before ending a work session. |
| 5 | |
| 6 | ## Trigger |
| 7 | User says: "session-save", "сохрани сессию", "save session" |
| 8 | |
| 9 | ## Steps |
| 10 | 1. Create/overwrite `session-notes.md` in project root with: |
| 11 | ``` |
| 12 | # Session Notes — <date> <time> |
| 13 | |
| 14 | ## Current Task |
| 15 | <what you were working on> |
| 16 | |
| 17 | ## Completed |
| 18 | - <bullet list of what was done this session> |
| 19 | |
| 20 | ## Pending |
| 21 | - <what still needs to be done> |
| 22 | |
| 23 | ## Next Action |
| 24 | <specific next step to take when resuming> |
| 25 | |
| 26 | ## Key Decisions |
| 27 | - <important decisions made, with reasoning> |
| 28 | |
| 29 | ## Modified Files |
| 30 | - <list of files changed this session> |
| 31 | ``` |
| 32 | 2. Confirm to user: "Session saved to session-notes.md. You can /clear or run scripts/rotate-session.ps1" |
| 33 | |
| 34 | ## Rules |
| 35 | - Be specific in "Next Action" — it should be executable without additional context |
| 36 | - List ALL modified files, not just the important ones |
| 37 | - Keep "Completed" factual, not aspirational |