Welcome to Equipe Z's Agent Skills, a lightweight, pragmatic collection of "soft skills" and tools designed to enhance AI Agents (like GitHub Copilot or ChatGPT).
We believe that for small teams, Context is the best Code. Instead of building complex Agent orchestration frameworks, we define Skills as folders containing specific instructions (System Prompts) and executable tools.
The repository is organized by Skills. Each folder represents a standalone capability that can be "installed" into an AI session.
root/
├── [Skill Name]/ # Example: "Code_Reviewer", "Data_Analyst"
│ ├── [skill_name].md # THE CORE: The Prompt, Persona, and Strict Rules.
│ └── [supporting_files] # Python scripts, reference docs, or templates.
- The Manifesto (
.md): A Markdown file defining the Agent's persona, strict rules, and operational workflow. - The Toolkit: Helper scripts (e.g.,
bibtex_formatter.py) that the Agent can read to understand how to execute specific tasks.
This method turns your editor into a powerful, context-aware Agent platform.
- Clone this repository to your local machine.
- Add this folder to your current VS Code Workspace.
- File -> Add Folder to Workspace...
- Summon the Skill in your AI Chat (e.g., Copilot Chat):
- Simply type
@followed by the skill's filename. - Example:
@code_review.md Please review the currently open file.
- Simply type
If you are using a web-based chat model (ChatGPT, Claude):
- Open the folder of the skill you want to use.
- Drag and Drop the
.mdfile and any script files into the chat context. - The AI will instantly adopt the persona and understand the available tools.
Equipe Z Agent Skills - A Shared Library for AI Context & Tools.