with one click
scripting
Conventions for writing and executing scripts (TS, Bash, etc.).
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
Conventions for writing and executing scripts (TS, Bash, etc.).
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
Guidelines for Michael Vorburger's personal Git commit style.
Guidelines for Michael Vorburger's preferred Git workflow.
Java coding, testing, and logging conventions.
Guidelines for determining how to test a project based on its contents.
Enforces TypeScript and project-specific coding standards, including Bun usage and the zero-warning policy. Use this skill when creating or modifying any TypeScript or configuration files.
Update Nix flake inputs.
| name | scripting |
| description | Conventions for writing and executing scripts (TS, Bash, etc.). |
Always follow these conventions when writing or documenting scripts for this project:
*.ts scripts by prefixing them with bun in documentation or commands if they have a shebang (#!/usr/bin/env bun). Rely on the shebang and execute the file directly../ prefix when executing scripts from the root of the repository if the relative path (e.g., scripts/my-script.ts) is sufficient.chmod +x).#!/usr/bin/env bun as the shebang for TypeScript scripts intended to be run with Bun..ts extension to ensure proper tooling support (type-checking, formatting).