From 7c21e5254b1b92828da4a6fe5bd3cf3fb5b17be0 Mon Sep 17 00:00:00 2001 From: Gary O'Neall Date: Mon, 7 Sep 2026 11:59:35 -0700 Subject: [PATCH] Include AI usage policy in CONTRIBUTING.md Added AI usage policy to guide contributions involving AI tools. --- CONTRIBUTING.md | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index d2389a7..8406cc5 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -25,3 +25,21 @@ Licensing --------- However you choose to contribute, please sign-off in each of your commits that you license your contributions under the terms of [the Developer Certificate of Origin](https://developercertificate.org/). Git has utilities for signing off on commits: `git commit -s` signs a current commit, and `git rebase --signoff ` retroactively signs a range of past commits. + +AI usage policy +--------------- + +AI tools (e.g., LLMs, code assistants, and proofreaders) are permitted as +assistive supplements, not replacements for human judgment. + +- **Code review:** + AI tools may act as a preliminary "peer reviewer" to catch syntax or style + issues, similar to a non-AI code analysis tool. + However, a human must perform the final review, validate logic, + and take full responsibility for all decisions. +- **Automation:** + AI is acceptable for offloading repetitive, well-understood, and + time-consuming boilerplate tasks. +- **Verification:** + All AI-generated suggestions must be manually verified for security, + performance, and project alignment.