Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add skills/akshayrao14/git-practices/session-loopnpx skills add akshayrao14/git-practices --skill session-loopgit clone --depth 1 https://github.com/akshayrao14/git-practicesWhat it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00241 | $0.01771 |
| Opus 5 | $0.00120 | $0.00886 |
| Sonnet 5 | $0.00048 | $0.00354 |
| Haiku 4.5 | $0.00024 | $0.00177 |
Grade B, and why
session-loop scanned grade B with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 2d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Enumerates other installed skillsmediumAgent snooping
Other skills' SKILL.md files reveal prompts, capabilities and secrets that should be invisible to peers.
Installs into the right skills dir for your agent (Codex `~/.codex/skills`, Claude Code `~/.claude/skills`, or open-standard `~/.agents/skills`). Restart your agent session afterward. How it starts
The opening of the file, as written. The whole thing — 96 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Session Loop
A pause/resume toolkit for multi-day projects worked on with agent assistants (Claude Code, Codex, etc.). Composes with append-only project ledgers — does not replace them.
Why this exists
Multi-day projects fail at the seams. The work itself is fine. The handoffs between sessions are where context evaporates, decisions get re-litigated, and silent drift compounds. This skill is the missing scaffolding around agent + project + ledger that makes pause/resume robust.
Sub-flows
| Slash form | When it fires | Sub-skill file |
|---|---|---|
/session-wrap |
End of session. User says "stop for today", "let's wrap up", "I'm done". | sub/wrap.md |
/session-catchup |
Start of session. User says "pick up where we left off", "what was I doing", "resume the migration". | sub/catchup.md |
/session-checkpoint |
Mid-session light save. User says "stepping away for an hour", "save my place". | sub/checkpoint.md |
/session-drift |
Sanity check world vs ledger. User says "check the world before I run helm", "is the ledger still accurate". | sub/drift.md |
/session-decide |
Log an ADR-style decision. User says "we just decided X, log it", "record this call". | sub/decide.md |
/session-open-loops |
Scan unresolved threads. User says "what's still open", "what did we defer". | sub/open-loops.md |
/session-compact-check |
Pre-compaction state persistence. User says "compact now", or context pressure is high at a task boundary. | sub/compact-check.md |
Shared artifact contract
These files live in the project root. Each sub-flow reads and/or writes a defined subset. The contract is convention — no sub-flow hard-fails if a file is missing, but they are most useful when all three exist.
| File | Lifecycle | Owner sub-flows |
|---|---|---|
NEXT_SESSION.md |
Ephemeral. Overwritten on every /session-wrap and /session-checkpoint. Consumed by /session-catchup. |
Write: wrap, checkpoint. Read: catchup, open-loops. |
DECISIONS.md (or project's existing ledger, e.g. MIGRATION_LEDGER.md) |
Append-only. Never retro-edit; supersede with new dated entries. | Write: decide. Read: catchup, drift, open-loops. |
UPDATES.md |
Append-only narrative, newest-on-top, dated. | Write: wrap. Read: catchup. |
What ships with it
20 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
- commands/session-catchup.md 573 B
- commands/session-checkpoint.md 488 B
- commands/session-compact-check.md 585 B
- commands/session-decide.md 609 B
- commands/session-drift.md 586 B
- commands/session-open-loops.md 501 B
- commands/session-wrap.md 694 B
- install.sh 3.2 KB runs code
- LICENSE 1.0 KB
- README.md 11 KB
- sub/catchup.md 5.3 KB
- sub/checkpoint.md 5.5 KB
- sub/compact-check.md 4.4 KB
- sub/decide.md 6.8 KB
- sub/drift.md 6.7 KB
- sub/open-loops.md 5.5 KB
- sub/wrap.md 9.9 KB
- templates/DECISION.md 1.8 KB
- templates/NEXT_SESSION.md 3.1 KB
- WALKTHROUGH.md 13 KB
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 2d ago First seen · 96 lines · 241 tokens per session scan B 4db68d1abd61
session-loop is a skill published in the GitHub repository akshayrao14/git-practices (0 stars, last pushed 5d ago), licensed MIT. It adds 241 tokens to every session and 1,771 once invoked, about $0.0012 per session on Opus 5. A static security scan graded it B with 1 finding (enumerates other installed skills). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other skills, from other repositories
task-manager
Capture actionable user requests as persistent tasks, update task status as work progresses, and keep a shared task store in sync. Use when a user asks an agent to do work, check progress, block a task, complete a task, or manage the Kanban board.
todo
Maintain a shared workspace TODO list with blocked tasks.
team-assembly
Select the minimum complete reviewer team for a Fallow change based on touched paths, contracts, integrations, and risk.
issue-management
Manage GitHub Issues 2.0 relationships with gh CLI: parent issues, sub-issues, blocked-by, and blocking links.
issue
Create or update GitHub issues with correct Remotion naming and safe multiline Markdown handling.
task-manager
Capture actionable user requests as persistent tasks, update task status as work progresses, and keep a shared task store in sync. Use when a user asks an agent to do work, check progress, block a task, complete a task, or manage the Kanban board.