vscode-cloak copilot-instructions.md

vscode-cloak copilot-instructions.md is an instructions file for GitHub Copilot from johnpapa/vscode-cloak. It costs 868 tokens per session, scanned A, original, MIT.

A set of coding guidelines for Cloak, a Visual Studio Code extension written in TypeScript. It defines the project's preferred TypeScript style, extension structure, and configuration patterns.

In plain words
What is it for?
Use it when adding or editing VS Code commands, configuration helpers, models, extension code, and TypeScript modules in the Cloak project.
Why use it?
It gives an AI assistant concrete conventions to follow when changing the extension. This keeps command handlers, settings access, exports, and API usage consistent.

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/johnpapa/vscode-cloak/copilot-instructions
Clone the repo
git clone --depth 1 https://github.com/johnpapa/vscode-cloak

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-cloak copilot-instructions.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/johnpapa/vscode-cloak/copilot-instructions.svg)](https://agentmods.dev/instructions/johnpapa/vscode-cloak/copilot-instructions)
Your own site
<a href="https://agentmods.dev/instructions/johnpapa/vscode-cloak/copilot-instructions"><img src="https://agentmods.dev/badge/instructions/johnpapa/vscode-cloak/copilot-instructions.svg" alt="Measured on agentmods" height="20"></a>
Per session 868 This file is loaded in full into every session.
When invoked 868 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.00868 $0.00868
Opus 5 $0.00434 $0.00434
Sonnet 5 $0.00174 $0.00174
Haiku 4.5 $0.00087 $0.00087

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

Security

Grade A, and why

vscode-cloak 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 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/copilot-instructions.md · 49 lines

How it starts

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

Copilot Instructions — Cloak

Project Type

This is a VS Code extension written in TypeScript. The package.json contributes field is the product spec — commands, settings, menus, and keybindings are all declared there.

TypeScript Conventions

  • Use strict mode (enforced by tsconfig.json)
  • Prefer async/await over raw Promises
  • Use the vscode namespace for all VS Code API calls — import as import * as vscode from 'vscode'
  • Destructure vscode submodules at the top of a file when used repeatedly (e.g., const { commands } = vscode)
  • Export functions and classes — avoid default exports
  • Use enums for string constants (Commands, Settings, Sections) rather than raw strings

Extension Patterns

  • Command handler pattern: Each command handler is an exported async function in src/commands.ts, registered in src/extension.ts via commands.registerCommand(Commands.enumValue, handler)
  • Configuration access: Always use the helpers in src/configuration/ — never call vscode.workspace.getConfiguration() directly in command handlers
  • Re-export barrels: Both src/models/index.ts and src/configuration/index.ts re-export all members. Import from the barrel ('./models', './configuration') not from individual files
  • Status bar: Single shared instance in src/statusbar.ts — left-aligned, uses Codicon $(eye)

Code Style

  • Formatter: Prettier — single quotes, trailing commas, 100-char line width, 2-space indent (see .prettierrc.js)
  • Linter: ESLint with @typescript-eslint parser (see .eslintrc)
  • Lint with npm run lint, auto-fix with npm run lint-fix

Test Conventions

  • Runner: Mocha with TDD UI (suite, test, suiteSetup, suiteTeardown)
  • Host: Tests run inside a VS Code instance via vscode-test — they are integration tests, not unit tests
  • Test files: Place tests in src/test/suite/ with .test.ts suffix
  • Setup/teardown: Use setupTestSuite() and teardownTestSuite() from src/test/suite/lib/setup-teardown-test-suite.ts to save and restore user settings
  • Assertions: Use Node's built-in assert module
  • Run with npm test (compiles first) or npm run just-test (assumes already compiled)

Read the full file on GitHub · 49 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 · 49 lines · 868 tokens per session scan A 884258a9c13f

Subscribe to this mod's changes

vscode-cloak copilot-instructions.md is an instructions file published in the GitHub repository johnpapa/vscode-cloak (119 stars, last pushed 24d ago), licensed MIT. It adds 868 tokens to every session, about $0.0043 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.