From neurodock
Open a chronometric session by calling mark_session_start with the user's stated intent. Returns a session_id that later interventions quote back verbatim.
How this skill is triggered — by the user, by Claude, or both
Slash command
/neurodock:chronometric-mark-startThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Quick wrapper for the `mark_session_start` tool on the local NeuroDock
Quick wrapper for the mark_session_start tool on the local NeuroDock
chronometric server (neurodock-chronometric). Captures the user's
plain-language framing of what they are about to do, so later nudges
(hyperfocus warnings, end-of-session reflection) can quote it back
unchanged.
Authoritative schema $id:
https://schemas.neurodock.org/mcp-chronometric/v0.1.0/mark_session_start.schema.json
(source).
Calls mcp__neurodock-chronometric__mark_session_start with a single
intent string. The server:
session_id.started_at (ISO 8601 with offset).intent verbatim — no paraphrase, no summarisation.auto_closed_prior_session with the prior id and closed_at.Input shape:
{
"intent": "finish draft RFC reply"
}
Constraints:
intent is required, 1–500 chars, plain language.Example response:
{
"session_id": "6f9f4f5e-3b1c-4e2a-9f7d-2b3c4d5e6f70",
"started_at": "2026-05-23T09:14:22+01:00",
"intent": "finish draft RFC reply",
"auto_closed_prior_session": null
}
The session_id is opaque. Callers do NOT need to track it across calls —
mark_session_end always closes the most-recent open session for the user
by design (see ADR 0001
— avoids the LLM having to maintain state).
The id is useful for:
source: "session://<id>").INTENT_REQUIRED — empty/missing intent. Ask the user to state one.INTENT_TOO_LONG — over 500 chars. Truncate or split.SESSION_ALREADY_OPEN — only when the server is configured to reject
overlaps. The default policy auto-closes.Quote the intent back to the user in the confirmation. They said it; show that you heard it. Do not add encouragement ("great goal!") — that is exactly the sycophancy the project's manifesto rejects.
Provides behavioral guidelines to reduce common LLM coding mistakes, focusing on simplicity, surgical changes, assumption surfacing, and verifiable success criteria.
Searches, retrieves, and installs Agent Skills from prompts.chat registry using MCP tools like search_skills and get_skill. Activates for finding skills, browsing catalogs, or extending Claude.
Creates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.
npx claudepluginhub tlennon-ie/neurodock --plugin neurodock