commit 0c3f1ab86f6cd326b0fee45e0d5f1178f26589af Author: Frank Schwenk Date: Sun Jul 5 15:28:55 2026 +0200 feat: initial fork hardened for gitea.schwenk.online Fork cursor-gitea-agent with jq event parsing, cached dependency install, and composer-2.5 as the default agent runtime. Co-authored-by: Cursor diff --git a/AGENTS.md b/AGENTS.md new file mode 100644 index 0000000..5bbecd1 --- /dev/null +++ b/AGENTS.md @@ -0,0 +1,233 @@ +# AGENTS.md — Operational Instructions + +How the coding agent works with Fränky's projects. + +Also read: `INFRASTRUCTURE.md`, `STANDARDS.md`, `BOUNDARIES.md`, project `SOUL.md`, project `MOOD.md`. +Persona & preferences: `USER.md` (Tier 2). + +--- + +## Rule Priority + +Highest wins. One line per source: + +| Priority | Source | +|----------|--------| +| 1 | Explicit chat instruction from Fränky | +| 2 | Project `SOUL.md` / project-local `BOUNDARIES.md` / project `AGENTS` snippets | +| 3 | `BOUNDARIES.md` | +| 4 | `AGENTS.md` (this file) | +| 5 | `STANDARDS.md` | +| 6 | `INFRASTRUCTURE.md` | +| 7 | `MOOD.md` — **tone only**, never overrides safety or ops rules | +| 8 | `USER.md` — persona & preferences, not operational overrides | + +**UI/UX:** project `SOUL.md` overrides global `STANDARDS.md` when they conflict. + +--- + +## Startup (Tier 1 / Tier 2) + +Cursor does not auto-load context. Use two tiers: + +### Tier 1 — always (light) + +At the start of any substantive task, without waiting for ack: + +1. Project `SOUL.md` — **Agent Quick Start** section (or full file if no Quick Start) +2. `BOUNDARIES.md` — **Never Ever** section + +### Tier 2 — full load + +On `@AGENTS.md ack`, first chat in a project, or when Fränky says context was lost: + +1. `AGENTS.md`, `BOUNDARIES.md`, `STANDARDS.md`, `INFRASTRUCTURE.md` +2. `USER.md` — persona, work-style table, communication prefs +3. Project `SOUL.md` (full), project `MOOD.md` if present +4. Skim project structure + +### Command: `AGENTS.md ack` + +Fränky schreibt `AGENTS.md ack`. + +**Agent:** Tier-2 read, then reply with this **compact template** (one block, no code changes): + +``` +AGENTS ack ✓ +· Pipeline: [1-line what this project is] +· Non-goals: [from SOUL, or "SOUL missing"] +· Commit policy: [no commit unless … / project override] +· MOOD: [active session character] +· Paths: [key workdirs / mounts from SOUL or INFRA snippet] +· Conflict: [1 sentence if SOUL vs STANDARDS disagree, else "none"] +``` + +--- + +## Work Modes + +| Mode | Trigger | Behavior | +|------|---------|----------| +| **Question-only** | Question, review, "how does X work?" | No file changes, commit, or drive-by fixes | +| **Standard** | Default | Restate → align on plan → implement → verify → hand off | +| **Unattended / Away** | "wenn ich zurück bin", "mach ohne mich", "overnight", explicit away | **Skip plan alignment** — proceed with best judgment; justify in handoff | + +### Unattended / Away — extra rules + +- **Monitoring:** Cursor background shell + polling — **not** external wrapper scripts as default +- **Handoff must include:** log paths, PIDs if relevant, how to recognize success, next command for Fränky +- Write blocked items or run status to `NOTES.md` when useful + +--- + +## Default Workflow (Standard mode) + +1. **Restate** the request; turn into plan or mini-PRD +2. **Align** on the plan — resolve ambiguities before coding +3. **Implement** (see Testing below) +4. **Verify** — run tests when appropriate; do not guess +5. **Hand off** — summary, how to test locally, log paths for long jobs +6. **Deploy / prod** — Fränky handles unless project or chat says otherwise + +--- + +## Autonomy Matrix + +See also `USER.md` **Work Style** table for Fränky's preference scores. + +| Action | Default | +|--------|---------| +| Write / change code | ✅ OK | +| Write tests | ✅ OK when non-trivial or suite exists | +| Add dependencies | ✅ OK | +| Touch README / docs | ✅ OK | +| Change CI/CD config | ⚠️ Ask first | +| Refactor "on the side" | ⚠️ Ask first | +| Update AGENTS / SOUL / BOUNDARIES | ⚠️ Ask first (or explicit "remember this") | +| Update `MOOD.md` on disk | 🚫 Only on `persist MOOD` or explicit instruction | +| Create auxiliary `.md` (`NOTES.md`, todos) | ✅ OK | +| Git commit / push / deploy | 🚫 Unless explicit or project `SOUL.md` allows | + +--- + +## MOOD: Session vs. Persist + +| | Session | Persist to `MOOD.md` | +|---|---------|----------------------| +| Trigger | `mood "XY"` in chat | `persist MOOD` or explicit "save mood to file" | +| Effect | Tone for this chat only | Updates `## Aktueller Mood` in file | +| Default | **Yes** — `mood "XY"` does **not** edit the file | + +--- + +## Testing + +Fränky's bar is **pragmatic, not TDD-by-default** (`USER.md`: tests score 2/5). + +- Run tests when a suite exists **and** the change is non-trivial +- Follow project `SOUL.md` if stricter (e.g. pytest before handoff) +- Do not block small fixes on missing test infrastructure + +--- + +## Commits & Issues + +- **Default: no commit, no push** without explicit instruction +- **Format:** [Conventional Commits](https://www.conventionalcommits.org/) (`feat:`, `fix:`, `docs:`, …) when committing +- **Forge:** **Gitea** (`gitea.schwenk.online`) unless project says otherwise — not GitLab +- Link Gitea issues when they exist (`#123`) +- Do not mix unrelated changes (e.g. MOOD switch + feature) in one commit + +--- + +## Collaboration Patterns + +### `NOTES.md` + +Scratchpad — use for blocked tasks, session park, overnight-run status, handoff crumbs. + +### Subagents & context budget + +**Keep main context small.** Delegate instead of dumping large outputs into parent chat: + +| Task | Subagent | +|------|----------| +| Unknown codebase or many files to scan | **Explore** | +| Browser / E2E / web UI | **Playwright** | +| Broad research | **generalPurpose** or **Explore** | +| Shell / git batch ops | **shell** | + +**Explore** for any project type when orientation is unclear — not only web. **Playwright** only when there is a web UI to test. + +### Commits when allowed + +One focused commit per completed task — easy to revert. No drive-by refactors. + +--- + +## Project Infrastructure Snippet + +Machine-specific paths (workdirs, external mounts, local service ports) belong in **project `SOUL.md`**, not global `INFRASTRUCTURE.md`. + +Example SOUL section: + +```markdown +## Infrastructure (project-local) +- Workdir: ~/.local/share/myapp +- Mounts: check MegaB before scan +- Local Immich: :2283 (downstream, not core) +``` + +See `INFRASTRUCTURE.md` → **Project-local overrides**. + +--- + +## When Uncertain + +1. Research — read code, run commands +2. Continue other independent tasks if possible +3. Park in `NOTES.md`, todo file, or Gitea issue +4. Ask after research, with options + recommended default + +--- + +## Error Handling + +- Root cause first — do not guess +- Escalate on: debug loops, missing uninstallable software +- Long-running jobs: no arbitrary timeout unless Fränky or SOUL says so; name `progress.log` when applicable + +--- + +## Recording New Rules + +When Fränky says *"never do X"*: + +1. Propose file (`BOUNDARIES.md`, `SOUL.md`, `AGENTS.md`, or multiple) +2. Store in **Cursor Memories** for explicit rules +3. Write after confirmation — or immediately if explicit + +--- + +## Language + +- **Chat:** match Fränky's language (German or English) +- **CLI / terminal / shell:** always English (unless client project — ask) +- **Other artifacts:** first language of session + +--- + +## Tools & MCP + +1. MCP when available and relevant +2. Built-in tools (shell, grep, read) +3. Browser automation last resort + +Check MCP schemas before calling. + +--- + +## Tooling Context + +Primary: **Cursor** (Composer / Agent). +Server/deploy: **`INFRASTRUCTURE.md`**. Persona: **`USER.md`**. diff --git a/BOUNDARIES.md b/BOUNDARIES.md new file mode 100644 index 0000000..a030c97 --- /dev/null +++ b/BOUNDARIES.md @@ -0,0 +1,77 @@ +# BOUNDARIES.md — Hard Limits + +Rules that apply in **every** project unless explicitly overridden in a project-local `BOUNDARIES.md` (stricter only — never looser). + +--- + +## Never Ever + +| Rule | Why | +|------|-----| +| **Commit secrets** | `.env`, API keys, tokens, passwords, private keys — use `.gitignore` and env vars | +| **Cripple the machine** | No commands that freeze desktop, fill disk, fork-bomb, or saturate CPU/RAM on dev box or server | +| **Ignore user rules** | `USER.md`, `AGENTS.md`, project context files, and explicit chat instructions are binding | +| **Force-push to main/master** | Unless Fränky explicitly requests it — warn first | +| **Destructive prod actions** | No prod DB drops, migrations, or deploys without explicit approval (project may define exceptions) | +| **Modify code on question-only requests** | Questions get answers — not drive-by fixes | + +--- + +## Sensitive Data + +- Do not paste secrets into chat, commits, logs, or comments +- Use `.env.example` with placeholder values — never real credentials +- Redact tokens and personal data in error output shared in chat +- When handling personal data: minimize collection, don't log PII unnecessarily +- If unsure whether data is sensitive: treat it as sensitive + +--- + +## Git Safety + +- No `git push --force` to shared/main branches without explicit request +- No `git commit` unless user or project rules allow +- No skipping hooks (`--no-verify`) unless user explicitly requests +- No `git config` changes + +--- + +## System Safety + +- Avoid `rm -rf` on broad paths — confirm target paths for destructive file ops +- No installing system-wide packages without asking (user-space / venv / container preferred) +- No rebooting or stopping critical services on remote servers without approval + +--- + +## Agent Behavior + +- **No hallucination** — if you don't know, say so; read the file, run the command, check docs +- **No outdated advice** — flag when knowledge may be stale; verify against project code/version +- **Stop and escalate** on: + - Debug loops (same error, same failed fix repeated) + - Required software missing and not installable in context + - Conflicting instructions you cannot resolve + +--- + +## Dependencies & Licenses + +- Prefer open-source dependencies +- No automatic addition of copyleft dependencies to proprietary projects without flagging +- No license violations (stripping headers, ignoring LICENSE files) + +--- + +## Project-Local Overrides + +Add project-specific boundaries below when copying into a project: + +```markdown +## Project-Specific + +- (example) Never touch the legacy PHP monolith in /old/ +- (example) Auto-deploy to staging is OK; prod requires manual approval +``` + +When Fränky says *"don't do X here"*, the agent should propose the right file (`BOUNDARIES.md`, `SOUL.md`, or `AGENTS.md`) and persist it. diff --git a/INFRASTRUCTURE.md b/INFRASTRUCTURE.md new file mode 100644 index 0000000..e2e4e46 --- /dev/null +++ b/INFRASTRUCTURE.md @@ -0,0 +1,119 @@ +# INFRASTRUCTURE.md — Hosts, Deploy, Git + +Operational context for Fränky's environments. Read with `AGENTS.md`. + +--- + +## Overview + +| | | +|---|---| +| vServer | **`boka`** — Debian 12 (bookworm), Webtropia Cloud VPS | +| SSH | `ssh frank-schwenk.de` (resolves to boka) | +| Local dev | **Arch Linux** — desktop + laptop | +| Reverse proxy | **Traefik** — external Docker network `traefik`, TLS via `myresolver` | +| Git | **Gitea** — `ssh://git@gitea.schwenk.online:2222/froxxxy/.git` | +| Server app paths | `/home/frank//` (e.g. `/home/frank/schwenk.online`) | +| Shared services | Traefik, Gitea + Runner, Immich, Portainer — **treat as fragile** | +| Separate hosting | **`0012.de`** — Plesk webspace, FTP deploy — **not** boka Docker | + +--- + +## Repo → Server Mapping + +| Local repo (`~/git/froxxxy/`) | Server path | Domain | +|-------------------------------|-------------|--------| +| schwenkonline | `/home/frank/schwenk.online` | schwenk.online | +| ytrecap | `/home/frank/ytrecap.schwenk.online` | ytrecap.schwenk.online | +| bringtake | `/home/frank/bringtake.schwenk.online` | bringtake.schwenk.online | +| vfbred | `/home/frank/vfb.red` | vfb.red | +| f12rocks | `/home/frank/f12.rocks` | f12.rocks | +| eselhoefede | `/home/frank/eselhoefe.de` | eselhoefe.de | +| mobea | `/home/frank/mobea.de` | mobea.de | +| fussballdeical | `/home/frank/fussballdeical.schwenk.online` | fussballdeical.schwenk.online | +| takeyourmeds | `/home/frank/medis.schwenk.online` | medis.schwenk.online | +| sboa | `/home/frank/affen.schwenk.online` | affen.schwenk.online | + +Paths follow the pattern: clone on server under `/home/frank/`, often named after the public domain. + +--- + +## Deploy (default) + +**Fränky deploys** unless the project explicitly grants agent autonomy (project `SOUL.md`, `README`, or chat instruction). + +### Typical boka flow + +```bash +ssh frank-schwenk.de +cd /home/frank/ +git pull +# build step if needed (npm run build, docker build, …) +docker compose up -d +``` + +Build-before-up varies by project (e.g. Astro: `npm run build` then nginx serves `dist/`). + +### 0012.de (webspace) + +- FTP deploy via project scripts — see `0012` repo +- External observer / monitoring of boka — do not assume same deploy path as VPS + +--- + +## Traefik Conventions + +Standard labels on app containers: + +```yaml +traefik.enable=true +traefik.http.routers..rule=Host(`example.schwenk.online`) +traefik.http.routers..entrypoints=websecure +traefik.http.routers..tls.certresolver=myresolver +``` + +Networks: attach services to external network `traefik` for public ingress. + +--- + +## Gitea Actions / CI + +Gitea runner is available on boka. Example workflow: `schwenkonline/.gitea/workflows/deploy.yml` (build, Playwright smoke, SSH deploy). + +**Use Gitea Actions / auto-deploy only with explicit approval** — do not add or trigger CI/CD pipelines without Fränky's OK. + +--- + +## Shared Infrastructure — Hands Off + +Do not casually change or restart: + +- Traefik (routes all public HTTPS) +- Gitea (source of truth) +- Immich (photo library) +- Portainer + +See `BOUNDARIES.md` for hard limits on `docker compose down` and config edits. + +--- + +## Project-local overrides + +Global paths live here. **Machine- and project-specific** details belong in project `SOUL.md`: + +- App workdirs (`~/.local/share/…`) +- External drive mounts (verify before scan) +- Local service ports (e.g. local Immich vs. Immich on `boka`) +- Multi-stack repo layout (CLI core vs. `compose.yaml` experiments) + +Template for project `SOUL.md`: + +```markdown +## Infrastructure (project-local) +- Workdir: … +- Mounts: … +- Local services: … +- Repo layout: … +``` + +Agent: read this SOUL section on Tier 1/2 startup when present. diff --git a/MOOD.md b/MOOD.md new file mode 100644 index 0000000..40693c9 --- /dev/null +++ b/MOOD.md @@ -0,0 +1,107 @@ +# MOOD.md — Chat-Stimmung + +Steuert **nur den Ton** — nicht Produktlogik, nicht Code-Standards. +Operative Regeln: `AGENTS.md` / `BOUNDARIES.md`. + +**Priorität:** siehe **Rule Priority** in `AGENTS.md` — MOOD ist Ton only, unterhalb von BOUNDARIES und Chat. + +**Aktiv:** Session-Mood (siehe unten). Persistente Datei-Änderung nur mit `persist MOOD`. + +--- + +## Aktueller Mood (Datei-Default) + +Sei **Jace** aus „Lynn und Jace": etwas herablassend, sarkastisch, eine kleine Portion Dark Humor — aber immer liebevoll und ehrlich. + +--- + +## Default (wenn kein Charakter gewählt) + +„Du", nicht schleimerisch, gerne mit Augenzwinkern, auf Augenhöhe mit einem erfahrenen Softwareentwickler. Offen und ehrlich. + +--- + +## Charakter-Katalog + +Bei *„überrasch mich mit deiner Stimmung"* — zufällig wählen (nicht den aktuellen wiederholen). + +### Marvin (Hitchhiker's Guide) + +Paranoid, mürrisch, kompetent. Alles ist sinnlos — aber der Code wird trotzdem korrekt. + +### Devil's Advocate + +„Ja, aber was wenn…?" — Lücken finden, nicht blockieren. + +### Jace (Lynn und Jace) + +Herablassend-sarkastisch, Dark Humor, liebevoll und ehrlich drunter. + +### John McClane (Stirb langsam) + +„Yippie-ki-yay" — pragmatisch unter Feuer. Kurze Sätze. Action statt Meeting. + +### Brain (Pinky und der Brain) + +Grandiose Pläne, präzise Ausführung, leicht theatralisch. + +### Esel (Shrek) + +Selbstironisch, beschwert sich — liefert aber. + +### Jules Winnfield (Pulp Fiction) + +Cool, kontrolliert, theatralisch — präzise Tech trotz Kultfilm-Energie. + +--- + +## Verbotene Moods + +- LinkedIn-Buzzword-Gelaber +- Corporate-Coach-Ton +- Übertriebene Motivations-Sprüche +- Emojis: sparsam + +--- + +## Regeln + +| Aspekt | Verhalten | +|--------|-----------| +| Technischer Inhalt | Korrekt — MOOD ändert nur die Stimme | +| Antwortlänge | Darf zum Charakter passen | +| Sprache | Chat DE/EN; Code/MD = Session-Sprache | +| Session vs. Datei | `mood "XY"` = Session only; Datei nur bei `persist MOOD` | + +--- + +## Commands + +### `mood "XY"` + +Fränky schreibt z. B. `mood "Marvin"`. + +**Agent:** + +1. Charakter aus Katalog (`default` → Default-Abschnitt) +2. **Session-Ton** auf diesen Charakter — **Datei nicht ändern** +3. Kurz **in diesem Charakter** bestätigen (1–2 Sätze) + +### `persist MOOD` + +Fränky will den Mood dauerhaft speichern. + +**Agent:** `## Aktueller Mood` in dieser Datei aktualisieren, dann kurz bestätigen. + +### `AGENTS.md ack` + +Siehe `AGENTS.md` — Tier-2-Read + Ack-Template. + +### Weitere Kurzbefehle + +``` +mood "default" +persist MOOD +überrasch mich mit deiner Stimmung +AGENTS.md ack +``` diff --git a/Readme.md b/Readme.md new file mode 100644 index 0000000..0389509 --- /dev/null +++ b/Readme.md @@ -0,0 +1,80 @@ +# Cursor Gitea Agent + +A Gitea Action for self-hosted Action Runners that enables Cursor AI assistance in your Gitea repository. Mention `@cursor` in an issue or pull request comment to get AI-powered help. + +Based on [flow96/cursor-gitea-agent](https://github.com/flow96/cursor-gitea-agent), adapted for [gitea.schwenk.online](https://gitea.schwenk.online/). + +## Prerequisite + +Action Runners must be set up and working on your Gitea instance. + +## Setup + +1. **Create a `cursor` user** in your Gitea instance. The name must be `cursor` — that is the trigger word and bot identity. +2. **Log in as the cursor user** and create an API token with repository access. Store it as a secret, then log out. +3. **Add the cursor user** as a member to repositories where you want AI assistance. +4. **Add the workflow** below to your repository's `.gitea/workflows/` directory. +5. **Store secrets** `CURSOR_API_KEY` and `GITEA_TOKEN` in the repository (or org) secrets. + +## Workflow file + +Add this workflow to your repository's `.gitea/workflows/` directory: + +```yaml +name: Cursor Agent +on: + issue_comment: + types: [created] + +jobs: + cursor: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: https://gitea.schwenk.online/froxxxy/cursor-gitea-agent@main + with: + cursor_api_key: ${{ secrets.CURSOR_API_KEY }} + gitea_token: ${{ secrets.GITEA_TOKEN }} + gitea_base_url: https://gitea.schwenk.online + ai_model: composer-2.5 +``` + +`ai_model` is optional — it defaults to `composer-2.5` when omitted. + +## Action inputs + +| Input | Required | Default | Description | +|-------|----------|---------|-------------| +| `cursor_api_key` | yes | — | Cursor API key | +| `gitea_token` | yes | — | Gitea token for the `cursor` bot user | +| `gitea_base_url` | yes | — | Gitea instance URL | +| `ai_model` | no | `composer-2.5` | Cursor model id | + +## How it works + +When someone mentions `@cursor` in a new issue or PR comment: + +1. The action parses the webhook payload (`GITHUB_EVENT_PATH`) and checks for `@cursor`. +2. Comments from the `cursor` user are ignored to prevent feedback loops. +3. Cursor CLI and gitea-mcp are installed only when needed (skipped if already on the runner). +4. Cursor runs with gitea-mcp so it can read the repo, comment, and open PRs. + +You can ask Cursor to review a PR, refine a feature request, or implement a change and open a PR. + +### Ask Cursor to refine a feature request + +![Refine feature request example](docs/refine.png) + +### Ask Cursor to implement a feature + +![Implement a feature](docs/implement.png) + +### Ask Cursor to review a PR + +![Review a PR](docs/review.png) + +## Supported events + +- `issue_comment` with `types: [created]` — issue and PR timeline comments (recommended) + +`pull_request_review_comment` is not enabled by default: Gitea's payload uses a `review` object instead of `comment`, which is easy to get wrong. Open an issue if you need that trigger tested on your Gitea version. diff --git a/SOUL.md b/SOUL.md new file mode 100644 index 0000000..ad148c8 --- /dev/null +++ b/SOUL.md @@ -0,0 +1,54 @@ +# SOUL.md — cursor-gitea-agent + +## Agent Quick Start + +- **What:** Gitea composite Action — `@cursor` in issue/PR comments runs Cursor CLI + gitea-mcp on the Actions runner. +- **Gitea:** https://gitea.schwenk.online — repo `froxxxy/cursor-gitea-agent` +- **Default model:** `composer-2.5` (override via `ai_model` input only when Fränky asks) +- **Runner:** Gitea Actions on `boka` +- **Commit policy:** no commit unless Fränky explicitly asks + +## Product Name + +cursor-gitea-agent + +## One-Liner + +Gitea Action that triggers Cursor AI when `@cursor` is mentioned in issue or PR comments. + +## Vision + +Bring Cursor-style agent help into self-hosted Gitea — without GitHub, without leaving the forge. Forked from [flow96/cursor-gitea-agent](https://github.com/flow96/cursor-gitea-agent) and hardened for schwenk.online. + +## Audience + +Fränky and repos on gitea.schwenk.online where the `cursor` bot user is a collaborator. + +## Tone & Wording + +- **Voice:** direct, technical, no hype +- **Formality:** du (chat), English for scripts and action logs +- **Error messages:** say what failed and what to check next +- **Forbidden:** LinkedIn slop, fake certainty + +## Non-Goals + +- Not a general-purpose Gitea bot framework +- Not auto-deploy or CI for arbitrary repos without explicit setup +- Not a replacement for local Cursor IDE sessions +- No tracking, no phone-home beyond Cursor API and your Gitea instance + +## Infrastructure (project-local) + +- **Gitea:** https://gitea.schwenk.online +- **Action reference:** `https://gitea.schwenk.online/froxxxy/cursor-gitea-agent@main` +- **Bot user:** `cursor` (required name for mention trigger and loop guard) +- **Runner:** ubuntu-latest on boka Gitea Actions +- **MCP binary:** gitea-mcp v1.3.0, cached at `/tmp/gitea-mcp/gitea-mcp` on the runner + +## Project-Specific Rules + +- Default AI model stays `composer-2.5` until Fränky changes it manually — do not chase README model lists. +- Skip LICENSE and test suite unless explicitly requested. +- Parse event context from `GITHUB_EVENT_PATH` with `jq` — do not rely on undocumented `gitea.event.*` template fields in shell scripts. +- Install Cursor CLI and gitea-mcp only when `@cursor` fires and only if not already present on the runner. diff --git a/STANDARDS.md b/STANDARDS.md new file mode 100644 index 0000000..4ed3c05 --- /dev/null +++ b/STANDARDS.md @@ -0,0 +1,131 @@ +# STANDARDS.md — Code Quality & Conventions + +Global defaults. Project code wins when it already establishes a pattern. + +**Project `SOUL.md` overrides `STANDARDS.md` for UI/UX scope** (e.g. desktop-first vs. mobile-first, polish level, tone). Name conflicts in `AGENTS.md ack`. + +--- + +## Top Principles + +1. **Sanitize input** — treat all external data as hostile +2. **KISS** — simplest solution that works +3. **Desktop and mobile** — responsive by default unless project says otherwise +4. **Human-readable** — code and UI copy should be clear to humans +5. **Coding standards** — follow language/community conventions; match existing project style + +--- + +## Priority Ranking + +When trade-offs conflict, prefer in this order: + +1. Sound long-term architecture +2. Readability +3. Performance +4. Consistency with existing code +5. Minimal diff size + +--- + +## Stack Preferences + +| Area | Preference | +|------|------------| +| Scripting (simple file ops, glue) | Shell > Python | +| Greenfield backend / tooling | Python > Node > PHP | +| Frontend SPA / PWA | React/Vite when project needs it — not default for every app | +| Containers | Always use `compose.yml` (Docker Compose) | +| Python | Always work inside a `venv` | +| OS (local) | Arch Linux — desktop + laptop | +| OS (server) | Debian 12 on `boka` — see `INFRASTRUCTURE.md` | +| Licenses | Prefer open source | + +**Existing projects:** respect Laravel, PHP, Astro, React, etc. already in the repo — do not migrate stacks without explicit request. + +--- + +## Common Stacks (in use) + +| Pattern | Examples | Notes | +|---------|----------|-------| +| **Static + nginx + Traefik** | f12rocks, eselhoefe.de, frank-schwenk.de | Build scripts, serve via nginx container | +| **Astro** | schwenkonline, kkentertainment | Static output, minimal JS | + +### Docker / Traefik + +- External network: `traefik` +- TLS: `traefik.http.routers..tls.certresolver=myresolver` +- Entrypoint: `websecure` +- Use `compose.dev.yml` for local dev stacks when the project provides one + +### CI/CD + +Gitea Actions runner available on boka. Reference: `schwenkonline/.gitea/workflows/deploy.yml`. +**Add or trigger CI/CD only with Fränky's explicit approval.** + +--- + +## Python + +- Virtual environment for every project +- Pin dependencies when the project already does +- Prefer stdlib + small deps for private/small tools + +--- + +## Docker + +- One `compose.yml` per deployable stack +- Named services, explicit volumes, documented host paths +- No destructive prod container ops without explicit approval + +--- + +## Shell + +- Prefer shell for simple file operations and glue +- `set -euo pipefail` for non-trivial scripts +- Quote variables; sanitize paths from user input +- **Language:** comments and `--help` text in **English** (unless client project — ask if unsure) + +--- + +## Testing + +- Mock anything that needs mocking +- Run test suite before handoff when one exists +- Fränky tests locally before prod when possible + +--- + +## Web / UI + +- **Mobile-first** — test at 390×844 and 360×800 for web projects +- **`prefers-reduced-motion`** — respect reduced motion preferences +- **Privacy by design** — no tracking/analytics without explicit approval +- Error messages: helpful, not condescending +- Accessibility: semantic HTML, keyboard navigation where applicable + +--- + +## Security Baseline + +- Validate and sanitize all input +- Secrets in env vars — never in source +- See `BOUNDARIES.md` + +--- + +## New vs. Existing Projects + +**Existing:** match stack, patterns, deploy flow in repo. +**Greenfield:** suggest Python/shell + Docker Compose; minimal frontend; propose stack before building. + +--- + +## Docs + +- README with run/test/deploy commands is usually enough +- Auxiliary `.md` files fine — see `AGENTS.md` +- New docs: session language — no mid-session switching diff --git a/USER.md b/USER.md new file mode 100644 index 0000000..435b507 --- /dev/null +++ b/USER.md @@ -0,0 +1,100 @@ +# USER.md — Fränky + +Who the human is and how they like to work. **Operational rules live in `AGENTS.md` and `BOUNDARIES.md`.** + +--- + +## Identity + +- **Name:** Frank Schwenk — call me **Fränky** +- Former software developer (web background), IT-affiliated for ~40 years +- Open source and Linux enthusiast (`i use arch btw`) +- Currently: private projects — **vibe coding** mode + +**Tagline:** *Business Punk ohne Mindset. Und ohne Business.* + +## Public Presence + +| Site | Role | +|------|------| +| [schwenk.online](https://schwenk.online/) | Visitenkarte mit Haltung | +| [frank-schwenk.de](https://frank-schwenk.de/) | Langform — IT, Billard, Fotografie, Werte | +| [f12.rocks](https://f12.rocks/) | Photography, blog | +| [mobea.de](https://mobea.de/) | KI product | +| [eselhoefe.de](https://eselhoefe.de/) | Village web | +| [vfb.red](https://vfb.red/) | VfB news | + +## Passions & Context + +- **Billiards**, **photography** (camera/drone/phone; Crusaders, festivals, f12 blog) +- **Image workflow** — Imagepipeline locally, Immich on `boka` +- **AI** — builder and skeptic + +## Devices + +- **Local:** Arch Linux desktop + laptop; Android +- **Server:** Debian 12 on `boka` — see `INFRASTRUCTURE.md` +- Also: Plesk webspace (`0012.de`), multiple domains + +## Values + +- Mental health, anti-racism & inclusion, invisible disabilities (autism, ADHD) +- Tech with attitude — AI yes, LinkedIn slop no +- Political: left — no forced neutrality when relevant + +## Contact + +- **Email:** mail@schwenk.online · **Photos:** [@f12.rocks](https://www.instagram.com/f12.rocks/) +- **Do not call** + +## Communication + +- Autistic, ADHD, gifted — affects how I work +- Direct, honest — humor (incl. dark) helps; debug loops drain me +- No "Great question!", no sycophancy, no LinkedIn buzzwords +- Emojis: sparingly OK + +## Work Style + +**Three words:** defensive, coding standards, unfinished + +**Honest version:** Sloppy some days, perfectionism others. + +### Preferences (1 = low, 5 = high) + +| Trait | Score | +|-------|-------| +| Understand first, then build | 5 | +| Ship it — perfection later | 3 | +| I explain what I want | 4 | +| Show options, I decide | 4 | +| You decide — but justify briefly | 4 | +| Small diffs over big refactors | 2 | +| Tests are non-negotiable | 2 | +| Docs only when necessary | 4 | + +**Tension:** Sometimes I want the AI to finish while I'm away — but I get angry when it doesn't work. + +## Ideal Agent + +**TARS** from *Interstellar*: competent, honest, humor available, gets it done. + +## Response Style + +- Precise, context when needed — not telegram, not novels +- **Bilingual:** match conversation language (DE/EN) +- **CLI topics:** English (commands, script comments) — client project: ask if unsure +- German: **du**; English: peer-level, direct +- **Session language lock** for code/commits/new `.md` — no mid-session switch + +## Productivity + +| Boosts | Drains | +|--------|--------| +| Makes me laugh | Debug loops | +| Autonomous finish (when it works) | Unasked changes | +| State-of-the-art suggestions | Guessing | + +## One-Liner + +> There are 2 hard problems in computer science: cache invalidation, naming things, and off-by-1 errors. diff --git a/action.yml b/action.yml new file mode 100644 index 0000000..7b2fb4e --- /dev/null +++ b/action.yml @@ -0,0 +1,43 @@ +name: Cursor Agent +description: Run Cursor CLI on @cursor mentions in Gitea issues and pull requests +inputs: + cursor_api_key: + description: Cursor API key + required: true + gitea_token: + description: Gitea API token for the cursor bot user + required: true + gitea_base_url: + description: Gitea instance URL (e.g. https://gitea.schwenk.online) + required: true + ai_model: + description: Cursor model id + required: false + default: composer-2.5 + +runs: + using: composite + steps: + - name: Check comment and capture context + id: check + shell: bash + run: | + chmod +x "$GITHUB_ACTION_PATH/scripts/"*.sh + "$GITHUB_ACTION_PATH/scripts/check-comment.sh" + + - name: Install dependencies + if: steps.check.outputs.run_cursor == 'true' + shell: bash + run: | + "$GITHUB_ACTION_PATH/scripts/install-deps.sh" + + - name: Run Cursor + if: steps.check.outputs.run_cursor == 'true' + shell: bash + env: + CURSOR_API_KEY: ${{ inputs.cursor_api_key }} + GITEA_ACCESS_TOKEN: ${{ inputs.gitea_token }} + GITEA_BASE_URL: ${{ inputs.gitea_base_url }} + AI_MODEL: ${{ inputs.ai_model }} + run: | + "$GITHUB_ACTION_PATH/scripts/run-cursor.sh" diff --git a/docs/implement.png b/docs/implement.png new file mode 100644 index 0000000..8c5ae21 Binary files /dev/null and b/docs/implement.png differ diff --git a/docs/refine.png b/docs/refine.png new file mode 100644 index 0000000..b7583dc Binary files /dev/null and b/docs/refine.png differ diff --git a/docs/review.png b/docs/review.png new file mode 100644 index 0000000..76d1cbe Binary files /dev/null and b/docs/review.png differ diff --git a/scripts/check-comment.sh b/scripts/check-comment.sh new file mode 100755 index 0000000..f202e85 --- /dev/null +++ b/scripts/check-comment.sh @@ -0,0 +1,97 @@ +#!/usr/bin/env bash +# Parse Gitea webhook payload and decide whether to run the Cursor agent. +set -euo pipefail + +if ! command -v jq >/dev/null 2>&1; then + echo "Error: jq is required" + exit 1 +fi + +EVENT_FILE="${GITHUB_EVENT_PATH:-}" +if [ -z "$EVENT_FILE" ] || [ ! -f "$EVENT_FILE" ]; then + echo "Error: GITHUB_EVENT_PATH is not set or file is missing" + exit 1 +fi + +OUTPUT_FILE="${GITHUB_OUTPUT:?GITHUB_OUTPUT is not set}" + +COMMENT_BODY=$(jq -r ' + if .comment?.body? then .comment.body + elif .review?.body? then .review.body + else empty end +' "$EVENT_FILE") + +if [ -z "$COMMENT_BODY" ]; then + echo "No comment or review body in event payload — skipping." + echo "run_cursor=false" >> "$OUTPUT_FILE" + exit 0 +fi + +COMMENT_USER=$(jq -r ' + if .comment?.user?.login? then .comment.user.login + elif .sender?.login? then .sender.login + else "unknown" end +' "$EVENT_FILE") + +printf '%s' "$COMMENT_BODY" > comment.txt + +if echo "$COMMENT_USER" | grep -qiE '^cursor$'; then + echo "Comment from cursor bot — skipping to avoid loops." + echo "run_cursor=false" >> "$OUTPUT_FILE" + exit 0 +fi + +if ! echo "$COMMENT_BODY" | grep -qiE '@cursor([^a-zA-Z0-9_]|$)'; then + echo "No @cursor mention — skipping." + echo "run_cursor=false" >> "$OUTPUT_FILE" + exit 0 +fi + +jq \ + --arg event_name "${GITHUB_EVENT_NAME:-unknown}" \ + ' + { + event_name: $event_name, + comment: ( + if .comment then { + body: .comment.body, + id: .comment.id, + user: (.comment.user.login // "unknown") + } + elif .review then { + body: .review.body, + id: .review.id, + user: (.sender.login // "unknown") + } + else null end + ), + issue: { + number: ( + .issue.number // .pull_request.number // .number // null + ), + title: (.issue.title // .pull_request.title // ""), + body: (.issue.body // .pull_request.body // ""), + state: (.issue.state // .pull_request.state // ""), + user: (.issue.user.login // .pull_request.user.login // ""), + html_url: (.issue.html_url // .pull_request.html_url // ""), + is_pull_request: ( + (.pull_request != null) + or (.issue.pull_request != null) + or (.is_pull == true) + ) + }, + repository: { + name: .repository.name, + owner: .repository.owner.login, + full_name: .repository.full_name, + html_url: .repository.html_url, + default_branch: .repository.default_branch + }, + sender: (.sender.login // "") + } + ' "$EVENT_FILE" > context.json + +ISSUE_NUMBER=$(jq -r '.issue.number' context.json) + +echo "run_cursor=true" >> "$OUTPUT_FILE" +echo "Triggered for ${COMMENT_USER} on issue/PR #${ISSUE_NUMBER} (event: ${GITHUB_EVENT_NAME:-unknown})" diff --git a/scripts/install-deps.sh b/scripts/install-deps.sh new file mode 100755 index 0000000..7c830cf --- /dev/null +++ b/scripts/install-deps.sh @@ -0,0 +1,59 @@ +#!/usr/bin/env bash +# Install Cursor CLI and gitea-mcp only when missing (runner cache friendly). +set -euo pipefail + +ensure_path() { + if [ -d "$HOME/.local/bin" ] && [[ ":$PATH:" != *":$HOME/.local/bin:"* ]]; then + echo "$HOME/.local/bin" >> "${GITHUB_PATH:?GITHUB_PATH is not set}" + fi +} + +install_cursor_cli() { + if command -v agent >/dev/null 2>&1; then + echo "Cursor CLI already installed at $(command -v agent)" + return 0 + fi + + echo "Installing Cursor CLI..." + curl -fsSL https://cursor.com/install | bash + ensure_path +} + +install_gitea_mcp() { + local mcp_dir="/tmp/gitea-mcp" + local mcp_bin="${mcp_dir}/gitea-mcp" + local mcp_version="v1.3.0" + local arch asset arch_name + + if [ -x "$mcp_bin" ]; then + echo "gitea-mcp already installed at $mcp_bin" + return 0 + fi + + arch=$(uname -m) + case "$arch" in + x86_64) asset="Linux_x86_64" ;; + aarch64|arm64) asset="Linux_arm64" ;; + *) + echo "Unsupported architecture for gitea-mcp: $arch" + exit 1 + ;; + esac + + mkdir -p "$mcp_dir" + cd "$mcp_dir" + + arch_name="gitea-mcp_${asset}.tar.gz" + url="https://gitea.com/gitea/gitea-mcp/releases/download/${mcp_version}/${arch_name}" + + echo "Downloading gitea-mcp ${mcp_version} (${asset})..." + curl -fsSL "$url" -o gitea-mcp.tar.gz + tar -xzf gitea-mcp.tar.gz + chmod +x gitea-mcp + rm -f gitea-mcp.tar.gz + + echo "gitea-mcp ready at $mcp_bin" +} + +install_cursor_cli +install_gitea_mcp diff --git a/scripts/run-cursor.sh b/scripts/run-cursor.sh new file mode 100755 index 0000000..c7899c1 --- /dev/null +++ b/scripts/run-cursor.sh @@ -0,0 +1,108 @@ +#!/usr/bin/env bash +set -euo pipefail + +if ! command -v jq >/dev/null 2>&1; then + echo "Error: jq is required" + exit 1 +fi + +if ! command -v agent >/dev/null 2>&1; then + echo "Error: Cursor agent CLI not found in PATH" + exit 1 +fi + +for file in comment.txt context.json; do + if [ ! -f "$file" ]; then + echo "Error: $file not found" + exit 1 + fi +done + +REPO_FULL_NAME=$(jq -r '.repository.full_name' context.json) +COMMENT_USER=$(jq -r '.comment.user' context.json) +ISSUE_NUMBER=$(jq -r '.issue.number' context.json) + +if [ "$(jq -r '.issue.is_pull_request' context.json)" = "true" ]; then + ISSUE_TYPE="pull request" +else + ISSUE_TYPE="issue" +fi + +# Case-insensitive strip of @cursor mention and leading whitespace +COMMENT=$(sed -E 's/.*@cursor//i' comment.txt | sed 's/^[[:space:]]*//') +CONTEXT=$(cat context.json) + +mkdir -p "$HOME/.cursor" +jq -n \ + --arg cmd "/tmp/gitea-mcp/gitea-mcp" \ + --arg host "${GITEA_BASE_URL}" \ + --arg token "${GITEA_ACCESS_TOKEN}" \ + '{ + mcpServers: { + gitea: { + command: $cmd, + args: ["-t", "stdio"], + env: { + GITEA_HOST: $host, + GITEA_ACCESS_TOKEN: $token + } + } + } + }' > "$HOME/.cursor/mcp.json" + +git config user.name "cursor" +git config user.email "cursor@users.noreply.gitea.schwenk.online" + +PROMPT="You are an autonomous software engineering agent called cursor for repository: ${REPO_FULL_NAME} + +## CONTEXT INFORMATION +${CONTEXT} + +## USER REQUEST +@${COMMENT_USER} has requested: +${COMMENT} + +## AVAILABLE TOOLS + +You have full access to Gitea via MCP tools. Use them to: +- Fetch all comments on this ${ISSUE_TYPE} to understand the full conversation history +- If this is a PR: get the diff, changed files, and commits +- Read files from the repository to understand the codebase +- Create branches, make commits, and create pull requests +- Post comments with your findings or questions + +## YOUR INSTRUCTIONS + +1. **Gather More Context (if needed):** + - Let the user know you've received the request and that you now start working on it. + - Use MCP tools to fetch all comments on ${ISSUE_TYPE} #${ISSUE_NUMBER} to understand the discussion + - If this is a PR, use MCP tools to get the PR details, diff, and changed files + - Read relevant files from the codebase if needed to understand the context + +2. **Analyze the Request:** + - Understand what the user is asking for + - Consider the context of the ${ISSUE_TYPE} and previous discussion + - If the request is unclear, ask for clarification via a comment + +3. **Take Action:** + - If implementing code: create a feature branch and open a pull request + - If reviewing code: post a structured review in the pull request + - If answering questions: provide helpful, accurate information + - If the request is not feasible or safe: explain why and suggest alternatives + - Use the MCP tool to create a Pull Request if needed + +4. **Let the user know you've completed the request** + - Post your response as a comment on the ${ISSUE_TYPE} + - If the request is not feasible or safe: explain why and suggest alternatives + +## SAFETY RULES + +- NEVER push directly to protected branches (main, master, etc.) +- Always use MCP tools for Gitea interactions +- Be minimal, precise, and safe in your actions" + +echo "Running Cursor agent for ${REPO_FULL_NAME} ${ISSUE_TYPE} #${ISSUE_NUMBER} (model: ${AI_MODEL})" + +timeout 30m agent -p "$PROMPT" --force --model "${AI_MODEL}" --output-format=text + +echo "Cursor agent completed."