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/dalehurley/codewithphp/copilot-instructionsgit clone --depth 1 https://github.com/dalehurley/codewithphpWhat 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.02632 | $0.02632 |
| Opus 5 | $0.01316 | $0.01316 |
| Sonnet 5 | $0.00526 | $0.00526 |
| Haiku 4.5 | $0.00263 | $0.00263 |
Grade A, and why
codewithphp 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 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.
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.
How it starts
The opening of the file, as written. The whole thing — 285 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Copilot AI Agent Instructions for PHP-From-Scratch
Project Overview
- Purpose: This repo is a comprehensive, example-driven PHP learning series. It uses VitePress for documentation and organizes code samples by chapter.
- Structure:
docs/— VitePress content root (site config, landing, series, chapters, code)docs/series/<series>/chapters/— Numbered markdown chaptersdocs/series/<series>/code/— Code samples for each chapter, colocated.github/workflows/— GitHub Actions for VitePress deploy.cursor/rules/— Project structure and navigation rulespackage.json— VitePress scripts (dev/build/preview)
Key Conventions & Patterns
- Each series is self-contained: All content, code, and navigation for a series lives under its own folder in
docs/series/. - Code samples: Each chapter has matching code in
code/, named by chapter and topic. Exercise solutions are insolutions/subfolders. - Markdown-first: All learning content is authored in markdown, with code blocks and explanations inline.
- PSR-12/PSR-4: Code samples follow modern PHP standards (see Chapter 16 for details).
- No framework dependencies unless in framework-specific chapters (e.g., Laravel, Symfony).
- Composer: Used only in relevant chapters; not required for the whole repo.
Developer Workflows
- Preview docs locally:
npm install npm run docs:dev # Visit http://localhost:5173 - Build for production:
npm run docs:build - Deploy:
- GitHub Actions auto-deploys
mainbranch to Pages using.github/workflows/deploy.yml.
- GitHub Actions auto-deploys
- Test code samples:
- Run PHP scripts directly:
php <filename>.php - Some chapters include test scripts or expected output in comments/README.
- Run PHP scripts directly:
- Debugging:
- Use VS Code with Xdebug (see
00-setup/README.mdfor setup and troubleshooting).
- Use VS Code with Xdebug (see
Integration Points
- VitePress: All site config in
docs/.vitepress/config.ts. - GitHub Pages: Deploy via Actions; see
.github/workflows/. - Composer: Only in chapters that teach dependency management (not global).
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.
- 2d ago First seen · 285 lines · 2,632 tokens per session scan A a35f70b1b6ac
codewithphp copilot-instructions.md is an instructions file published in the GitHub repository dalehurley/codewithphp (5 stars, last pushed 6mo ago), licensed MIT. It adds 2,632 tokens to every session, about $0.0132 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.
Other instructions, from other repositories
learn-anything CLAUDE.md
Instructions for ChenChenyaqi/learn-anything, covering claude.md, project overview, commands, per-package commands and architecture (monorepo).
zero2Agent AGENTS.md
Instructions for ranxi2001/zero2Agent, covering zero2agent repository guide, purpose, start every task, source of truth and repository skills.
easy-vibe CLAUDE.md
Claude Code instructions for datawhalechina/easy-vibe, covering claude.md, project overview, development commands, start local documentation server and build/run commands.
p5.js AGENTS.md
AGENTS.md instructions for processing/p5.js, covering detailed guidelines for ai coding assistants and agents, generating any analysis of the codebase, stop signs for agents, character and tone and who you are in this conversation.
easy-vibe AGENTS.md
AGENTS.md instructions for datawhalechina/easy-vibe, covering repository guidelines, project structure & module organization, build, test, and development commands, coding style & naming conventions and testing guidelines.
Clew CLAUDE.md
Instructions for miuuyy/Clew, covering claude.md, read first, product overview, core boundaries and engineering rules.