From 364dd1c4914710b77b11f5d228fce28dd822aeb2 Mon Sep 17 00:00:00 2001 From: Marcus Quinn <6428977+marcusquinn@users.noreply.github.com> Date: Sat, 12 Apr 2025 16:38:57 +0100 Subject: [PATCH] Move AI workflows to root directory and consolidate duplicate files --- .ai-workflows/README.md | 12 ++++++++++++ .../ai-workflows => .ai-workflows}/bug-fixing.md | 2 +- .../ai-workflows => .ai-workflows}/code-review.md | 0 .../feature-development.md | 0 .../release-process.md | 0 5 files changed, 13 insertions(+), 1 deletion(-) create mode 100644 .ai-workflows/README.md rename {.github/ai-workflows => .ai-workflows}/bug-fixing.md (99%) rename {.github/ai-workflows => .ai-workflows}/code-review.md (100%) rename {.github/ai-workflows => .ai-workflows}/feature-development.md (100%) rename {.github/ai-workflows => .ai-workflows}/release-process.md (100%) diff --git a/.ai-workflows/README.md b/.ai-workflows/README.md new file mode 100644 index 0000000..b65b9f6 --- /dev/null +++ b/.ai-workflows/README.md @@ -0,0 +1,12 @@ +# AI Workflows + +This directory contains workflow documentation for AI assistants working with this repository. + +## Contents + +- **bug-fixing.md**: Guidelines for identifying and fixing bugs in the codebase +- **code-review.md**: Standards and procedures for reviewing code changes +- **feature-development.md**: Process for developing new features +- **release-process.md**: Steps for preparing and publishing new releases + +These documents help ensure consistent quality and approach when using AI tools to assist with development tasks. diff --git a/.github/ai-workflows/bug-fixing.md b/.ai-workflows/bug-fixing.md similarity index 99% rename from .github/ai-workflows/bug-fixing.md rename to .ai-workflows/bug-fixing.md index 7b706b0..5eb28ef 100644 --- a/.github/ai-workflows/bug-fixing.md +++ b/.ai-workflows/bug-fixing.md @@ -129,7 +129,7 @@ git checkout v{MAJOR}.{MINOR}.{PATCH} git checkout -b hotfix/v{MAJOR}.{MINOR}.{PATCH+1} ``` -### 2. Fix the Bug +### 2. Fix the Issues Apply the minimal fix necessary to address the critical issue. diff --git a/.github/ai-workflows/code-review.md b/.ai-workflows/code-review.md similarity index 100% rename from .github/ai-workflows/code-review.md rename to .ai-workflows/code-review.md diff --git a/.github/ai-workflows/feature-development.md b/.ai-workflows/feature-development.md similarity index 100% rename from .github/ai-workflows/feature-development.md rename to .ai-workflows/feature-development.md diff --git a/.github/ai-workflows/release-process.md b/.ai-workflows/release-process.md similarity index 100% rename from .github/ai-workflows/release-process.md rename to .ai-workflows/release-process.md