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.
npx agentmods add instructions/yinzhenyu-su/weekly-git-summary/copilot-instructionsgit clone --depth 1 https://github.com/yinzhenyu-su/weekly-git-summaryWrote 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.
[](https://agentmods.dev/instructions/yinzhenyu-su/weekly-git-summary/copilot-instructions)<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>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.
| Model | Per session | Once 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 |
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/` 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) ornpm install(fallback if network issues) - Verify setup:
node --version && bun --version
Build Process
- Build the CLI tool:
bun run build.tsorbun 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
- CLI tests:
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.
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.
- 4d ago First seen · 210 lines · 1,863 tokens per session scan F a8dd7c9b1305
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.
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.
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.
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.
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.
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).
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.