From tesseron
Looks up exact Tesseron protocol specs via MCP tools: wire format, handshake, resume, error codes, sampling/elicitation contracts, and capability negotiation. Use when the user needs chapter-and-verse, not an overview.
How this skill is triggered — by the user, by Claude, or both
Slash command
/tesseron:tesseron-docsThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
This skill is the on-demand, authoritative lookup path for Tesseron documentation. Whenever precision matters (exact wire-format envelope, specific error code, fields a handshake carries, structural contract of resume) prefer calling the MCP tools below over recalling from memory or the `framework` skill's cheat sheet.
This skill is the on-demand, authoritative lookup path for Tesseron documentation. Whenever precision matters (exact wire-format envelope, specific error code, fields a handshake carries, structural contract of resume) prefer calling the MCP tools below over recalling from memory or the framework skill's cheat sheet.
The plugin bundles @tesseron/docs-mcp at install time, so these tools are normally already connected in Claude Code as mcp__plugin_tesseron_tesseron-docs__*:
Search first. Call search_docs({ query, limit }) with the user's question as-is (or a short paraphrase that keeps the load-bearing nouns). It returns ranked hits with slug, title, description, score, and a ~240-char snippet. limit defaults to 8 and caps at 20; 4-8 is the sweet spot.
Read the top hit. Call read_doc({ slug }) on the first promising hit. It returns the full markdown body plus structured frontmatter (title, description, section, related). Quote the exact spec text into your answer instead of paraphrasing it.
Walk the graph if the answer is cross-cutting. The related field in read_doc's response is a slug list. Follow those edges with more read_doc calls when a single page does not cover the question. Typical example: protocol/resume is incomplete without protocol/handshake and protocol/transport.
Fall back to list_docs only when the user wants the full catalogue ("what are all the protocol pages?") or when search_docs keeps missing the page you expect.
framework skill. That skill is a cheat sheet; this one is a manual.@tesseron/react", "upgrade versions") — load the tesseron-dev skill.tesseron-explorer or tesseron-reviewer skill. They read the project, not the docs.If calls to mcp__plugin_tesseron_tesseron-docs__* fail (e.g. the user has disabled the MCP server) fall back in order:
docs/src/content/docs/**/*.{md,mdx} if the workspace is the Tesseron monorepo itself.https://eigenwise.github.io/tesseron/llms-full.txt has the complete docs as plain text; https://eigenwise.github.io/tesseron/<section>/<slug>/ serves the rendered page.framework skill's bundled reference files (plugin/skills/framework/references/*.md).Never answer precision questions from training data alone without noting that you could not retrieve the current spec.
When you read a page via read_doc, cite it by slug and link the hosted URL so the user can verify. Example:
Per
protocol/handshake(https://eigenwise.github.io/tesseron/protocol/handshake/), the welcome frame carriessessionId,claimCode,resumeToken, and the negotiatedcapabilities.
The slug is stable; the published URL tracks the same path.
npx claudepluginhub eigenwise/tesseron --plugin tesseronQuick-reference mental model for the Tesseron TypeScript SDK covering core abstractions, canonical imports per consumer package, and the minimum-viable-app template.
Searches and fetches Glean developer docs via MCP tools for APIs, SDKs (Python/JS), MCP config, authentication, indexing, and integrations.
Grounds answers in real library documentation by searching indexed docs, fetching uncached sources, and reading specific sections. Useful for fast-moving SDKs, APIs, and version-sensitive tool behavior.