This commit is contained in:
Space-Banane
2026-04-02 18:59:02 +02:00
parent 6297b256a5
commit 6fbddacfcf
9 changed files with 15 additions and 8 deletions

View File

@@ -0,0 +1,13 @@
# Automated Code-Review-Pipeline (The Gatekeeper)
## Problem
Manual code review is tedious and often inconsistent. Architectural anti-patterns often slip through PRs.
## Instructions
1. **Webhook Integration:** Set up a Gitea webhook that triggers a function on your VPS when a PR is opened.
2. **Analysis Engine:** Use an LLM (e.g., via LLM API) to analyze the `git diff`.
3. **Prompt Engineering:** Define a system prompt for the agent to focus on *architectural integrity* and *complexity metrics* rather than just syntax checking.
4. **Feedback Loop:** Have the agent post its review directly back to the PR comments.
## Goal
Automate the "High-Level Review" stage of your development pipeline.

View File

@@ -0,0 +1,13 @@
# Repo Documentation & Change Summarizer
## Problem
Git commit messages are often useless ("fixed stuff"). When you return to a project after a week, you have to read every diff to know what happened.
## Instructions
1. **Change Observer:** Use a git hook to trigger the agent whenever a `git push` happens.
2. **Intelligent Summary:** The agent reads all new commits since the last run.
3. **Human-Readable Digest:** The agent summarizes *all* technical changes into a simple, high-level paragraph: "Added OAuth support, refactored database connection, fixed the login UI bug."
4. **Notification:** Post this digest to your Discord/Slack, so you're always updated on what *actually* changed in your projects.
## Goal
Turn cryptic git logs into a clean, human-readable project journal.