This repository hosts a GitHub Pages site that provides examples of workable instructions to constrain AI agents to modern software engineering practices.
This site is built using GitHub Pages with Jekyll. It contains a collection of instructions and best practices for working with AI coding assistants.
_pages/: Contains individual instruction pages in Markdown format_config.yml: Jekyll configuration fileindex.md: Main landing page_layouts/: Contains layout templates for the site
The site is available at: https://uvayankee.github.io/
To add a new instruction:
- Create a new Markdown file in the
_pagesdirectory with a descriptive filename:your-instruction-name.md - Include the Jekyll front matter at the top of the file:
--- layout: page title: "Your Instruction Title" permalink: /your-instruction-name/ --- - Add your content below the front matter