This is a test repository for validating agent, skill, instruction, and prompt discovery in both the root directory and .github folder locations.
├── agents/ # Root-level agents
│ └── sample-agent.agent.md
├── prompts/ # Root-level prompts
│ └── sample-prompt.prompt.md
├── instructions/ # Root-level instructions
│ └── sample-instructions.instructions.md
├── skills/ # Root-level skills
│ ├── README.md
│ └── sample-skill/
│ └── skill.md
├── .github/ # GitHub folder for testing
│ ├── agents/
│ │ └── github-agent.agent.md
│ ├── prompts/
│ │ └── github-prompt.prompt.md
│ ├── instructions/
│ │ └── github-instructions.instructions.md
│ └── skills/
│ ├── README.md
│ └── github-skill/
│ └── skill.md
└── README.md
- Agents:
*.agent.md(e.g.,sample-agent.agent.md) - Prompts:
*.prompt.md(e.g.,sample-prompt.prompt.md) - Instructions:
*.instructions.md(e.g.,sample-instructions.instructions.md) - Skills: Folders containing
skill.mdand supporting files
All files include YAML frontmatter with metadata:
---
name: Display Name
description: Brief description
author: Author Name
version: 1.0.0
---- Instructions files include
applyToto specify file patterns - Skills are organized as folders containing a
skill.mdfile
This repository is designed to:
- Test agent discovery in both root and
.githubfolders - Validate prompt discovery mechanisms
- Verify instruction file pattern matching
- Check skill folder detection and organization
agents/sample-agent.agent.md- Root-level agent.github/agents/github-agent.agent.md- GitHub folder agentprompts/sample-prompt.prompt.md- Root-level prompt.github/prompts/github-prompt.prompt.md- GitHub folder promptinstructions/sample-instructions.instructions.md- Root-level instructions.github/instructions/github-instructions.instructions.md- GitHub folder instructionsskills/sample-skill/skill.md- Root-level skill.github/skills/github-skill/skill.md- GitHub folder skill
Use this repository to test various ACP (Awesome Copilot) tools and configurations that need to discover and load agents, prompts, instructions, and skills from both standard and alternate folder locations.
- All files are minimal/sample implementations suitable for testing
- Complete functionality is not required for testing purposes
- Both root and
.githubfolder locations are populated for comprehensive testing