feima-copilot-llms-extension copilot-instructions.md

feima-copilot-llms-extension copilot-instructions.md is an instructions file for GitHub Copilot from feimacode/feima-copilot-llms-extension. It costs 425 tokens per session, scanned A, original, MIT.

Coding instructions for a Feima Copilot extension, including how its Chinese translations are organized. It distinguishes runtime messages from labels declared in the extension settings.

In plain words
What is it for?
Use it when adding or changing translated messages, commands, settings, or other user-facing text in the Feima extension.
Why use it?
It prevents translations from being added to the wrong file or using keys that the extension cannot find. That avoids missing or incorrect localized text.

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/feimacode/feima-copilot-llms-extension/copilot-instructions
Clone the repo
git clone --depth 1 https://github.com/feimacode/feima-copilot-llms-extension

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 feima-copilot-llms-extension copilot-instructions.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/feimacode/feima-copilot-llms-extension/copilot-instructions.svg)](https://agentmods.dev/instructions/feimacode/feima-copilot-llms-extension/copilot-instructions)
Your own site
<a href="https://agentmods.dev/instructions/feimacode/feima-copilot-llms-extension/copilot-instructions"><img src="https://agentmods.dev/badge/instructions/feimacode/feima-copilot-llms-extension/copilot-instructions.svg" alt="Measured on agentmods" height="20"></a>
Per session 425 This file is loaded in full into every session.
When invoked 425 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.00425 $0.00425
Opus 5 $0.00212 $0.00212
Sonnet 5 $0.00085 $0.00085
Haiku 4.5 $0.00042 $0.00042

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

Security

Grade A, and why

feima-copilot-llms-extension copilot-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 4d 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/copilot-instructions.md · 50 lines

What it actually says

Feima Copilot LLMs Extension - Copilot Instructions

Localization

This extension has two separate and distinct localization systems. Do not mix them up.

1. Runtime strings — l10n/bundle.l10n.zh-cn.json

Used for strings displayed at runtime from TypeScript code via vscode.l10n.t().

Key rule: the key IS the full English string, not a short identifier.

// ✅ Correct — full English string as key
vscode.l10n.t('Signed in as {0}', session.account.label)
vscode.l10n.t('Please sign in to Feima first')

// ❌ Wrong — short identifier keys do NOT resolve to translations
vscode.l10n.t('error.signIn')
vscode.l10n.t('message.loggedIn')

When adding a new runtime string:

  1. Use the full English text as the vscode.l10n.t() argument
  2. Add the translation to l10n/bundle.l10n.zh-cn.json with the same full English string as the key:
{
    "Signed in as {0}": "已登录为: {0}",
    "Please sign in to Feima first": "请先登录 Feima 账号"
}

2. Manifest strings — package.nls.json / package.nls.zh-cn.json

Used only for static strings declared in package.json contributions (commands, settings, etc.) via %key% syntax.

// package.json
{ "title": "%command.signIn.title%" }

// package.nls.json (English default)
{ "command.signIn.title": "Sign In" }

// package.nls.zh-cn.json (Chinese translation)
{ "command.signIn.title": "登录" }

These keys are never used in TypeScript code. vscode.l10n.t('command.signIn.title') would display the literal string "command.signIn.title" — not the translation.

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. 4d ago First seen · 50 lines · 425 tokens per session scan A db1fa43b472d

Subscribe to this mod's changes

feima-copilot-llms-extension copilot-instructions.md is an instructions file published in the GitHub repository feimacode/feima-copilot-llms-extension (5 stars, last pushed 4d ago), licensed MIT. It adds 425 tokens to every session, about $0.0021 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.