mysql_mcp_plus: Skill for Claude Code

.agents/skills/trellis-finish-work/SKILL.md

trellis-finish-work is a skill for Claude Code, Codex from mjwyr/mysql_mcp_plus. It costs 46 tokens per session (889 once invoked), scanned A, a copy of trellis-finish-work, MIT.

A guide for closing a completed Trellis session. It checks the final state, archives finished tasks, and records progress in the developer journal.

In plain words
What is it for?
Finishing a coding task, reviewing the quality gate, recording session progress, and archiving completed tasks.
Why use it?
It helps preserve what was done and prevents completed work from being left unrecorded or unarchived.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: installed under .agents/ (shared by several agents).

This is mjwyr/mysql_mcp_plus's own configuration. It tells Claude Code and Codex how to work on mysql_mcp_plus itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything mysql_mcp_plus configures →

Needs its repository: it runs a file that does not travel with it, so clone the repository first. The line is python ./.trellis/scripts/get_context.py --mode record.

Reuse

Borrowing it

Nothing to install: this file belongs to mjwyr/mysql_mcp_plus. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/mjwyr/mysql_mcp_plus/main/.agents/skills/trellis-finish-work/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/mjwyr/mysql_mcp_plus

Made for: Claude Code, Codex.

Wrote 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.

agentmods badge for trellis-finish-work

README.md
[![agentmods](https://agentmods.dev/badge/skills/mjwyr/mysql_mcp_plus/trellis-finish-work/github.svg)](https://agentmods.dev/skills/mjwyr/mysql_mcp_plus/trellis-finish-work)
Your own site
<a href="https://agentmods.dev/skills/mjwyr/mysql_mcp_plus/trellis-finish-work"><img src="https://agentmods.dev/badge/skills/mjwyr/mysql_mcp_plus/trellis-finish-work/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for trellis-finish-work

Your own site · 80×15
<a href="https://agentmods.dev/skills/mjwyr/mysql_mcp_plus/trellis-finish-work"><img src="https://agentmods.dev/badge/skills/mjwyr/mysql_mcp_plus/trellis-finish-work.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 46 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 889 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin 100% copy Near-identical to another mod in the catalogue.
Token cost

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.

ModelPer sessionOnce invoked
Fable 5.1 $0.00046 $0.00889
Opus 5 $0.00023 $0.00445
Sonnet 5 $0.00009 $0.00178
Haiku 4.5 $0.00005 $0.00089

Measured 10d ago against content hash 79e6d1653582, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

trellis-finish-work 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 10d 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.

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.

Origin

This is a copy

100% identical to trellis-finish-work — 6 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

.agents/skills/trellis-finish-work/SKILL.md · 72 lines

How it starts

The opening of the file, as written. The whole thing — 72 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Finish Work

Wrap up the current session: archive the active task (and any other completed-but-unarchived tasks the user wants to clean up) and record the session journal. Code commits are NOT done here — those happen in workflow Phase 3.4 before you invoke this command.

Step 1: Survey current state

python ./.trellis/scripts/get_context.py --mode record

This prints:

  • My active tasks — review whether any besides the current one are actually done (code merged, AC met) and should be archived this round.
  • Git status — quick visual on what's dirty.
  • Recent commits — you'll need their hashes in Step 4 for --commit.

If --mode record surfaces other completed tasks not tied to the current session, surface them to the user with a one-shot confirmation: "These N tasks look done — archive them too in this round? [y/N]". Default is no; the current active task is always archived in Step 3 regardless.

Step 2: Sanity check — classify dirty paths

Run:

git status --porcelain

Filter out paths under .trellis/workspace/ and .trellis/tasks/ — those are managed by add_session.py and task.py archive auto-commits and will appear dirty as part of this skill's own work.

For each remaining dirty path, decide whether it belongs to the current task or to other parallel work (e.g., another terminal window editing the same repo). Heuristics:

  • Paths referenced in the current task's prd.md / implement.jsonl / check.jsonl → current task
  • Paths in code areas matching the task's stated scope, or that you remember editing this session → current task
  • Paths in unrelated areas you have no recollection of touching this session → other parallel work

Then route:

  • Any remaining path looks like current-task work — bail out with:

    "Working tree has uncommitted code changes from this task: <list>. Return to workflow Phase 3.4 to commit them before running ``finish-work (Trellis command)."

    Do NOT run git commit here. Do NOT prompt the user to commit. The user goes back to Phase 3.4 and the AI drives the batched commit there.

  • All remaining paths look unrelated (other parallel-window work) — report them once and continue to Step 3:

    "FYI, dirty files outside this task's scope — leaving them for the other window: <list>."

  • Genuinely unsure — ask the user once: "Are <list> this task's work I forgot to commit, or another window's? (commit / ignore)" — then route per their answer.

Read the full file on GitHub · 72 lines

Changes

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.

  1. 10d ago First seen · 72 lines · 46 tokens per session scan A 79e6d1653582

Subscribe to this mod's changes

trellis-finish-work is a skill published in the GitHub repository mjwyr/mysql_mcp_plus (0 stars, last pushed 1mo ago), licensed MIT. It adds 46 tokens to every session and 889 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. It is 100% identical to trellis-finish-work, differing in 6 lines, and is treated as a copy.

Related

Other skills, from other repositories