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]