SKILLS/GENERAL CODING WORKFLOWS/session-wrap/SKILL.md
Wrap up the current coding session by creating PRs, updating the session log, preparing the next session md, and updating the claude md with learnings.
npx skillsauth add mattmre/evokore-mcp session-wrapInstall 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.
This skill wraps up the current coding session, ensuring no context is lost and the handoff to the next session is seamless.
docs/session-logs or similar). Ensure you have per-session documentation for all previous sessions for this repo. Use agentic orchestration to explore and update as needed.next-session.md and prepare for the next session. Keep in mind there may have been another session running that just completed; incorporate its handoff points if applicable.CLAUDE.md with any information from the agents that might be pertinent to future sessions, especially repetitive errors and noticed problems that affect progress. We want to make sure future sessions improve upon previous ones. Update CLAUDE.md once findings are prepared.Adapted from Agent33's evidence capture framework. Every session wrap must include verifiable evidence so the next session can trust previous work without re-running it.
Every session wrap must capture at minimum:
Use this template in the session log to record evidence:
## Session Evidence
### Commands Run
| Command | Output Summary | Exit Code |
|---------|---------------|-----------|
| `npm test` | 24 passed, 0 failed | 0 |
| `npm run lint` | No errors | 0 |
### Full Output (if non-trivial)
<paste full output for audit trail>
### Diff Summary
| Files Changed | Lines Added | Lines Removed | Rationale |
|---------------|-------------|---------------|-----------|
| `src/parser.ts` | +15 | -3 | Added error handling for malformed input |
| `tests/parser.test.ts` | +20 | -0 | Added test for edge case |
### Test Results
- Test suite: unit tests
- Outcome: 24 passed, 0 failed
- Coverage: 87% lines
- Notes: All acceptance criteria covered
### Evidence Checklist
- [ ] Commands recorded with exact CLI
- [ ] Outputs captured (summary + full if non-trivial)
- [ ] Diff summary documented
- [ ] Tests recorded with pass/fail count
- [ ] Review outcomes captured (if applicable)
- [ ] Artifacts linked (logs, reports, screenshots)
For the complete orchestration handoff protocol including multi-agent evidence chains, see:
SKILLS/ORCHESTRATION FRAMEWORK/handoff-protocol/ (if available), or apply the evidence capture template above directly in the session log.
development
Core orchestration framework for model-agnostic multi-agent workflows with handoff protocol, policy governance, and configuration schemas
testing
Specialized skill for triage issue skill workflows.
development
Complete workflow for building, implementing, and testing goal-driven agents. Orchestrates hive-* skills. Use when starting a new agent project, unsure which skill to use, or need end-to-end guidance.
development
Iterative agent testing with session recovery. Execute, analyze, fix, resume from checkpoints. Use when testing an agent, debugging test failures, or verifying fixes without re-running from scratch.