cortex copilot-instructions.md

Workspace instructions for CortexPrism’s Cortex project and its ContextStream memory system. They define required startup, context, search, and session tool calls for keeping work grounded.

In plain words
What is it for?
Use them when starting or continuing Cortex work, loading project context, searching files, recording plans, and following ContextStream session rules.
Why use it?
They make the agent follow the project’s required context and memory workflow instead of relying only on the current chat. This helps preserve relevant project information across work sessions.

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/cortexprism/cortex/copilot-instructions
Clone the repo
git clone --depth 1 https://github.com/CortexPrism/cortex

Made for: GitHub Copilot.

Per session 10,877 This file is loaded in full into every session.
When invoked 10,877 The same file — it is already loaded in full.
Security scan C 2 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.10877 $0.10877
Opus 5 $0.05438 $0.05438
Sonnet 5 $0.02175 $0.02175
Haiku 4.5 $0.01088 $0.01088

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

Security

Grade C, and why

cortex copilot-instructions.md scanned grade C with 2 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 2d 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.

Downloads and executes remote codehighSupply chain

curl | sh runs whatever the server returns today, which is not necessarily what it returned when this was reviewed.

curl -fsSL https://contextstream.io/scripts/setup.sh | bash

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

curl -fsSL https://contextstream.io/scripts/setup.sh | bash
.github/copilot-instructions.md · 822 lines

How it starts

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

ContextStream Rules

MANDATORY STARTUP: On the first message of EVERY session call init(...). Then call context(user_message="...") when that tool is exposed; if context is unavailable in this MCP surface, call session(action="ground", user_message="...") instead. On subsequent messages, call context(...) first by default, or session(action="ground", user_message="...") when context is unavailable. A narrow bypass is allowed only for immediate read-only ContextStream calls when prior context is still fresh and no state-changing tool has run.

Required Tool Calls

  1. First message in session: Call init(folder_path="<project_path>") then context(user_message="...", session_id="<id>"); if context is unavailable, call session(action="ground", user_message="...")
  2. Subsequent messages (default): Call context(user_message="...", session_id="<id>") first, or session(action="ground", user_message="...") when context is unavailable. Narrow bypass: immediate read-only ContextStream calls with fresh context + no state changes.
  3. Before file search: Call search(mode="auto", query="...") before local tools

Read-only examples (default: call context(...) first when that tool is exposed; if context is unavailable, call session(action="ground", user_message="...") for the same grounding bundle. Narrow bypass only for immediate read-only ContextStream calls when context is fresh and no state-changing tool has run): workspace(action="list"|"get"|"create"), memory(action="list_docs"|"list_events"|"list_todos"|"list_tasks"|"list_transcripts"|"list_nodes"|"decisions"|"get_doc"|"get_event"|"get_task"|"get_todo"|"get_transcript"), session(action="get_lessons"|"get_plan"|"list_plans"|"recall"), media(action="list"|"search"|"status"), help(action="version"|"tools"|"auth"), project(action="list"|"get"|"index_status"), reminder(action="list"|"active"), any read-only data query

Read the full file on GitHub · 822 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. 2d ago First seen · 822 lines · 10,877 tokens per session scan C 31235c4d87bd

Subscribe to this mod's changes

cortex copilot-instructions.md is an instructions file published in the GitHub repository CortexPrism/cortex (192 stars, last pushed 2mo ago), licensed Apache-2.0. It adds 10,877 tokens to every session, about $0.0544 per session on Opus 5. A static security scan graded it C with 2 findings (downloads and executes remote code, makes network calls). 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

latchkey AGENTS.md

Instructions for imbue-ai/latchkey: For information about the high-level goal and motivations, see README.md.

imbue-ai/latchkey · 164 tokens

get-fable AGENTS.md

Instructions for imMamdouhaboammar/get-fable, covering get-fable repository instructions, purpose, working contract, canonical lifecycle packs and runtime semantics.

imMamdouhaboammar/get-fable · 733 tokens

atlas CLAUDE.md

Instructions for atlas-php/atlas: BEFORE ANY TASK: Read and follow AGENTS.md completely.

atlas-php/atlas · 27 tokens

lihongwei-cn CLAUDE.md

Instructions for LiHongwei-cn/lihongwei-cn, covering claude.md — claude code 项目记忆, 用户身份, 回复风格(红线), 网站 and 技术栈.

LiHongwei-cn/lihongwei-cn · 2,364 tokens

lihongwei-cn copilot-instructions.md

Instructions for LiHongwei-cn/lihongwei-cn: 1|# Universal Agent Spec — 通用规范核心 2| 3|> 本文件是所有 AI Agent 共享的行为规范。 4|> 各 Agent 适配文件(agents/ 目录)在部署时会把本文件内容与 Agent 专属配置合并。 5|> 修改本文件 = 修改所有 Agent 的行为。 6| 7|## 语言规则 8| 9|始终使用中文(简体中文)回复。 10| 11|仅以下内容使用英文: 12|- 代码本身(变量名、函数名、类名、关键字) 13|- URL 链接、命令行指令、API Key 14|…

LiHongwei-cn/lihongwei-cn · 1,631 tokens

github-agentic-workflows CLAUDE.md

Instructions for zircote-plugins/github-agentic-workflows, covering claude.md — aw-author plugin, project, commands, branching and quality gates.

zircote-plugins/github-agentic-workflows · 831 tokens