llm-ide-rules typescript.instructions.md

llm-ide-rules typescript.instructions.md is an instructions file for GitHub Copilot from iloveitaly/llm-ide-rules. It costs 448 tokens per session, scanned A, original, MIT.

Project-specific rules for TypeScript code, including package commands, file organization, environment variables, logging, and React conventions.

In plain words
What is it for?
Use them when editing a TypeScript or React project that uses pnpm, Just commands, shared folders, structured logging, and the documented helper conventions.
Why use it?
They give an AI coding assistant the team’s expected way to build and organize TypeScript software, reducing inconsistent code and incorrect commands.

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/iloveitaly/llm-ide-rules/typescript
Clone the repo
git clone --depth 1 https://github.com/iloveitaly/llm-ide-rules

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 llm-ide-rules typescript.instructions.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/iloveitaly/llm-ide-rules/typescript.svg)](https://agentmods.dev/instructions/iloveitaly/llm-ide-rules/typescript)
Your own site
<a href="https://agentmods.dev/instructions/iloveitaly/llm-ide-rules/typescript"><img src="https://agentmods.dev/badge/instructions/iloveitaly/llm-ide-rules/typescript.svg" alt="Measured on agentmods" height="20"></a>
Per session 448 This file is loaded in full into every session.
When invoked 448 The same file — it is already loaded in full.
Security scan A 0 findings. 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.00448 $0.00448
Opus 5 $0.00224 $0.00224
Sonnet 5 $0.00090 $0.00090
Haiku 4.5 $0.00045 $0.00045

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

Security

Grade A, and why

llm-ide-rules typescript.instructions.md scanned grade A with 0 findings 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 5d ago.

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.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.github/instructions/typescript.instructions.md · 34 lines

What it actually says

Typescript

  • Use pnpm or pnpx and not npm or npx.
    • Use just js_shadcn, just pnpm, and just js_lint instead of executing these operations exactly. @just/javascript.just
  • Node libraries are not available
  • Use lib/ for generic code, utils/ for project utilities, hooks/ for React hooks, and helpers/ for page-specific helpers.
  • Prefer function theName() { over const theName = () =>
  • Use import { invariant } from @epic-web/invariant instead of another invariant library
  • Use requireEnv("VITE_THE_ENV_VAR") instead of process.env.THE_ENV_VAR
  • Don't use console.{log,error}. Use from ~/configuration/logging import log and log.info("string", {structured: "log"}) instead.

Here's how frontend code is organized in web/app/:

  • lib/ not specific to the project. This code could be a separate package at some point.
  • utils/ project-specific code, but not specific to a particular page.
  • helpers/ page- or section-specific code that is not a component, hook, etc.
  • hooks/ react hooks.
  • configuration/ providers, library configuration, and other setup code.
  • components/ react components.
    • ui/ reusable ShadCN UI components (buttons, forms, etc.).
    • shared/ components shared across multiple pages.
    • create additional folders for route- or section-specific components.

Dates & Times

  • Always use the ISO 8601 format when sending dates in an API request.
  • Use Temporal for any date or time manipulation. You can assume it's available in the browser.
  • DateTime objects should always be converted to UTC before included in any API request. Never send a timestamp with the user's timezone.
  • Unless otherwise specified, do not shift server-provided times based on the user's timezone.
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. 5d ago First seen · 34 lines · 448 tokens per session scan A ed93ee3b08e5

Subscribe to this mod's changes

llm-ide-rules typescript.instructions.md is an instructions file published in the GitHub repository iloveitaly/llm-ide-rules (13 stars, last pushed 4d ago), licensed MIT. It adds 448 tokens to every session, about $0.0022 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other instructions, from other repositories