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 skills add restarter/lets-workflow --skill session-boundarygit clone --depth 1 https://github.com/restarter/lets-workflowWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/restarter/lets-workflow/session-boundary)<a href="https://agentmods.dev/skills/restarter/lets-workflow/session-boundary"><img src="https://agentmods.dev/badge/skills/restarter/lets-workflow/session-boundary.svg" alt="Measured on agentmods" height="20"></a>What 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.1 | $0.00055 | $0.02373 |
| Opus 5 | $0.00028 | $0.01187 |
| Sonnet 5 | $0.00011 | $0.00475 |
| Haiku 4.5 | $0.00006 | $0.00237 |
Grade A, and why
session-boundary scanned grade A with 0 findings 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 yesterday.
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.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 147 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Session Boundary
Resolve the ref a session's commit range is measured from, validate it, and say how far it can be trusted. /lets:end needs it EARLY (it gates which settlements are offered) and session-snapshot needs it LATE (the ### Range block it writes into a durable file). Two copies of a validation ladder drift, and drift here is what produced a confident "260 commits" for a 6-commit session (lets-370mx), so the ladder lives here and nowhere else.
Contract: no args. Output: four echoed lines the caller reads VERBATIM.
SESSION_BOUNDARY=<sha | none>
SESSION_TRUST=<exact | prior-session | estimate | none>
SESSION_COMMITS=<N | unknown>
SESSION_RANGE_DESC=<one-line human description, always carrying the trust level>
Diagnostic NOTEs go to stderr - surface them to the user, they are the loud half of every degradation.
Fail closed. If the four lines do not arrive, the caller MUST assume SESSION_TRUST=none / SESSION_COMMITS=unknown and proceed as though no boundary exists. Never re-derive one inline - a second copy is a second answer, which is the defect this skill exists to prevent.
Trust levels
| level | boundary | what the caller may claim |
|---|---|---|
exact |
this session's session: line in .task-<branch-slug> |
the count is this session's work |
prior-session |
a session: line or legacy slugged ref recorded by an EARLIER session |
a real recorded boundary, but not this session's - best-effort |
estimate |
nothing recorded; derived from this branch's point off $LETS_MERGE_BRANCH |
what this BRANCH added, not what this session did |
none |
nothing usable (rejected, or absent while HEAD is $LETS_MERGE_BRANCH) |
nothing - there is no number |
A caller that gates a destructive or task-completing offer on the range must require exact or prior-session. SESSION_RANGE_DESC always embeds the level, so a number cannot travel into a file or a tracker comment without the qualifier that earned it.
Resolve
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.
- yesterday First seen · 147 lines · 55 tokens per session scan A 5b4d982ec237
session-boundary is a skill published in the GitHub repository restarter/lets-workflow (17 stars, last pushed 2d ago), licensed MIT. It adds 55 tokens to every session and 2,373 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-05.
Other skills, from other repositories
release
Prepare a version release — bump version files, commit, and tag. Just run /release with no arguments.
merge
Absorb one or more feature branches into the base branch. Recommends merge vs rebase per branch. On conflict, aborts that branch + surfaces the file list + stops. Resolution out of scope; routes to the harness-named conflict-resolution agent or the user.
release-init
Detect project type and generate a tailored project-level /release skill. Run once per project to set up releasing.
commit
Commit the current session's changes only, gateway-inline. Session-isolated (never -A, staged set verified against the session list), doc-sync-gated. The gateway runs the commit inline — it already holds the diff, session file list, and change intent; on a mechanical gate hit it judges doc-sync warm in its own context…
drain
Parallel-worktree auto-drain of the board. One /super-bootstrap:drain turn = scan the pipeline sources (specs/plans/backlog, plus the scale module's test queue when present) → keep only admissible items → relation-analyze into a conflict-free wave → confirm with the user → spawn one isolated git worktree + headless…
github-cli
GitHub CLI (gh) wrapper for PR status, issues, and repository operations.