weekly-git-summary copilot-instructions.md

weekly-git-summary copilot-instructions.md is an instructions file for GitHub Copilot from yinzhenyu-su/weekly-git-summary. It costs 1,863 tokens per session, scanned F, original, MIT.

Repository-specific instructions for setting up, building, and testing the weekly-git-summary command-line tool.

In plain words
What is it for?
Use them when installing the project, running its Bun or Node.js build, checking generated files, or following its test process.
Why use it?
They give the coding agent the project’s expected runtimes, dependency commands, build output, and verification checks in one place.

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/yinzhenyu-su/weekly-git-summary/copilot-instructions
Clone the repo
git clone --depth 1 https://github.com/yinzhenyu-su/weekly-git-summary

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 weekly-git-summary copilot-instructions.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/yinzhenyu-su/weekly-git-summary/copilot-instructions.svg)](https://agentmods.dev/instructions/yinzhenyu-su/weekly-git-summary/copilot-instructions)
Your own site
<a href="https://agentmods.dev/instructions/yinzhenyu-su/weekly-git-summary/copilot-instructions"><img src="https://agentmods.dev/badge/instructions/yinzhenyu-su/weekly-git-summary/copilot-instructions.svg" alt="Measured on agentmods" height="20"></a>
Per session 1,863 This file is loaded in full into every session.
When invoked 1,863 The same file — it is already loaded in full.
Security scan F 4 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.01863 $0.01863
Opus 5 $0.00932 $0.00932
Sonnet 5 $0.00373 $0.00373
Haiku 4.5 $0.00186 $0.00186

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

Security

Grade F, and why

weekly-git-summary copilot-instructions.md scanned grade F with 4 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.

Asks for rootmediumPrivilege escalation

A mod that escalates privileges can change anything on the machine, not only the project.

- Install Node.js ≥22.0.0: `curl -fsSL https://nodejs.org/dist/v22.14.0/node-v22.14.0-linux-x64.tar.xz -o node.tar.xz && tar -xf node.tar.xz && sudo cp -r node-v22.14.0-linux-x64/* /usr/local/`

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.

- Install Bun runtime: `curl -fsSL https://bun.sh/install | bash && source ~/.bashrc && export PATH="$HOME/.bun/bin:$PATH"`

Recursive force deletehighDestructive command

rm -rf with a variable or a broad path is one typo away from removing the wrong tree.

- **Build failures**: Clean build directory: `rm -rf build && bun run build`

Makes network callslowCapability

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

- Install Node.js ≥22.0.0: `curl -fsSL https://nodejs.org/dist/v22.14.0/node-v22.14.0-linux-x64.tar.xz -o node.tar.xz && tar -xf node.tar.xz && sudo cp -r node-v22.14.0-linux-x64/* /usr/local/`
.github/copilot-instructions.md · 210 lines

How it starts

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

weekly-git-summary Copilot Instructions

Always reference these instructions first and fallback to search or bash commands only when you encounter unexpected information that does not match the info here.

Working Effectively

Environment Setup and Dependencies

  • Install Node.js ≥22.0.0: curl -fsSL https://nodejs.org/dist/v22.14.0/node-v22.14.0-linux-x64.tar.xz -o node.tar.xz && tar -xf node.tar.xz && sudo cp -r node-v22.14.0-linux-x64/* /usr/local/
  • Install Bun runtime: curl -fsSL https://bun.sh/install | bash && source ~/.bashrc && export PATH="$HOME/.bun/bin:$PATH"
  • Install dependencies: bun install (preferred) or npm install (fallback if network issues)
  • Verify setup: node --version && bun --version

Build Process

  • Build the CLI tool: bun run build.ts or bun run build
  • Build time: ~5 seconds. NEVER CANCEL. Set timeout to 60+ seconds.
  • Output: Creates build/cli.js (main entry), build/weekly-git-summary.js, platform scripts, and HTML template
  • Verify build: ls -la build/ should show: cli.js, weekly-git-summary.js, weekly-git-summary.sh, weekly-git-summary.ps1, git-log.html

Testing

  • Run all tests: bun test
  • Test time: ~4 seconds. NEVER CANCEL. Set timeout to 30+ seconds.
  • Expected: 40 tests pass, 0 fail
  • Run specific test suites:
    • CLI tests: bun test tests/cli.test.ts
    • Build tests: bun test tests/build.test.ts
    • Integration tests: bun test tests/integration.test.ts
    • Windows tests: bun test tests/windows.test.ts

Linting and Code Quality

  • Run linting: npm run lint
  • Fix linting issues: npm run lint:fix
  • Lint time: ~2 seconds. NEVER CANCEL.
  • TypeScript check: bun tsc --noEmit

CLI Tool Usage and Validation

Basic CLI Testing

  • Show help: node build/cli.js --help
  • Test JSON output: node build/cli.js --dir . --since 2024-01-01 --json
  • Test Markdown output: node build/cli.js --dir . --since 2024-01-01 --md
  • Test HTML output: node build/cli.js --dir . --since 2024-01-01 --html
  • CLI execution time: <2 seconds per command. NEVER CANCEL.

Read the full file on GitHub · 210 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. 4d ago First seen · 210 lines · 1,863 tokens per session scan F a8dd7c9b1305

Subscribe to this mod's changes

weekly-git-summary copilot-instructions.md is an instructions file published in the GitHub repository yinzhenyu-su/weekly-git-summary (203 stars, last pushed 7d ago), licensed MIT. It adds 1,863 tokens to every session, about $0.0093 per session on Opus 5. A static security scan graded it F with 4 findings (asks for root, downloads and executes remote code, recursive force delete). 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

claude-auto-resume CLAUDE.md

Instructions for terryso/claude-auto-resume, covering claude.md, project overview, installation, method 1: using makefile (recommended) and install globally.

terryso/claude-auto-resume · 784 tokens

deva CLAUDE.md

Instructions for thevibeworks/deva, covering claude.md, deva architecture: container-based agent sandboxing and we're following issue-based development (ibd) workflow.

thevibeworks/deva · 306 tokens

deva AGENTS.md

Instructions for thevibeworks/deva: Repo guidance for coding agents lives in CLAUDE.md (architecture, issue-based development workflow) and workflows/ (issue, commit, PR, release conventions). Read those before changing anything.

thevibeworks/deva · 92 tokens

process-mcp AGENTS.md

AGENTS.md instructions for Kruceo/process-mcp, covering agents.md — process mcp server, key decisions, commit conventions (pipoca-style), examples and versioning.

Kruceo/process-mcp · 586 tokens

vscode buildNext.instructions.md

Working notes and architecture documentation for the new esbuild-based build system in build/next. Use when making changes to the new build pipeline (transpile/bundle commands, NLS plugin, source-map handling, resource copying, or self-hosting watch tasks).

microsoft/vscode · 6,785 tokens

spec-kit AGENTS.md

AGENTS.md instructions for github/spec-kit, covering agents.md, about spec kit and specify, quickstart — add a new integration in 5 steps, integration architecture and integrationmanifest — file tracking.

github/spec-kit · 7,104 tokens