contexture typescript.instructions.md

Project instructions for TypeScript code covering asynchronous work, modules, type narrowing, exhaustive checks, and the type system.

In plain words
What is it for?
Use them while editing TypeScript or TSX files to guide promise handling, exports, async callbacks, type checks, and exhaustive logic.
Why use it?
They prevent common TypeScript mistakes such as ignored promise failures, unsafe module choices, and incomplete handling of possible values.

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/ackeskin/contexture/typescript
Clone the repo
git clone --depth 1 https://github.com/AcKeskin/contexture

Made for: GitHub Copilot.

Per session 847 This file is loaded in full into every session.
When invoked 847 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.00847 $0.00847
Opus 5 $0.00424 $0.00424
Sonnet 5 $0.00169 $0.00169
Haiku 4.5 $0.00085 $0.00085

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

Security

Grade A, and why

contexture 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 yesterday.

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 · 44 lines

How it starts

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

typescript rules

Auto-loaded by Copilot when editing files matching **/*.{ts,tsx}. Generated from architectural-rules/typescript/ — do not hand-edit.

TypeScript async

Never leave a promise floating — await it, return it, or explicitly void it. An unawaited promise drops its rejection on the floor (unhandled rejection) and breaks ordering assumptions. Prefer async/await over .then() chains for sequential work — flatter, debuggable, and error handling is one try/catch instead of scattered .catch(). Type async returns as Promise<T> explicitly on public APIs. Let the caller see the contract without inferring it. Do not pass an async callback where a synchronous one is expected (Array.forEach, most event handlers) — the returned promise is ignored and errors vanish. Use for...of with await, or Promise.all(map(...)).

Why: floating promises and async-callback-in-forEach are the two patterns that silently swallow async errors in TS — they look correct and fail invisibly. Source: TypeScript Handbook, typescript-eslint rules.

TypeScript modules

Prefer named exports over default exports. Named exports are refactor-safe (rename propagates), discoverable by autocomplete, and avoid the "default-export sprawl" where every file's main thing is anonymously default. Use configured path aliases (@/domain/...) instead of deep relative chains (../../../..). Relative-depth churn on every move is friction the bundler can erase. No circular module dependencies. They cause undefined-at-import-time bugs that depend on evaluation order. Break the cycle by extracting the shared piece. Use import type { X } for type-only imports — it is erased at compile time and prevents accidental runtime coupling / side-effect imports.

Why: default exports defeat rename-refactoring and circular deps produce order-dependent undefined that reproduces only sometimes — both are structural, not stylistic. Source: TypeScript Handbook, Google TypeScript Style Guide.

Read the full file on GitHub · 44 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. yesterday First seen · 44 lines · 847 tokens per session scan A 507d9813f206

Subscribe to this mod's changes

contexture typescript.instructions.md is an instructions file published in the GitHub repository AcKeskin/contexture (2 stars, last pushed 1mo ago), licensed MIT. It adds 847 tokens to every session, about $0.0042 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-31.