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 @@
# RAG Knowledge Hub
## Problem
Technical knowledge about personal infrastructure is scattered across config files, chat history, and stale documentation.
## Instructions
1. **Data Collection:** Crawl your `/etc/`, `/opt/`, and project directories for configuration files (`.yaml`, `.conf`, `.md`).
2. **Embedding:** Use an embedding pipeline to vectorize this knowledge.
3. **Retrieval:** Set up a web interface or terminal bot that allows querying your "Second Brain".
4. **Sync Mechanism:** Create a task that updates the vector database whenever a config file is modified (using `inotify` or `git hooks`).
## Goal
Create an infrastructure-aware assistant that knows your setup intimately.

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.

View File

@@ -0,0 +1,13 @@
# Serverless Micro-Stack Manager
## Problem
Managing multiple `docker-compose` projects via SSH/CLI is exhausting and error-prone.
## Instructions
1. **Abstraction Layer:** Build a thin Go or Python API that wraps `docker-compose` commands.
2. **ChatOps Interface:** Connect this API to your chat agent (via Discord/Telegram) so you can issue commands like "Deploy auth-service" or "Restart proxy".
3. **Version Control:** Add logic to pull the latest image/code, backup data volumes, and restart the service atomically.
4. **Health Check:** Ensure the agent verifies the service is actually "up" (HTTP 200) after the restart before confirming.
## Goal
Build your own platform-as-a-service (PaaS) on your own VPS.

View File

@@ -0,0 +1,13 @@
# Observability-as-a-Service (Engineering Monitoring)
## Problem
Logs are overwhelming. You only notice issues when the system is already down.
## Instructions
1. **Aggregator:** Set up a lightweight log forwarder (like Vector or Promtail) to push logs to a central database (Postgres or Elasticsearch).
2. **Analytics:** Implement a background script that polls for error spikes or latency anomalies.
3. **RAG Context:** Inject your architecture documentation (READMEs, design docs) into the agent's context so it understands *what* service is doing *what*.
4. **Actionable Alerts:** When an anomaly occurs, use the agent to analyze the logs *in context* and provide a summary + suggested fix.
## Goal
Move from "Log Monitoring" to "Intelligent System Health".

View File

@@ -0,0 +1,13 @@
# Personal Data Aggregator
## Problem
Financial data, health stats, and digital footprint are scattered across multiple apps and websites, making it hard to track long-term trends.
## Instructions
1. **Integration Layer:** Use Python scripts or automation tools (Playwright/Selenium for web crawling or scraping, or official APIs) to fetch personal data points daily.
2. **Data Store:** Archive the raw records in a structured local format (SQL database like SQLite).
3. **Automated Analysis:** Build a script that summarizes the data (e.g., "You spent X amount in the last 7 days", "Your steps were low").
4. **Visualizer:** Create a simple HTML/Chart.js dashboard or a Telegram bot that pushes weekly insights to your phone.
## Goal
Own your personal telemetry by bringing disparate data sources into a single, queryable database.

View File

@@ -0,0 +1,13 @@
# AI-Driven Habit Tracker & Nudger
## Problem
Standard habit trackers are static and boring. You just log data, but nothing actually helps you stay on track dynamically.
## Instructions
1. **Input Interface:** Create a simple CLI or chat interface (Telegram/Discord) to log habits.
2. **Context-Aware Analytics:** The agent analyzes your habit streaks against external factors (e.g., weather, calendar, time of day).
3. **Proactive Nudging:** Instead of just recording, the agent *proactively* pings you. Example: "Hey, looking at your calendar, you have a meeting in 10 mins. Maybe take a 5 min walk now for your habit?"
4. **Sentiment/State Tracking:** If you report being "stressed" or "tired", the agent adjusts the daily goals dynamically.
## Goal
Build a habit tracker that acts as a coach, not just a spreadsheet.

View File

@@ -0,0 +1,13 @@
# IoT Webhook Bridge
## Problem
Many IoT devices (Home Assistant, smart plugs) have rigid UIs or lack flexible, programmable APIs. Hooking them into custom workflows is often hard.
## Instructions
1. **Webhook Handler:** Create a lightweight FastAPI/Express service to receive incoming webhooks from your smart home.
2. **Action Mapper:** Define a "Service Map" that translates specific events (e.g., "front door opened at 20:00") into code/API actions.
3. **External Connector:** Connect the bridge to APIs (e.g., Discord, custom email alerts, or triggering other micro-services).
4. **Log & Trace:** Track execution history to debug when a trigger *didn't* work as expected.
## Goal
Build a middleware that turns your home sensors into programmable events for your own applications.