get_cheatsheet
Access a condensed NoJS directive cheatsheet for quick reference during development. This tool provides essential framework information for template validation and component scaffolding.
Instructions
Get a condensed NoJS directive cheatsheet for quick reference
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/tools/index.ts:423-434 (handler)The get_cheatsheet tool is registered and implemented directly within the server.tool call in src/tools/index.ts. It reads "cheatsheet.md" using a helper function and returns its content.
// ── get_cheatsheet ── server.tool( "get_cheatsheet", "Get a condensed NoJS directive cheatsheet for quick reference", {}, async () => { const cheatsheet = loadDoc("cheatsheet.md"); return { content: [{ type: "text" as const, text: cheatsheet }], }; } );