This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --- | |
| name: create-project-agentsmd | |
| description: > | |
| Generate a well-structured AGENTS.md (or CLAUDE.md, .cursorrules, copilot-instructions.md) | |
| instruction file for a project. Use when the user asks to "create an AGENTS.md", "set up | |
| agent instructions", "write a CLAUDE.md", "add project context for AI", "generate instruction | |
| file", or mentions configuring any AI coding agent's behavior for their project. Produces | |
| instruction files that encode goals and shape — not implementation details — so they stay | |
| accurate as the codebase evolves. | |
| license: Apache-2.0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python3 | |
| """ | |
| Script to generate a table of contents for a Markdown document. | |
| Usage: python generate_toc.py <input_file> <output_file> | |
| This script: | |
| - Parses all headers in the Markdown file | |
| - Generates hierarchical numbering (1.0, 1.1, 2.0, etc.) | |
| - Creates unique short codes for each header |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <canvas id="canvas"></canvas> | |
| <textarea id="codeEditor" class="editor" spellcheck="false" autocorrect="off" autocapitalize="off" translate="no" oninput="render()"></textarea> | |
| <pre id="error"></pre> | |
| <div id="indicator"></div> | |
| <div id="controls"> | |
| <div class="controls"> | |
| <input id="btnToggleView" class="icon" type="checkbox" name="toggleView" onclick="toggleView()"> | |
| <input id="btnToggleResolution" class="icon" type="checkbox" name="toggleResolution" onchange="toggleResolution()"> | |
| <input id="btnReset" class="icon" type="checkbox" name="reset" onclick="reset()"> | |
| </div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <div id="container"> | |
| <div class="tile"></div> | |
| </div> | |
| <div id="links"> | |
| <div class="meta-link"> | |
| <span class="label">Links</span> | |
| <span class="dot">·</span> | |
| <a class="source" href="https://rauno.me/" target="_blank" title="Source"> | |
| <i class="fa-solid fa-link"></i> |