new-instructions-file
Create new instructions file. Triggers on: 'create instructions', 'new instructions'.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Create new instructions file. Triggers on: 'create instructions', 'new instructions'.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Evaluate architectural decisions, propose ADRs. Triggers on: 'architecture review', 'ADR', 'design review'.
Perform structured code reviews. Triggers on: 'code review', 'review code', 'review PR'.
Create GitHub pull requests. Triggers on: 'create PR', 'pull request', 'submit PR'.
Evaluate strategic direction changes before execution. Triggers on: 'direction change', 'strategic decision', 'pivot'.
Triage and organize GitHub issues. Triggers on: 'triage', 'triage issues', 'organize backlog'.
Create new custom agent definition. Triggers on: 'create agent', 'new agent'.
| name | new-instructions-file |
| description | Create new instructions file. Triggers on: 'create instructions', 'new instructions'. |
Guide for creating directory-specific instructions that GitHub Copilot automatically loads.
GitHub Copilot supports copilot-instructions.md files in subdirectories. When Copilot works in a directory, it automatically loads the instructions from that directory's copilot-instructions.md, providing context-specific rules.
Choose a directory that has specific conventions worth documenting:
tests/ — test conventions, fixtures, naming patternsscripts/ — script conventions, execution protocolssrc/ — source code conventions, module patternsCreate <directory>/copilot-instructions.md with area-specific conventions:
# [Directory Name] Instructions
## Purpose
[What this directory contains and its role in the project.]
## Conventions
- [Convention 1 — naming, structure, or pattern rules]
- [Convention 2 — required elements or standards]
- [Convention 3 — anti-patterns to avoid]
## Key Files
| File | Purpose |
|------|---------|
| [file] | [what it does] |
## Common Tasks
### [Task 1]
[How to accomplish this task in this directory.]
### [Task 2]
[How to accomplish this task in this directory.]
If the project uses a central instructions file, add a reference to the new file:
## Nested Context
Directory-specific instructions are auto-loaded:
- `tests/copilot-instructions.md` — test conventions
- `<new-dir>/copilot-instructions.md` — [description]