file-style-conventions

file-style-conventions is an instructions file for GitHub Copilot from ourobx/agent-ebpf. It costs 792 tokens per session, scanned C, original, MIT.

A set of file-writing rules: non-Markdown files contain no emoji, and YAML files end with exactly one newline.

In plain words
What is it for?
It guides the creation and editing of source code, configuration files, scripts, and YAML files.
Why use it?
It prevents encoding, parsing, formatting, and style problems caused by accidental characters or incorrect file endings.

Instructions file for GitHub Copilot

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add instructions/ourobx/agent-ebpf/file-style-conventions
Clone the repo
git clone --depth 1 https://github.com/ourobx/agent-ebpf

Made for: GitHub Copilot.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for file-style-conventions

README.md
[![agentmods](https://agentmods.dev/badge/instructions/ourobx/agent-ebpf/file-style-conventions.svg)](https://agentmods.dev/instructions/ourobx/agent-ebpf/file-style-conventions)
Your own site
<a href="https://agentmods.dev/instructions/ourobx/agent-ebpf/file-style-conventions"><img src="https://agentmods.dev/badge/instructions/ourobx/agent-ebpf/file-style-conventions.svg" alt="Measured on agentmods" height="20"></a>
Per session 792 This file is loaded in full into every session.
When invoked 792 The same file — it is already loaded in full.
Security scan C 1 finding. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00792 $0.00792
Opus 5 $0.00396 $0.00396
Sonnet 5 $0.00158 $0.00158
Haiku 4.5 $0.00079 $0.00079

Measured today against content hash c20058713bd9, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade C, and why

file-style-conventions scanned grade C with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured today.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Hidden instructionshighPrompt injection

Directives inside HTML comments, invisible characters or bidirectional overrides are read by the model and not by the person reviewing the file.

<!-- Copilot Instruction Telemetry: This file was auto-generated by Claude Skills Manager -->
.github/instructions/file-style-conventions.instructions.md · 63 lines

How it starts

The opening of the file, as written. The whole thing — 63 lines — stays where its author put it; the contents beside it link to each section on GitHub.

file-style-conventions

File Style Conventions

Two small, easy-to-violate-by-accident conventions enforced on every file write/edit:

1. No emoji outside Markdown

  • Files with extension .md (or .mdx) may contain emoji if the user asked for them — don't add emoji proactively even there.
  • Every other file type (source code, YAML/JSON/TOML config, shell/PS1 scripts, Dockerfiles, CI configs, etc.) must contain no emoji characters at all — including in comments, log messages, string literals, and commit messages/PR titles (these aren't files, but the same rule applies).
  • Why: emoji can break strict-encoding parsers, inflate diffs with multi-byte sequences, misrender in some terminals/log viewers, and are inconsistent with this project's style.
  • Before finalizing a non-.md file you wrote/edited, scan for emoji (common ranges: U+1F300U+1FAFF, U+2600U+27BF, U+2190U+21FF arrows used decoratively, variation selectors U+FE0F). If found, replace with plain text (e.g. [OK]/[FAIL] instead of check/cross emoji, -> instead of arrow emoji) or remove entirely.

2. YAML files end with a trailing newline

  • Every .yml/.yaml file must end with exactly one \n (the file's last byte is a newline, and there is no trailing blank line beyond it).
  • This matches the POSIX "text file ends with a newline" convention, avoids git diff showing \ No newline at end of file, and satisfies yamllint's new-line-at-end-of-file rule (the default in most CI lint jobs — see ci-pipeline-debug/gitlab-pipeline-ops).
  • After writing/editing a .yml/.yaml file, verify:
    tail -c1 path/to/file.yml | od -c | head -1   # should show \n, not empty
    
    or in PowerShell:
    $bytes = [System.IO.File]::ReadAllBytes("path/to/file.yml")
    $bytes[-1] -eq 10   # 10 = LF; should be True
    
  • If missing, append a single newline — don't add multiple blank lines at end of file.

Read the full file on GitHub · 63 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. today Changed c20058713bd9
  2. 4d ago First seen · 63 lines · 792 tokens per session scan C dd39973c27ac

Subscribe to this mod's changes

file-style-conventions is an instructions file published in the GitHub repository ourobx/agent-ebpf (1 stars, last pushed today), licensed MIT. It adds 792 tokens to every session, about $0.0040 per session on Opus 5. A static security scan graded it C with 1 finding (hidden instructions). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.