Copilot instructions
.github/copilot-instructions.mdCopilot instructions
Quality
64/100
Scores the file, not the repository.Length
3,102 words
37 headings · 12 code blocksRepository
0
— · pushed 58 days agoLast changed
3 days ago
First indexed 3 days ago.1# Copilot Meta-Instructions — Depth-Priority Hierarchical AI-INSTRUCT V623**Role of this file**: META — defines AI tooling conventions and meta-rules for how the instruction system operates. Business domain rules live in `.hi/instruct.md` files throughout the directory tree.45**Template Version**: V6.0.06**Last Updated**: 2026-06-0578---910## Contents1112| Section | What's here |13|---------|-------------|14| [Read Project Specs First](#read-project-specs-first) | AI must load `dev-specs.md` at session start |15| [The Depth-Priority Hierarchical Paradigm](#the-depth-priority-hierarchical-paradigm) | How layering works |16| [Global Shared Instructions (`.ai/`)](#global-shared-instructions-ai) | Cross-cutting canonical files |17| [Agentic Runtime (`.ai/`)](#agentic-runtime-ai) | Governed tools, foresight, self-improvement, heartbeat |18| [AI Prompt Files (`.github/prompts/`)](#ai-prompt-files-githubprompts) | Slash commands |19| [Workflow Invocation Pattern](#workflow-invocation-pattern) | Workflows are repeatable; workflows vs. utilities; do not treat them as one-time setup |20| [Governed Workflows — Import/Merge Pattern Guard](#governed-workflows--importmerge-pattern-guard) | **CRITICAL:** Imports are orchestrated workflows, not ad-hoc copy operations |21| [Custom Agents (`.github/agents/`)](#custom-agents-githubagents) | Specialized personas |22| [Skills (`.github/skills/`)](#skills-githubskills) | Domain knowledge packs |23| [Git Hooks (`.github/hooks/`)](#git-hooks-githubhooks) | Commit-time safety checks |24| [YAML Frontmatter Schema](#yaml-frontmatter-schema) | Required and optional fields for prompts, agents, skills |25| [`.dev-docs/` — Development Documentation Convention](#dev-docs--development-documentation-convention) | Pointer to canonical rules |26| [Code Comment Convention](#code-comment-convention) | Why-not-what; no docblocks unless asked |27| [AI-INSTRUCT Maintenance Rule](#ai-instruct-maintenance-rule) | Update instructions with every architectural change |28| [`.github/` File Placement Rules](#github-file-placement-rules) | Where prompts, agents, debug scripts, tmp go |29| [Automatic Date Maintenance](#automatic-date-maintenance) | Auto-fill `Last Updated` and placeholders |3031---3233## Read Project Specs First3435Before suggesting commands, file paths, line endings, or tooling, **read [`.github/dev-specs.md`](dev-specs.md)** to determine:36371. **Project Mode** (MOST IMPORTANT): Are we in **Template Development** mode (building the framework) or **Production/Adoption** mode (using the framework for a real project)?38 - Template mode: Framework files in `.ai/`, `.github/` are authoritative and can be modified39 - Production mode: Never commit adopter-specific configs; only commit project source and templates402. Developer OS, shell, target platform, language versions, and frameworks4142Do not assume the platform or mode from the user's prompt or your environment. The contents of `dev-specs.md` are authoritative for these facts.4344For template-first repositories, `dev-specs.md` may still be partially unfilled during onboarding. In that case, ask to run `/ai-onboard` (or ask focused follow-up questions) so inferred values are confirmed and written before giving platform-specific guidance.4546---4748## The Routing Gateway — Core Orchestration Layer4950**This is the magic.** The `/ai-route` gateway is the central nervous system that powers every major workflow in this project. It is **not optional** — it is the defining feature that makes depth-priority hierarchy practical at scale.5152### What Routing Does5354Before any workflow (import, validation, module creation, etc.) executes, the router:55561. **Resolves scope** — finds the deepest `.ai/instruct.md` that governs the affected paths572. **Checks governance** — applies any external rules or constraints583. **Routes to authority** — delegates to the domain manager/supervisor that owns that scope594. **Enables escalation** — halts on conflicts and explains why6061### Why This Matters6263Without routing, each workflow would need to implement scope resolution independently → **duplicate logic, brittleness, easy to bypass.**6465With routing, all workflows speak the same language → **consistent, auditable, scope-aware.**6667### Routed Workflows (Today)6869| Workflow | Routed to |70|----------|-----------|71| `/ai-import-execute` | `pds-man-imports` (Phase 0-7 orchestration) |72| `/ai-adapt-infrastructure` | `pds-man-infrastructure` (infrastructure compliance & adaptation) |73| `/ai-validate` | `pds-pipe-validator` (scope-aware validation) |74| `/ai-reflect` | `pds-meta-learner` (gap analysis) |75| `/ai-update-index` | `pds-man-curator` (index rebuild) |76| `/ai-new-module` | `pds-pipe-scaffolder` (module scaffolding) |7778Each workflow does **not** know how to resolve scope or apply governance—it delegates that to the router and lets the router decide who should execute.7980### The Router Itself8182→ **[/ai-route prompt](prompts/ai-route.prompt.md)** — invoke when you need scope resolution before delegating83→ **[pds-meta-router agent](agents/pds-meta-router.agent.md)** — technical details and governance resolution logic8485---8687## The Depth-Priority Hierarchical Paradigm8889This project uses **Hierarchical Layering by Directory Depth**. The deeper your current working directory, the more authoritative its `.hi/instruct.md` becomes.9091### Precedence Rules9293When working in a directory:94- **That directory's `.hi/instruct.md` is authoritative** for your current context95- Shallower `.hi/instruct.md` files provide **background/context only**96- Each level is **self-contained** — no delegation upward97- **Deeper always wins** over shallower9899### Resolution Order100101```102.github/copilot-instructions.md ← META: explains HOW layering works (this file)103 ↓104.hi/instruct.md ← AUTHORITATIVE at workspace root105 ↓106[module]/.hi/instruct.md ← AUTHORITATIVE when working in that module107 ↓108[module]/[submodule]/.hi/instruct.md ← AUTHORITATIVE when working in that submodule109```110111### How to Use1121131. **When you start working**: check what directory you're in1142. **Find the deepest `.ai/instruct.md`** in or above your current directory1153. **That file is authoritative** — follow it precisely1164. **Parent files** provide architectural context only1175. **Do not mix contexts** across modules118119---120121## Global Shared Instructions (`.hi/`)122123Cross-cutting rules that would otherwise be duplicated across many files live here as single sources of truth.124125```126.hi/127├── conventions.md ← Naming, file organization, TOC rules (canonical)128├── maintenance.md ← Archive patterns, never-delete, never-reset-db rules (canonical)129├── credentials.md ← Credential warehousing + .gitignore rules (canonical)130├── environment.md ← Host-vs-container isolation rules; never silently mutate the host (canonical)131├── index.md ← MASTER INDEX of all instruction sections across the project132├── agent-config.yaml ← Agentic runtime config: heartbeat, log format, safety, foresight, self-improvement133├── heartbeat.md ← Heartbeat procedure: what agents do every N steps to re-align134├── engine/ ← Runtime scripts (foresight_engine.py, get_effective_instructions.py)135├── agents/tools/ ← Governed tool checklists read by agents (not MCP wire-protocol tools)136├── mcp/tools/ ← Project-specific governed tool checklists137├── foresight/ ← Foresight analysis outputs (runtime; gitignored)138├── knowledge/ ← Accumulated knowledge base (runtime; gitignored)139└── logs/ ← Agent audit logs (runtime; gitignored)140```141142**Rule**: If a directory's `.hi/instruct.md` needs to reference a global convention, it **links** to `.hi/` rather than restating it. Never copy content from these files.143144---145146## Agentic Runtime (`.hi/`)147148The `.hi/` directory doubles as the agentic runtime platform, layering proactive capabilities on top of the depth-priority instruction system.149150**Key capabilities:**151152| Capability | Mechanism |153|---|---|154| **Heartbeat** | Every 6 steps, agents re-read the active instruction scope and re-align |155| **Foresight** | Before acting, `foresight_engine.py` anticipates gaps (error handling, logging, tests) and forecasts risks |156| **Self-improvement** | After major tasks, agents reflect and propose edits to `.ai/instruct.md` files |157| **Governed tools** | Governed tool JSON files in `.ai/agents/tools/` include a `checklist` and `safety_level` — agents must follow the checklist before acting |158| **Audit logging** | All agent changes are logged to `.ai/logs/` for traceability |159160**Rules:**161- `agent-config.yaml` is the single source of truth for runtime behavior — do not duplicate its settings elsewhere162- `.hi/foresight/`, `.hi/knowledge/`, and `.hi/logs/` are runtime outputs — gitignored; never commit them163- Governed tool checklists live in `.hi/agents/tools/` (built-in) or `.hi/mcp/tools/` (project-specific) — these are **governance documents read by agents**, not MCP wire-protocol tool definitions164- `heartbeat.md` defines the procedure agents follow at every heartbeat interval — configurable in `agent-config.yaml`165- `get_effective_instructions.py` implements depth-priority resolution — do not alter its traversal logic166- Heartbeat and foresight are configured via `agent-config.yaml`; adjust `heartbeat_interval` and `foresight:` keys to tune167168---169170## AI Prompt Files (`.github/prompts/`)171172AI-invocable slash commands live as `.prompt.md` files in `.github/prompts/`.173174```175.hi/prompts/176├── hip-onboard.prompt.md ← /hip-onboard: Interactive wizard (also absorbs existing-project import)177├── hip-update-index.prompt.md ← /hip-update-index: Rebuild .hi/index.md after changes178├── hip-archive.prompt.md ← /hip-archive: Archive a file following the convention179├── hip-new-module.prompt.md ← /hip-new-module: Scaffold a new module and register it180├── hip-env-check.prompt.md ← /hip-env-check: Audit host-vs-container isolation; report only, never installs181├── hip-validate.prompt.md ← /hip-validate: Run the AI-INSTRUCT drift validator182├── hip-foresight.prompt.md ← /hip-foresight: Run foresight gap/risk analysis on current task before acting183├── hip-reflect.prompt.md ← /hip-reflect: Post-task reflection; identify instruction gaps and propose .hi/ improvements184├── hip-plugin-discover.prompt.md ← /hip-plugin-discover: Enumerate optional plugins under .hi/plugins/; read-only185└── hip-git.prompt.md ← /hip-git: Version control (subcommands: branch | commit | pr | status)186```187188Type the slash command in Copilot Chat to invoke. All project-specific commands use the `/hip-` prefix to distinguish them from built-in Copilot commands.189190**Create when**: a multi-step workflow is executed more than twice in a session, or a workflow is complex enough that the AI needs explicit sequencing to do it correctly.191192---193194## Workflow Invocation Pattern195196**Workflows** are repeatable, idempotent operations that can be invoked at any time — not one-time setup tasks.197198### Workflows (Repeatable)199200Invoke these whenever the operation is needed, not just during initial setup:201202| Workflow | Purpose | Repeatable? |203|----------|---------|------------|204| `/hip-onboard` | Initialize or update project metadata (identity, dev-specs, module list) | Yes — re-run to refresh identity or add modules |205| `/hip-import-execute` | Import/merge external projects with full Phase 0-6 orchestration | Yes — use each time you merge a new project |206| `/hip-new-module` | Scaffold a new module (instruct.md, dev-docs, registration) | Yes — invoke per module |207| `/hip-update-index` | Rebuild `.hi/index.md` from current state | Yes — run after editing any `.hi/instruct.md` |208| `/hip-archive` | Archive (never delete) a file or directory | Yes — use per archival task |209210### Utilities (Informational, No State Change)211212Run these to inspect or analyze; they do not modify the project:213214| Utility | Purpose |215|---------|---------|216| `/hip-validate` | Audit instruction drift; report findings |217| `/hip-env-check` | Audit host-vs-container isolation |218| `/hip-foresight` | Analyze gaps/risks before acting |219| `/hip-reflect` | Post-task reflection; propose improvements |220| `/hip-observe` | Display runtime observability and metrics |221| `/hip-git` | Query version control state (no auto-commits) |222223### Key Principle224225**Do not treat workflows as one-time setup.** They are on-demand operations:226227- **First time:** `/hip-onboard` fills template placeholders → project becomes usable228- **Later:** `/hip-onboard` again to update project name, add/remove modules, refresh dev-specs229- **Each import:** `/hip-import-execute` with a new source project → orchestrated Phase 0-6 pipeline230- **Each module:** `/hip-new-module` to scaffold a new capability231232---233234## Governed Workflows — Import/Merge Pattern Guard235236**CRITICAL SAFETY RULE:** Importing, cloning, or merging external projects is a **governed workflow**, not a vanilla file-copy operation. This section explains why and enforces the guardrail.237238### Pattern Recognition239240If the user **mentions any of these**, you **MUST** recognize it as an import workflow trigger:241242- "clone" + project/repo reference243- "import" + external project name or path244- "merge" + another project / workspace245- "adopt" + external codebase246- "migrate" + project / code247- "consolidate" + multiple projects248- "integrate" + external repo249250### The Non-Negotiable Rule251252**DO NOT:**253- Run ad-hoc `git clone` or `Move-Item` / `cp -r` commands254- Manually copy directories from one project to another without orchestration255- Decide module structure, naming, or registration on the fly256- Bypass Phase 0 validation (LLM dispatch, environment, credentials, naming conventions)257258**DO:**2591. **Stop** and acknowledge the import request2602. **Read** `.ai/instruct.md` to understand the authoritative import strategy for this project2613. **Invoke `/ai-import-execute`** (or the project's equivalent import orchestration prompt)2624. **Let the agent orchestration layer** (pds-meta-migrator → pds-pipe-importer) handle:263 - Phase 0: Operational validation (LLM dispatch, env, credentials, naming)264 - Phase 1-6: Artifact preservation, analysis, integration, modernization, and registry updates2655. **Wait for completion** before suggesting next steps266267### Why This Matters268269- **Naming conflicts** — Projects have different conventions; ad-hoc copies violate the registry270- **Module authority drift** — Each module's `.ai/instruct.md` is authoritative; manual moves break the hierarchy271- **Credential leakage** — Phase 0 validation catches `.env` files; ad-hoc copies miss them272- **Registry corruption** — Module lists, naming conventions, error codes, API endpoints all need updates; manual copies bypass the updater273- **Audit trail loss** — Proper import logs every decision; ad-hoc commands leave no trace274275### Example (What NOT to Do)276277```278User: "Clone https://github.com/user/project.git and move it into src/"279280❌ WRONG:281 git clone https://github.com/user/project.git282 Move-Item project/* -Destination src/283 (no validation, no registry updates, no module supervision)284285✅ RIGHT:286 Recognize: This is an import workflow287 → Invoke /ai-import-execute with the source URL288 → Let orchestration handle Phase 0 + Phases 1-6289 → Confirm completion before offering next steps290```291292---293294## Custom Agents (`.github/agents/`)295296Custom Copilot agent modes live in `.github/agents/`. Each `.agent.md` defines a specialized persona with restricted tools and behavior.297298```299.hi/agents/300├── tier-1/ (router, curator, imports, infrastructure, super)301├── tier-2/workers/ (scaffolder, generator, validator, tester, reviewer)302├── tier-2/observers/ (explorer, compliance, learner, observer)303└── tier-2/specialists/ (naming, ports, environment, deployment, workflow, prompt, todo, versioncontrol, cleanup)304```305306**Create when**: a constrained persona (restricted tools, specific behavior) adds meaningful safety or quality value. Examples: read-only exploration agents, agents scoped to a single directory or task type.307308---309310## Skills (`.github/skills/`)311312Domain knowledge skill packs for AI specialization. A skill is invoked when a task falls within its described domain.313314```315.hi/skills/316└── project-navigation/317 └── SKILL.md ← How to navigate this project's AI-INSTRUCT hierarchy318```319320Skills are **knowledge packs**, not task scripts — they describe how to orient, not what to do.321322**Create when**: a domain has enough specialized conventions that the AI needs a briefing to act correctly and general instructions are insufficient to reliably guide it.323324---325326## Git Hooks (`.github/hooks/`)327328Commit-time safety checks. Scripts in `.github/hooks/` must be installed into `.git/hooks/` during project setup.329330```331.hi/hooks/332├── post-merge ← Regenerate discovery registries after merge333├── install-hooks.sh ← Activate via `git config core.hooksPath .hi/hooks` (POSIX)334└── install-hooks.ps1 ← Same, for Windows PowerShell335```336337To install (run once per clone): `bash .github/hooks/install-hooks.sh` or `pwsh .github/hooks/install-hooks.ps1`338339**Create when**: a class of commit-time errors can be prevented automatically. Examples: blocking `.env` commits, checking for credential patterns, enforcing instruction drift checks.340341> **Tooling discipline**: Every facility above must be earned — create it when it provides clear, reusable value, not speculatively. The AI **may** proactively suggest creating tooling when a pattern is observed, but **must ask before creating** any `.github/` tooling file.342343---344345## YAML Frontmatter Schema346347All three customization file types use a YAML frontmatter block. The fields differ by type.348349### `.github/prompts/*.prompt.md` (slash commands)350351```yaml352---353mode: agent # required. One of: ask | edit | agent. Use `agent` for prompts that need full tool access (file edits, terminal, etc.); `edit` for surgical multi-file edits; `ask` for read-only Q&A.354description: ... # required. One-line user-facing summary shown when the slash command surfaces in pickers.355---356```357358Notes:359- All `/ai-*` prompts in this template use `mode: agent` because they perform multi-step file operations.360- Do not add a `tools:` list to prompts — prompts inherit the active chat's tool set.361362### `.github/agents/*.agent.md` (custom agents)363364```yaml365---366description: ... # required. One-line summary of the agent's purpose and when to invoke it.367tools: # optional but recommended. Whitelist of tools the agent may use. Omit to inherit the workspace default.368 - file_search369 - grep_search370 - read_file371---372```373374Notes:375- Agents do **not** take a `mode:` field — they *are* a mode.376- When defining a read-only or scoped agent, always set a `tools:` whitelist so the constraint is enforced, not aspirational.377378### `.github/skills/<skill>/SKILL.md` (knowledge packs)379380```yaml381---382description: > # required. Multi-line description is fine. Surfaces in the skill catalog;383 ... # also used by the model to decide when to invoke the skill.384---385```386387Notes:388- `SKILL.md` uppercase casing is required by the VS Code Copilot skill discovery system — do not rename.389- Skills do not declare `tools:` or `mode:`; they only provide knowledge.390391---392393## `.dev-docs/` — Development Documentation Convention394395> **→ [`.dev-docs` Convention](.hi/conventions.md#dev-docs-convention)** — canonical rules for `.dev-docs/`, its `.old/` archive, and the required `index.md`.396397Do not restate the rules here. Copilot must ignore `.dev-docs/.old/` unless the user explicitly asks otherwise.398399---400401## Code Comment Convention402403- Comment on **why**, not what404- One line preferred; no rambling405- Do not add comments to code you did not touch in the current change406- Do not add header blocks, file-level docstrings, or function docstrings unless explicitly asked407- If a line implements a non-obvious architectural constraint, a comment **may** name the governing `.ai/instruct.md`:408409```js410// See .ai/credentials.md — all secrets must come from environment variables411const secret = process.env.JWT_SECRET;412```413414---415416## AI-INSTRUCT Maintenance Rule417418**Whenever an architectural change is made, the relevant `.hi/instruct.md` file(s) must be updated in the same operation.** Then run `/hip-update-index` to rebuild the index.419420An architectural change includes:421- Adding, removing, or renaming a module, package, layer, or subsystem422- Changing a data format, protocol, or schema423- Adding a new integration, block type, or subsystem424- Any change that would make existing `.hi/` instruction guidance incorrect or incomplete425426Do not defer `.hi/instruct.md` updates. They are part of the change, not a follow-up task.427428---429430## `.github/` File Placement Rules431432| What | Where |433|------|-------|434| Copilot meta-instructions | `.github/copilot-instructions.md` |435| Project specs (platform, frameworks, dev environment) | `.github/dev-specs.md` |436| Prompt files (slash commands) | `.hi/prompts/` |437| Custom agents | `.hi/agents/` |438| Domain knowledge skills | `.hi/skills/` |439| Git hook scripts | `.hi/hooks/` |440| Project-level TODO lists | `.github/todo/` |441| Debug/helper scripts created by AI | `.github/debug/` |442| Temporary output files | `.github/tmp/` |443444**VS Code settings** live in `.vscode/` (committed for shared project defaults; personal overrides use `settings.local.json` which is gitignored).445446**Rules:**447- Debug scripts must **never** be placed in the workspace root448- Temporary files must **never** be placed in the workspace root449- `.github/tmp/` contents are ephemeral — may be deleted at any time450- `.github/debug/` scripts are AI-generated utilities — not part of the production codebase451452---453454## Deployment Modes — `.deployment/`455456Deployment modes are first-class **depth-priority scopes** keyed by the `DEPLOY_MODE` environment variable. See [`.deployment/README.md`](../.deployment/README.md) for the convention and [`/hip-deploy-mode`](prompts/hip-deploy-mode.prompt.md) to inspect or switch.457458```459.deployment/460├── README.md ← convention + required-section list for each mode461├── dev-local/.hi/instruct.md ← AUTHORITATIVE when DEPLOY_MODE=dev-local462├── dev-lan/.hi/instruct.md ← AUTHORITATIVE when DEPLOY_MODE=dev-lan463├── prod-railway/.hi/instruct.md ← AUTHORITATIVE when DEPLOY_MODE=prod-railway464└── prod-self-serve/.hi/instruct.md ← AUTHORITATIVE when DEPLOY_MODE=prod-self-serve465```466467**Rules:**468- A mode's `.hi/instruct.md` is authoritative whenever `DEPLOY_MODE` matches its directory name. The depth-priority winner is `.deployment/<active>/.hi/instruct.md` for any deployment-relevant question.469- A mode **cannot relax** a rule from a shallower `.hi/*.md` (e.g., a mode cannot permit committing `.env`).470- Mode names are kebab-case and registered with the `naming` agent (Mode 3) — never invent one without a consultation.471- The [`deployment-manager`](agents/pds-man-deployment.agent.md) agent watches `.deployment/` for drift and proposes `update / add / retire / rename`.472- Switching mode is a **human action** — agents emit shell-export snippets but never mutate the active shell.473474---475476## Automatic Date Maintenance477478> **→ [Versioning](.hi/conventions.md#versioning)** — canonical rules for `Last Updated` auto-fill and `[PLACEHOLDER]` resolution.479480Summary (do not restate; this is a one-line reminder only): the AI updates `**Last Updated**` to today whenever it edits a `.hi/*.md` file, and fills any `[PLACEHOLDER]` whose value is unambiguous from context, without waiting to be asked.481
Also in vctmasters1/PDS-Layered-AI-Instruct-Template-V5
Diff this repo’s formatsOne repository carrying more than one format is the comparison this product exists for: does anyone actually write different content in each file, or is one a copy of the other?
| Repository | Format | Stack | Covers | Score | Changed |
|---|---|---|---|---|---|
| vctmasters1/PDS-Layered-AI-Instruct-Template-V5CLAUDE.md · 0 | CLAUDE.md | do-notagent-behaviour | 46/100 | 3 days ago | |
| vctmasters1/PDS-Layered-AI-Instruct-Template-V5.clinerules/project.md · 0 | Cline rules | setupdo-not | 59/100 | 3 days ago | |
| vctmasters1/PDS-Layered-AI-Instruct-Template-V5.cursor/rules/project.mdc · 0 | Cursor rules | do-notagent-behaviour | 46/100 | 3 days ago | |
| vctmasters1/PDS-Layered-AI-Instruct-Template-V5AGENTS.md · 0 | AGENTS.md | gitdo-not | 63/100 | 3 days ago |
Similar configs
Same format, overlapping stack, ranked by quality.
| Repository | Format | Stack | Covers | Score | Changed |
|---|---|---|---|---|---|
| pytorch/pytorch.github/copilot-instructions.md · 102k | Copilot instructions | setupbuildteststyle+5 | 100/100 | 3 days ago | |
| chihebnabil/lovable-boilerplate.github/instructions/global.instructions.md · 63 | Copilot instructions | buildlint-formatstylearch+4 | 100/100 | 3 days ago | |
| louislam/uptime-kuma.github/copilot-instructions.md · 90k | Copilot instructions | setupbuildtestlint-format+9 | 100/100 | 3 days ago | |
| dotnet/roslyn.github/instructions/Compiler.instructions.md · 21k | Copilot instructions | buildteststylearch+3 | 99/100 | 3 days ago | |
| dotnet/roslyn.github/copilot-instructions.md · 21k | Copilot instructions | buildteststylearch+3 | 97/100 | 3 days ago | |
| rtk-ai/rtk.github/copilot-instructions.md · 75k | Copilot instructions | buildtestlint-formatstyle+2 | 97/100 | 3 days ago | |
| JCodesMore/ai-website-cloner-template.github/copilot-instructions.md · 31k | Copilot instructions | buildlint-formatstylearch+3 | 97/100 | 2 days ago | |
| hiyouga/LlamaFactory.github/copilot-instructions.md · 74k | Copilot instructions | setupbuildtestlint-format+5 | 97/100 | 2 days ago |
