vscode-copilot-chat prompt-tsx.instructions.md

vscode-copilot-chat prompt-tsx.instructions.md is an instructions file for GitHub Copilot from microsoft/vscode-copilot-chat. It costs 1,008 tokens per session, scanned A, a copy of vscode prompt-tsx.instructions.md, MIT.

Coding guidelines for TSX files that build AI prompts with the prompt-tsx library. They describe how to structure prompt components, pass properties, and handle asynchronous work.

In plain words
What is it for?
Writing or changing prompt-tsx components, including prompts that read files or perform other asynchronous work.
Why use it?
They give the coding agent consistent patterns for prompt components and help it manage prompt size and ordering correctly.

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/microsoft/vscode-copilot-chat/prompt-tsx
Clone the repo
git clone --depth 1 https://github.com/microsoft/vscode-copilot-chat

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 vscode-copilot-chat prompt-tsx.instructions.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/microsoft/vscode-copilot-chat/prompt-tsx.svg)](https://agentmods.dev/instructions/microsoft/vscode-copilot-chat/prompt-tsx)
Your own site
<a href="https://agentmods.dev/instructions/microsoft/vscode-copilot-chat/prompt-tsx"><img src="https://agentmods.dev/badge/instructions/microsoft/vscode-copilot-chat/prompt-tsx.svg" alt="Measured on agentmods" height="20"></a>
Per session 1,008 This file is loaded in full into every session.
When invoked 1,008 The same file — it is already loaded in full.
Security scan A 0 findings. Scan, not verified.
Origin 100% copy Near-identical to another mod 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.01008 $0.01008
Opus 5 $0.00504 $0.00504
Sonnet 5 $0.00202 $0.00202
Haiku 4.5 $0.00101 $0.00101

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

Security

Grade A, and why

vscode-copilot-chat prompt-tsx.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.

Origin

This is a copy

100% identical to vscode prompt-tsx.instructions.md — 0 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

.github/instructions/prompt-tsx.instructions.md · 168 lines

How it starts

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

Guidelines for TSX files using prompt-tsx focusing on specific patterns and token budget management for AI prompt engineering.

Component Structure

Base Pattern

  • Extend PromptElement<Props> or PromptElement<Props, State> for all prompt components
  • Props interfaces must extend BasePromptElementProps
interface MyPromptProps extends BasePromptElementProps {
	readonly userQuery: string;
}

class MyPrompt extends PromptElement<MyPromptProps> {
	render() {
		return (
			<>
				<SystemMessage priority={1000}>...</SystemMessage>
				<UserMessage priority={900}>{this.props.userQuery}</UserMessage>
			</>
		);
	}
}

Async Components

  • The render method can be async for components that need to perform async operations
  • All async work should be done directly in the render method
class FileContextPrompt extends PromptElement<FileContextProps> {
	async render() {
		const fileContent = await readFileAsync(this.props.filePath);
		return (
			<>
				<SystemMessage priority={1000}>File content:</SystemMessage>
				<UserMessage priority={900}>{fileContent}</UserMessage>
			</>
		);
	}
}

Prompt-Specific JSX

Line Breaks

  • CRITICAL: Use <br /> for line breaks - newlines are NOT preserved in JSX
  • Never rely on whitespace or string literal newlines
// ✅ Correct
<SystemMessage>
	You are an AI assistant.<br />
	Follow these guidelines.<br />
</SystemMessage>

// ❌ Wrong - newlines will be collapsed
<SystemMessage>
	You are an AI assistant.
	Follow these guidelines.
</SystemMessage>

Priority System

Priority Values

  • Higher numbers = higher priority (like z-index)
  • Use consistent ranges:
    • System messages: 1000
    • User queries: 900
    • Recent history: 700-800
    • Context/attachments: 600-700
    • Background info: 0-500
<SystemMessage priority={1000}>...</SystemMessage>
<UserMessage priority={900}>{query}</UserMessage>
<HistoryMessages priority={700} />
<ContextualData priority={500} />

Read the full file on GitHub · 168 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. 5d ago First seen · 168 lines · 1,008 tokens per session scan A 9801de07d128

Subscribe to this mod's changes

vscode-copilot-chat prompt-tsx.instructions.md is an instructions file published in the GitHub repository microsoft/vscode-copilot-chat (9,971 stars, last pushed 3mo ago), licensed MIT. It adds 1,008 tokens to every session, about $0.0050 per session on Opus 5. A static security scan graded it A with 0 findings. It is 100% identical to vscode prompt-tsx.instructions.md, differing in 0 lines, and is treated as a copy.

Related

Other instructions, from other repositories