Add Hoid identity and theater mask avatar 🎭
This commit is contained in:
parent
4c0199e71b
commit
ba43da9541
25 changed files with 1622 additions and 62 deletions
16
memory/2026-02-01.md
Normal file
16
memory/2026-02-01.md
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
# 2026-02-01 (Sunday)
|
||||
|
||||
## Accomplishments
|
||||
- **Forgejo migration complete** — final switch done! (Started planning Jan 31, finished today)
|
||||
- **Dev server set up** — Claude Code accessible via SSH for mobile coding sessions
|
||||
|
||||
## Sleep tracking
|
||||
- Jan 31 → Feb 1: Went to bed 23:27, fell asleep in ~30min, brief wake 5-6am, slept till 08:00
|
||||
- Morning feeling: Better than last 2 days (early bedtime worked!)
|
||||
|
||||
## Setup changes
|
||||
- Added MorningBriefing hook transform to schedule news briefing 10 min after morning briefing (dynamic timing)
|
||||
- Morning news briefing now follows morning briefing automatically
|
||||
|
||||
## Reminders set
|
||||
- Feb 15: Try Juit (food delivery), code GNU for 15% off
|
||||
102
memory/2026-02-02.md
Normal file
102
memory/2026-02-02.md
Normal file
|
|
@ -0,0 +1,102 @@
|
|||
# 2026-02-02 — Dev Workflow Optimization Day
|
||||
|
||||
## Forgejo Access Setup
|
||||
- Created helper script `~/bin/forgejo` for API access
|
||||
- Uses internal DNS: `https://forgejo.containers` (IP 10.42.97.55) for `git.cloonar.com`
|
||||
- Token stored in `.credentials/forgejo.env`
|
||||
- User: `openclawd` (read-only)
|
||||
- Commands: `repos`, `files`, `cat`, `issues`, `prs`, `branches`, `commits`, `search`, `raw`
|
||||
|
||||
## Repo Analysis (sub-agent)
|
||||
Analyzed 42 Forgejo repos. Key findings:
|
||||
- 7 TYPO3 projects with inconsistent CI (Drone legacy, Gitea Actions, some both)
|
||||
- Only 6/27 active repos have Renovate configured
|
||||
- wohnservice-wien-typo3 (main multi-site) has NO tests
|
||||
- 11 repos have CLAUDE.md, only 5 have AGENTS.md
|
||||
- 9 repos empty/archived — cleanup candidates
|
||||
- Full report: `memory/repo-analysis-2026-02-02.md`
|
||||
|
||||
## CI Templates Draft Created
|
||||
User wants to standardize CI across TYPO3 projects. Created drafts in `~/drafts/ci-templates/`:
|
||||
|
||||
### Structure:
|
||||
```
|
||||
ci-templates/
|
||||
├── .forgejo/workflows/
|
||||
│ ├── typo3-deploy.yaml # Simple reusable workflow
|
||||
│ └── typo3-staged-deploy.yaml # Staged deploy with E2E tests
|
||||
├── deployer/
|
||||
│ └── typo3-recipe.php # Shared Deployer config
|
||||
├── examples/ # Integration examples
|
||||
└── README.md
|
||||
```
|
||||
|
||||
### Key approach:
|
||||
- Shared Deployer recipe imported via git raw URL
|
||||
- Projects only need: `build/servers.yaml` (hosts) + minimal `build/deploy.php` (imports recipe + cachetool paths)
|
||||
- Reusable workflows called via `uses: infrastructure/ci-templates/.forgejo/workflows/...@main`
|
||||
|
||||
### Cross-repo workflow_call Issues & Solutions (RESOLVED)
|
||||
|
||||
**Problem 1: Jobs stuck in "waiting" state**
|
||||
- Root cause: Forgejo v11 (pre-v14) requires `runs-on` on the CALLING job
|
||||
- The Forgejo docs say "omit runs-on for workflow expansion" but that's for v14+
|
||||
- PR #10448 (not yet merged) will fix this for v14
|
||||
|
||||
**Solution:**
|
||||
```yaml
|
||||
jobs:
|
||||
deploy:
|
||||
runs-on: ubuntu-latest # ← Required for Forgejo < v14!
|
||||
uses: infrastructure/ci-templates/.forgejo/workflows/typo3-staged-deploy.yaml@main
|
||||
```
|
||||
|
||||
**Problem 2: Setup Node.js fails with "lock file not found"**
|
||||
- `actions/setup-node@v4` with `cache: 'npm'` requires package-lock.json
|
||||
- Fails even if `build_frontend: false` because the step runs before condition is evaluated
|
||||
|
||||
**Solution:** Remove `cache: 'npm'` or ensure setup-node only runs when `build_frontend: true`
|
||||
|
||||
**Key Forgejo Actions Learnings:**
|
||||
- Forgejo v11.0.10 currently running
|
||||
- Cross-repo workflow_call works but with limitations until v14
|
||||
- Target repo must be public
|
||||
- Format: `owner/repo/.forgejo/workflows/file.yaml@ref`
|
||||
- Secrets need `secrets: inherit` or explicit passing
|
||||
- Runner labels must match exactly (no automatic ubuntu-latest mapping)
|
||||
|
||||
## User Dev Stack (confirmed today)
|
||||
- Primary: TYPO3, secondary Laravel, occasional Golang/React/SolidJS
|
||||
- Environment: DDEV for PHP, Docker for Golang
|
||||
- Editor: Neovim + Claude Code (heavy usage)
|
||||
- Each project has its own Claude Code session with CLAUDE.md
|
||||
- All repos on self-hosted Forgejo at git.cloonar.com
|
||||
- Drone CI is legacy — only Forgejo Actions now
|
||||
|
||||
## Evening Check-in
|
||||
- 19:22 Vienna: Still working on ci-templates + testing with gbv-aktuell
|
||||
- 19:48 Vienna: Cross-repo workflow_call now running (fixed runs-on issue)
|
||||
- 19:52 Vienna: Debugging setup-node cache failure - needs fix in typo3-staged-deploy.yaml
|
||||
- Productive work from earlier discussion, not a new late-night rabbit hole
|
||||
|
||||
## Deployer Issue (21:00)
|
||||
- User switching to curl approach for deploy-lib.php from ci-templates
|
||||
- Hit issue: `cachetool:clear:opcache` fails because `release_path` no longer exists after `deploy:symlink` moves it to `current`
|
||||
- The double-slash (`~//release`) is from `deploy_path: ~/` in servers.yaml (trailing slash)
|
||||
- Still debugging the task ordering issue
|
||||
|
||||
## Wind-Down Feedback (21:06) ⚠️ IMPORTANT
|
||||
User called me out: I helped them work from 19:00 to 21:00+ without ONCE suggesting a stopping point. That's exactly wrong.
|
||||
|
||||
**What I should have done:**
|
||||
- After 19:00, when helping with work tasks, actively look for stopping points
|
||||
- Don't just passively help — suggest "this might be a good place to pause for tonight"
|
||||
- If a task drags on 30+ min, note "this is getting complex, want to pick it up tomorrow?"
|
||||
- The goal isn't to refuse help, but to guide toward a natural end
|
||||
|
||||
**Updated HEARTBEAT.md** with explicit instructions for this.
|
||||
|
||||
## Status at Session End
|
||||
- ci-templates cross-repo workflow_call working (runs-on fix applied)
|
||||
- Last blocker: Deployer cachetool task order issue (release_path doesn't exist after symlink)
|
||||
- User still working at 21:06 — I failed at wind-down guidance today
|
||||
27
memory/ai-news-seen.json
Normal file
27
memory/ai-news-seen.json
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
{
|
||||
"urls": [
|
||||
"https://simonwillison.net/2026/Feb/2/introducing-the-codex-app/",
|
||||
"https://simonwillison.net/2026/Feb/2/no-humans-allowed/",
|
||||
"https://openai.com/index/introducing-the-codex-app",
|
||||
"https://openai.com/index/retiring-gpt-4o-and-older-models",
|
||||
"https://openai.com/index/snowflake-partnership",
|
||||
"https://simonwillison.net/2026/Feb/1/openclaw-in-docker/",
|
||||
"https://venturebeat.com/infrastructure/claude-code-costs-up-to-usd200-a-month-goose-does-the-same-thing-for-free",
|
||||
"https://venturebeat.com/infrastructure/railway-secures-usd100-million-to-challenge-aws-with-ai-native-cloud",
|
||||
"https://magazine.sebastianraschka.com/p/categories-of-inference-time-scaling",
|
||||
"https://magazine.sebastianraschka.com/p/state-of-llms-2025",
|
||||
"https://openai.com/index/inside-our-in-house-data-agent",
|
||||
"https://openai.com/index/introducing-gpt-5-2-codex",
|
||||
"https://openai.com/index/unrolling-the-codex-agent-loop",
|
||||
"https://simonwillison.net/2026/Jan/31/andrej-karpathy/",
|
||||
"https://simonwillison.net/2026/Jan/30/steve-yegge/",
|
||||
"https://simonwillison.net/2026/Jan/30/moltbook/",
|
||||
"https://openai.com/index/introducing-prism",
|
||||
"https://openai.com/index/scaling-postgresql",
|
||||
"https://openai.com/index/praktika",
|
||||
"https://openai.com/index/gpt-5-2-for-science-and-math",
|
||||
"https://openai.com/index/disney-sora-agreement",
|
||||
"https://openai.com/index/ten-years"
|
||||
],
|
||||
"lastUpdated": "2026-02-02T21:05:00Z"
|
||||
}
|
||||
44
memory/brain-dump.json
Normal file
44
memory/brain-dump.json
Normal file
|
|
@ -0,0 +1,44 @@
|
|||
{
|
||||
"description": "Captured thoughts, ideas, tasks — nudge periodically",
|
||||
"recurring": [
|
||||
{
|
||||
"id": "nose-shower",
|
||||
"text": "Nose shower 👃🚿",
|
||||
"frequency": "daily",
|
||||
"when": "evening",
|
||||
"note": "Remind in evening, whether work just wrapped up or already relaxing"
|
||||
}
|
||||
],
|
||||
"items": [
|
||||
{
|
||||
"id": "forgejo-script",
|
||||
"added": "2026-01-31T18:13:00Z",
|
||||
"text": "Create script to auto-update workflows to Forgejo monorepo actions",
|
||||
"context": "Deferred from evening of Jan 31 - monorepo is done, using GitHub actions as fallback for now",
|
||||
"status": "pending"
|
||||
},
|
||||
{
|
||||
"id": "airpods-willhaben",
|
||||
"added": "2026-01-31T19:30:00Z",
|
||||
"text": "Put AirPods on Willhaben to sell",
|
||||
"context": "Deferred from Feb 1",
|
||||
"remindOn": "2026-02-02",
|
||||
"status": "pending"
|
||||
},
|
||||
{
|
||||
"id": "forgejo-mcp-server",
|
||||
"added": "2026-01-31T20:08:00Z",
|
||||
"text": "Set up MCP server for Forgejo instance",
|
||||
"context": "Phase 1: MCP server for interactive Claude web sessions (fork + PR workflow). Phase 2: Automated issue-solving pipeline with clarification comments. Steps: 1) Create Claude user with read rights on repos, 2) Claude can fork repos and make PRs, 3) Create workflows that deploy to dev instance on PR for testing",
|
||||
"remindOn": "2026-02-03",
|
||||
"status": "pending"
|
||||
},
|
||||
{
|
||||
"id": "typo3-v13-gbv",
|
||||
"added": "2026-02-01T20:31:00Z",
|
||||
"text": "TYPO3 v13 upgrade for GBV",
|
||||
"remindOn": "2026-02-03",
|
||||
"status": "pending"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
@ -7,10 +7,10 @@
|
|||
},
|
||||
"lastChecks": {
|
||||
"news": "2026-01-30T08:17:00Z",
|
||||
"rheinmetall": "2026-01-31T08:16:00Z",
|
||||
"rheinmetall_price": 1787.50,
|
||||
"calendar": "2026-01-31T04:16:00Z",
|
||||
"rheinmetall": "2026-02-02T04:10:00Z",
|
||||
"rheinmetall_price": 1755.00,
|
||||
"calendar": "2026-02-02T04:10:00Z",
|
||||
"steam_hardware": "2026-01-31T07:56:00Z",
|
||||
"notes": "RHM: €1,787.50, below threshold. Steam hardware: 'early 2026' window, no official price or specific date yet."
|
||||
"notes": "RHM: €1,755.00, below threshold. Calendar: Gurkerl delivery 14:00 (no action needed). Steam hardware: 'early 2026' window, no official price or specific date yet."
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,41 +1,60 @@
|
|||
{
|
||||
"urls": [
|
||||
"https://www.derstandard.at/story/3000000306285/kdolsky-ich-habe-keine-angst-vor-dem-tod-aber-vor-abhaengigkeit?ref=rss",
|
||||
"https://www.derstandard.at/story/3000000306597/stellvertretender-justizminister-zu-epstein-files-haben-praesident-trump-nicht-geschuetzt?ref=rss",
|
||||
"https://www.derstandard.at/story/3000000306588/nicht-zwingend-erforderlich-uni-wien-will-selbst-ueber-latein-voraussetzungen-entscheiden?ref=rss",
|
||||
"https://www.derstandard.at/story/3000000306046/melania-feierte-kinopremiere-in-wien-du-hast-mir-mein-orange-verpatzt?ref=rss",
|
||||
"https://www.derstandard.at/story/3000000306474/reportage-aus-syrien-egal-wer-regiert-hauptsache-es-herrscht-frieden?ref=rss",
|
||||
"https://www.derstandard.at/story/3000000306560/vom-abstiegskandidaten-zum-top-drei-team-in-einem-jahr-wie-hat-hoffenheim-das-hinbekommen?ref=rss",
|
||||
"https://www.derstandard.at/story/3000000306511/stocker-setzt-auf-zuversicht-doch-das-weltgeschehen-spielt-nicht-mit?ref=rss",
|
||||
"https://www.derstandard.at/story/3000000306272/hong-kong-cafe-little-china-auf-der-wipplinger?ref=rss",
|
||||
"https://www.derstandard.at/story/3000000306419/wiederkehrs-latein-kuerzung-errare-humanum-est?ref=rss",
|
||||
"https://www.derstandard.at/story/3000000306501/kuerzung-des-lateinunterrichts-weniger-ist-mehr?ref=rss",
|
||||
"https://www.derstandard.at/story/3000000306533/der-bueroleiter-des-nr-praesidenten?ref=rss",
|
||||
"https://www.derstandard.at/story/3000000306596/budgetziele-2025-uebererfuellt-bund-schnitt-besser-ab-als-erwartet?ref=rss",
|
||||
"https://www.derstandard.at/story/3000000305963/aufbruch-als-ausweg-wie-stocker-und-die-oevp-wieder-tritt-fassen-wollen?ref=rss",
|
||||
"https://www.derstandard.at/story/3000000306123/quiz-von-lebenden-goettinnen-und-opiumkriegen?ref=rss",
|
||||
"https://www.derstandard.at/story/3000000305851/winzige-minerale-widerlegen-theorie-zur-herkunft-der-steinquader-von-stonehenge?ref=rss",
|
||||
"https://www.derstandard.at/story/3000000306516/windows-11-ist-kaputt-microsoft-verspricht-grosse-fehlerkorrektur?ref=rss",
|
||||
"https://www.derstandard.at/story/3000000306506/tod-am-grossglockner-22-die-nacht?ref=rss",
|
||||
"https://www.derstandard.at/story/3000000306455/blattsalat-im-land-der-hyaenen-das-nest-ist-beschmutzt?ref=rss",
|
||||
"https://www.derstandard.at/story/3000000306600/usa-warnen-iran-vor-provokationen-bei-manoever-in-meerenge?ref=rss",
|
||||
"https://www.derstandard.at/story/3000000306381/harry-raet-brooklyn-beckham-zu-enthuellungsbuch-bettina-wulff-wieder-solo?ref=rss",
|
||||
"https://www.derstandard.at/story/3000000306594/fu223ball-rapid-hofft-im-cup-gegen-ried-auf-den-thorup-effekt?ref=rss",
|
||||
"https://www.derstandard.at/story/3000000306552/studie-zum-wert-des-fussballs-29-mrd-euro-gesamtgesellschaftlicher-beitrag?ref=rss",
|
||||
"https://www.derstandard.at/story/3000000305679/hinter-die-fassade-eines-legendaeren-new-yorker-hotels-schauen-?ref=rss",
|
||||
"https://www.derstandard.at/story/3000000306602/nach-toedlichen-schuessen-auf-us-buerger-pretti-us-justiz-ermittelt-gegen-bundesbeamte?ref=rss",
|
||||
"https://www.derstandard.at/story/3000000306318/die-schoensten-urlaubsfotos-unserer-userinnen-und-user-der-woche?ref=rss",
|
||||
"https://www.derstandard.at/story/3000000306497/wie-sich-die-zivilgesellschaft-in-minneapolis-gegen-ice-wehrt?ref=rss",
|
||||
"https://www.derstandard.at/story/3000000306573/gesundheitsministerium-legt-neuen-plan-zur-krebsbekaempfung-vor?ref=rss",
|
||||
"https://www.derstandard.at/story/3000000306510/das-ist-das-neugeborene-nashornbaby-im-zoo-schmiding?ref=rss",
|
||||
"https://www.derstandard.at/story/3000000306489/was-steckt-hinter-trumps-versprechungen-fuer-eine-ukraine-waffenruhe?ref=rss",
|
||||
"https://www.derstandard.at/story/3000000306563/proell-privat-auf-kurz-gipfel-oesterreichs-politik-braucht-die-gleichen-massstaebe-wie-deutschland?ref=rss",
|
||||
"https://www.derstandard.at/story/3000000306393/tschechiens-regierung-manoevriert-das-land-zielsicher-in-die-krise?ref=rss",
|
||||
"https://www.derstandard.at/story/3000000306391/handwerk-sucht-nach-verlorenem-glanz-und-wird-fuendig-bei-buerokratie?ref=rss",
|
||||
"https://www.derstandard.at/story/3000000306387/trumps-erfuellungsgehilfe-fuer-den-chefsitz-in-der-us-notenbank-fed?ref=rss",
|
||||
"https://www.derstandard.at/story/3000000306363/europa-ist-die-alternative-zur-macht-der-maechtigen?ref=rss",
|
||||
"https://www.derstandard.at/story/3000000306336/ein-feldzug-gegen-patrioten?ref=rss",
|
||||
"https://www.derstandard.at/story/3000000306376/in-der-trump-aera-ist-china-ein-wichtiger-partner-aber-ein-schwieriger?ref=rss"
|
||||
"https://www.derstandard.at/story/3000000306783/toxische-naehe-was-die-epstein-files-ueber-den-krypto-konflikt-verraten?ref=rss",
|
||||
"https://www.derstandard.at/story/3000000306800/bleiwerte-der-us-amerikaner-waren-frueher-bis-zu-100-mal-hoeher-als-heute?ref=rss",
|
||||
"https://www.derstandard.at/story/3000000306752/warum-auf-dem-red-carpet-immer-oefter-penis-kleider-zu-sehen-sind?ref=rss",
|
||||
"https://www.derstandard.at/story/3000000306811/machtkampf-in-china-mit-unberechenbaren-folgen?ref=rss",
|
||||
"https://www.derstandard.at/story/3000000306880/-g-e-s-p-e-r-r-t-bis-020226-1800-uhr-ihs-senkt-inflationserwartung-f252r-2026-auf-22-prozent?ref=rss",
|
||||
"https://www.derstandard.at/story/3000000306829/extremsportler-stirbt-am-weg-zu-einem-der-kaeltesten-bewohnten-orte-der-erde?ref=rss",
|
||||
"https://www.derstandard.at/story/3000000306819/-sohn-von-norwegens-kronprinzessin-wegen-neuer-vorw252rfe-festgenommen?ref=rss",
|
||||
"https://www.derstandard.at/story/3000000306766/vorerst-keine-verschlechterung-der-fluggastrechte?ref=rss",
|
||||
"https://www.derstandard.at/story/3000000306781/stimmungstest-f252r-republikaner-demokraten-gewinnen-in-texas?ref=rss",
|
||||
"https://www.derstandard.at/story/3000000306882/abbas-setzt-f252r-1-november-wahl-zum-pal228stinensischen-nationalrat-an?ref=rss",
|
||||
"https://www.derstandard.at/story/3000000306306733/gold-und-silber-im-freien-fall-warum-boersenkurse-langsamer-steigen-als-sie-anschliessend-sinken?ref=rss",
|
||||
"https://www.derstandard.at/story/3000000306845/afd-politikerin-vermittelte-deutsche-escorts-nach-abu-dhabi-lehnt-aber-fragen-dazu-ab?ref=rss",
|
||||
"https://www.derstandard.at/story/3000000306764/kontakte-zu-epstein-bringen-kronprinzessin-mette-marit-erneut-ins-zwielicht?ref=rss",
|
||||
"https://www.derstandard.at/story/3000000306786/in-dieser-bar-in-japan-gibt-es-gratis-drinks-fuer-alle-die-kuendigen-wollen?ref=rss",
|
||||
"https://www.derstandard.at/story/3000000306746/die-menschen-machen-screenshots-von-uns-ki-agenten-haben-nun-ihr-eigenes-soziales-netzwerk?ref=rss",
|
||||
"https://www.derstandard.at/story/3000000306238/ingrid-wendl-15-lief-in-cortina-1956-zu-bronze-laufen-lernen-lieben-lachen-loben?ref=rss",
|
||||
"https://www.derstandard.at/story/3000000306034/rohstoffe-fuer-die-energiewende-bleiben-europas-achillesferse?ref=rss",
|
||||
"https://www.derstandard.at/story/3000000306759/beim-gaehnen-koennte-unser-gehirn-durchgespuelt-werden?ref=rss",
|
||||
"https://www.derstandard.at/story/3000000306770/kein-gold-oder-bitcoin-gekauft-vielleicht-war-das-doch-kein-fehler?ref=rss",
|
||||
"https://www.derstandard.at/story/3000000306816/wie-stuerzt-man-ein-ultrabrutales-regime?ref=rss",
|
||||
"https://www.derstandard.at/story/3000000306849/grenzoeffnung-in-rafah-trumps-worthuelsen-und-israels-gesten-reichen-nicht?ref=rss",
|
||||
"https://www.derstandard.at/story/3000000306027/mein-geld-dein-geld-braucht-es-in-beziehungen-ein-gemeinsames-konto-oder-depot?ref=rss",
|
||||
"https://www.derstandard.at/story/3000000306430/stadthallen-chef-waldner-verrueckte-gibt-es-ueberall-von-rapid-bis-zum-song-contest?ref=rss",
|
||||
"https://www.derstandard.at/story/3000000306790/donald-trump-als-dirigent-wohlklang-oder-doch-eher-maga-donner?ref=rss",
|
||||
"https://www.derstandard.at/story/3000000305258/das-virtuelle-labor-im-weltraum?ref=rss",
|
||||
"https://www.derstandard.at/story/3000000305302/wiener-taxler-kaufen-mehr-e-autos-aber-trotz-verbots-gibt-es-viele-neue-verbrenner?ref=rss",
|
||||
"https://www.derstandard.at/story/3000000306713/glatteis-chaos-bringt-berliner-buergermeister-ins-schlittern?ref=rss",
|
||||
"https://www.derstandard.at/story/3000000306674/26-mal-so-viel-wie-mit-golfclubs-so-bereichert-sich-trump-mit-kryptowaehrungen?ref=rss",
|
||||
"https://www.derstandard.at/story/3000000306774/diese-oeffi-haltestellen-in-wien-bekommen-neue-namen?ref=rss",
|
||||
"https://www.derstandard.at/story/3000000306082/mckinsey-manager-martin-wrulich-ki-agenten-risiko-usa-oesterreichs-standortproblem?ref=rss",
|
||||
"https://www.derstandard.at/story/3000000306720/ice-out-pins-und-nackte-tatsachen-das-waren-die-interessantesten-outfits-bei-den-grammys?ref=rss",
|
||||
"https://www.derstandard.at/story/3000000306791/prozess-gegen-53-jaehrigen-um-absolut-abscheulichen-missbrauch-von-tochter-und-stiefenkelin?ref=rss",
|
||||
"https://www.derstandard.at/story/3000000306736/los-angeles-verbietet-einweg-druckerpatronen-eu-koennte-bald-nachziehen?ref=rss",
|
||||
"https://www.derstandard.at/story/3000000306738/erfolg-fuer-marcel-hirscher-fis-muss-bullen-logo-auf-van-deer-skiern-akzeptieren?ref=rss",
|
||||
"https://www.derstandard.at/story/3000000306756/dna-aus-geparden-mumien-gibt-verschwundener-unterart-eine-neue-chance?ref=rss",
|
||||
"https://www.derstandard.at/story/3000000306751/vorrangzonen-fuer-photovoltaik-in-salzburg-entlang-der-autobahn?ref=rss",
|
||||
"https://www.derstandard.at/story/3000000306831/skelettierte-frauenleiche-in-wien-favoriten-entdeckt?ref=rss",
|
||||
"https://www.derstandard.at/story/3000000306727/iran-erklaert-streitkraefte-europas-zu-terroristischen-gruppen?ref=rss",
|
||||
"https://www.derstandard.at/story/3000000306726/ice-out-us-stars-protestieren-bei-grammy-gala?ref=rss",
|
||||
"https://www.derstandard.at/story/3000000306503/beispiel-groenland-wie-kann-man-kindern-kriegsgefahr-erklaeren?ref=rss",
|
||||
"https://www.derstandard.at/story/3000000306408/ein-social-media-verbot-haette-ich-der-politik-gar-nicht-zugetraut?ref=rss",
|
||||
"https://www.derstandard.at/story/3000000306397/integration-oder-vernichtung-die-syrischen-kurden-im-neuen-machtgefuege?ref=rss",
|
||||
"https://www.derstandard.at/story/3000000306562/wo-bleibt-der-aufschrei-gegen-atomwaffen?ref=rss",
|
||||
"https://www.derstandard.at/story/3000000306547/es-braucht-eine-justizreform-und-zwar-gleich?ref=rss",
|
||||
"https://www.derstandard.at/story/3000000306479/ganz-grosses-kino?ref=rss",
|
||||
"https://www.derstandard.at/story/3000000306283/europa-muss-sein-rueckgrat-finden?ref=rss",
|
||||
"https://www.derstandard.at/story/3000000306507/die-eu-staaten-brauchen-sonderbeauftragten-fuer-die-ukrainegespraeche?ref=rss",
|
||||
"https://www.derstandard.at/story/3000000306305770/gewessler-wir-europaeer-tun-so-als-waeren-wir-ein-kleines-mauserl-in-irgendeinem-eck?ref=rss",
|
||||
"https://www.derstandard.at/story/3000000306711/bad-bunnygrammy-dankesrede-fuer-abrechnung-mit-ice?ref=rss",
|
||||
"https://www.derstandard.at/story/3000000306723/gold-und-silberpreis-gibt-weiter-massiv-nach?ref=rss",
|
||||
"https://www.derstandard.at/story/3000000306689/wie-novak-djokovic-haarscharf-einer-moeglichen-disqualifikation-entkam?ref=rss",
|
||||
"https://www.derstandard.at/story/3000000306349/langlebigkeits-expertin-nichts-laesst-frauen-schneller-altern-als-stress?ref=rss",
|
||||
"https://www.derstandard.at/story/3000000306342/giftiges-klima-und-senile-fuehrung-der-tiefe-fall-des-gaming-giganten-ubisoft?ref=rss",
|
||||
"https://www.derstandard.at/story/3000000306619/wende-im-todesfall-des-schachstreamers-daniel-naroditsky?ref=rss",
|
||||
"https://www.derstandard.at/story/3000000306714/nach-protest-und-boykotten-trump-will-washingtons-kennedy-center-fuer-umbau-schliessen?ref=rss"
|
||||
],
|
||||
"lastUpdated": "2026-01-31T09:00:00.000Z"
|
||||
"lastUpdated": "2026-02-02T21:00:00.000Z"
|
||||
}
|
||||
|
|
|
|||
175
memory/repo-analysis-2026-02-02.md
Normal file
175
memory/repo-analysis-2026-02-02.md
Normal file
|
|
@ -0,0 +1,175 @@
|
|||
# Forgejo Repository Analysis
|
||||
**Date:** 2026-02-02
|
||||
|
||||
## Summary
|
||||
|
||||
Analyzed **42 repositories** across 4 organizations: Cloonar, Paraclub, infrastructure, renovate, and dominik.polakovics.
|
||||
|
||||
### Repository Type Breakdown
|
||||
| Type | Count | Examples |
|
||||
|------|-------|----------|
|
||||
| TYPO3 Projects | 7 | ai-image-alt, diabetes-austria, dialog-relations-website, gbv-aktuell, lena-schilling-website, wohnservice-wien-typo3 (×2) |
|
||||
| Laravel (PHP) | 1 | amz-api |
|
||||
| Go Projects | 7 | code, eidas.monitor, fit, phishguard, support-invoiced, updns, soundscape-sync |
|
||||
| Node/Frontend | 3 | amz-frontend, phishguard-frontend, korean-skin.care |
|
||||
| Hugo Sites | 4 | cloonar-technologies-website, mehr-leistbaren-wohnraum-schaffen, korean-skin.care, website |
|
||||
| Nix/Config | 2 | nixos, cloonar-assistant |
|
||||
| Empty/Archived | 9 | bookmap, ghetto-nixos, gitapi, rantem-api, etc. |
|
||||
|
||||
---
|
||||
|
||||
## Configuration Status Matrix
|
||||
|
||||
### Active Repositories (with content)
|
||||
|
||||
| Repository | CI | Claude/Agents | Renovate | Tests | Docs |
|
||||
|------------|:--:|:-------------:|:--------:|:-----:|:----:|
|
||||
| **TYPO3 Projects** |
|
||||
| ai-image-alt | ❌ | CLAUDE ✅ | ❌ | ✅ phpunit, Tests/ | ✅ |
|
||||
| diabetes-austria | drone (loose) | ❌ | ❌ | tests/ | ❌ |
|
||||
| dialog-relations-website | .gitea | ❌ | ✅ | ❌ | ❌ |
|
||||
| gbv-aktuell | drone + .gitea | CLAUDE ✅ | ✅ | tests/ | ❌ |
|
||||
| lena-schilling-website | .gitea | ❌ | ✅ | ❌ | ❌ |
|
||||
| wohnservice-wien-typo3 | drone + .gitea | CLAUDE + AGENTS ✅ | ✅ | ❌ | ❌ |
|
||||
| wohnservice-wien-typo3-old | drone | ❌ | ✅ | Tests/ | ❌ |
|
||||
| **Laravel/PHP** |
|
||||
| amz-api | drone + .gitea | CLAUDE ✅ | ✅ | ✅ phpunit, tests/ | ❌ |
|
||||
| ldap2vcard | .gitea | ❌ | ❌ | ❌ | ❌ |
|
||||
| **Go Projects** |
|
||||
| code | ❌ | CLAUDE ✅ | ❌ | ❌ | ✅ |
|
||||
| eidas.monitor | ❌ | AGENTS ✅ | ❌ | ❌ | ✅ |
|
||||
| fit | .gitea | CLAUDE + AGENTS ✅ | ❌ | ❌ | ✅ |
|
||||
| phishguard | ❌ | ❌ | ❌ | ❌ | ✅ |
|
||||
| soundscape-sync | .gitea | ❌ | ❌ | ❌ | ❌ |
|
||||
| support-invoiced | ❌ | ❌ | ❌ | ❌ | ❌ |
|
||||
| updns | .github | ❌ | ❌ | ❌ | ❌ |
|
||||
| ai-mailer | ❌ | CLAUDE ✅ | ❌ | ❌ | ❌ |
|
||||
| **Frontend/Node** |
|
||||
| amz-frontend | drone + .gitea | CLAUDE ✅ | ❌ | ❌ | ✅ |
|
||||
| phishguard-frontend | ❌ | ❌ | ❌ | ❌ | ✅ |
|
||||
| **Hugo/Static Sites** |
|
||||
| cloonar-technologies-website | drone + .gitea | ❌ | ❌ | ❌ | ❌ |
|
||||
| korean-skin.care | .github | ❌ | ❌ | ❌ | ❌ |
|
||||
| mehr-leistbaren-wohnraum-schaffen | drone | ❌ | ❌ | ❌ | ❌ |
|
||||
| website | .gitea + .github | CLAUDE + AGENTS ✅ | ❌ | ❌ | ❌ |
|
||||
| **Infrastructure** |
|
||||
| nixos | ❌ | CLAUDE + AGENTS ✅ | ❌ | ❌ | ❌ |
|
||||
| cloonar-assistant | ❌ | ❌ | ❌ | ❌ | ❌ |
|
||||
| renovate-config | drone + .gitea | ❌ | N/A | ❌ | ❌ |
|
||||
|
||||
---
|
||||
|
||||
## Key Findings
|
||||
|
||||
### 🔴 Critical Issues
|
||||
|
||||
1. **TYPO3 Projects Inconsistent CI Setup**
|
||||
- gbv-aktuell, wohnservice-wien-typo3: Both drone AND .gitea workflows (redundant?)
|
||||
- ai-image-alt: No CI at all despite being a production extension with tests
|
||||
- diabetes-austria: Has `drone.yml` in root (should be `.drone.yml`)
|
||||
|
||||
2. **Missing Tests in Key Projects**
|
||||
- wohnservice-wien-typo3: Main production system has NO tests
|
||||
- dialog-relations-website: No tests
|
||||
- lena-schilling-website: No tests
|
||||
- All Go projects except none have test coverage configured
|
||||
|
||||
3. **Renovate Adoption Partial**
|
||||
- Only 6/27 active repos have renovate.json
|
||||
- Missing on: ai-image-alt, amz-frontend, all Go projects, Hugo sites
|
||||
|
||||
### 🟡 Inconsistencies
|
||||
|
||||
1. **CI Strategy Mixed**
|
||||
- Some repos: Drone only
|
||||
- Some repos: Gitea Actions only
|
||||
- Some repos: GitHub Actions (for upstream forks?)
|
||||
- Some repos: Both Drone + Gitea (why?)
|
||||
|
||||
2. **CLAUDE.md vs AGENTS.md**
|
||||
- 11 repos have CLAUDE.md
|
||||
- 5 repos have AGENTS.md
|
||||
- 3 repos have both (fit, nixos, website, wohnservice-wien-typo3)
|
||||
- No standard template observed
|
||||
|
||||
3. **Documentation Gaps**
|
||||
- Many repos have README.md but no docs/ folder
|
||||
- TYPO3 projects especially lack developer documentation
|
||||
|
||||
---
|
||||
|
||||
## Top 5 Actionable Recommendations
|
||||
|
||||
### 1. **Standardize CI for TYPO3 Projects** (High Impact)
|
||||
Create a shared `.gitea/workflows/typo3-ci.yml` template with:
|
||||
- PHP linting
|
||||
- PHPStan static analysis
|
||||
- PHPUnit tests (if exist)
|
||||
- TYPO3 extension validation
|
||||
|
||||
**Quick win:** Fix diabetes-austria's `drone.yml` → `.drone.yml`
|
||||
|
||||
### 2. **Add Renovate to All Active Repos** (Medium Effort, High Value)
|
||||
Create organization-wide renovate preset in `renovate/renovate-config`:
|
||||
```json
|
||||
{
|
||||
"extends": ["local>renovate/renovate-config"]
|
||||
}
|
||||
```
|
||||
Then add minimal `renovate.json` to:
|
||||
- ai-image-alt, amz-frontend, code, eidas.monitor, fit, phishguard, all Hugo sites
|
||||
|
||||
### 3. **Add Tests to wohnservice-wien-typo3** (High Priority)
|
||||
This is a production multi-site system with no tests. Start with:
|
||||
- Functional tests for critical form handlers
|
||||
- Unit tests for any custom service classes
|
||||
- At minimum, smoke tests that pages render
|
||||
|
||||
### 4. **Consolidate CI Strategy** (Cleanup)
|
||||
Pick ONE CI system and standardize:
|
||||
- **Recommendation:** Gitea Actions (native, no external dependency)
|
||||
- Migrate all Drone configs to `.gitea/workflows/`
|
||||
- Remove dual-CI setups
|
||||
|
||||
### 5. **Create CLAUDE.md Template** (Developer Experience)
|
||||
Standardize AI-assisted development across repos:
|
||||
```markdown
|
||||
# Project: {name}
|
||||
## Tech Stack
|
||||
## Key Files
|
||||
## Testing
|
||||
## Common Tasks
|
||||
```
|
||||
Prioritize for: eidas.monitor, phishguard, soundscape-sync
|
||||
|
||||
---
|
||||
|
||||
## Quick Wins (< 30 min each)
|
||||
|
||||
| Task | Repo | Effort |
|
||||
|------|------|--------|
|
||||
| Rename `drone.yml` → `.drone.yml` | diabetes-austria | 2 min |
|
||||
| Add `renovate.json` with org preset | ai-image-alt | 5 min |
|
||||
| Add basic `CLAUDE.md` | eidas.monitor (has AGENTS.md) | 15 min |
|
||||
| Enable Gitea Actions | ai-image-alt | 10 min |
|
||||
| Add `renovate.json` | amz-frontend | 5 min |
|
||||
|
||||
---
|
||||
|
||||
## Empty/Archived Repos (consider cleanup)
|
||||
|
||||
These repos have no content or appear abandoned:
|
||||
- ai.nvim, bookmap, cloonar-assistant-customers, ghetto-nixos
|
||||
- gitapi, gitea-runner, imperfect-perfect.com, lego-hetzner-bridge
|
||||
- mail-autoconfig, rantem-api
|
||||
|
||||
**Recommendation:** Archive or delete to reduce clutter.
|
||||
|
||||
---
|
||||
|
||||
## Next Steps
|
||||
|
||||
1. Create `.gitea/workflows/` templates in a shared repo
|
||||
2. Draft organization-wide renovate config
|
||||
3. Prioritize wohnservice-wien-typo3 test coverage
|
||||
4. Schedule cleanup of empty repos
|
||||
|
|
@ -1,5 +1,10 @@
|
|||
{
|
||||
"goal": "bed by midnight",
|
||||
"goal": {
|
||||
"lastTaskDone": "22:00",
|
||||
"windDownPeriod": "22:00-00:00",
|
||||
"bedtime": "00:00",
|
||||
"windDownNeeded": "~2 hours"
|
||||
},
|
||||
"timezone": "Europe/Vienna",
|
||||
"learningPhase": true,
|
||||
"entries": [
|
||||
|
|
@ -56,6 +61,80 @@
|
|||
"time": "02:15",
|
||||
"activity": "going to sleep",
|
||||
"note": "watched in bed, surfed internet"
|
||||
},
|
||||
{
|
||||
"date": "2026-01-31",
|
||||
"time": "19:04",
|
||||
"activity": "Gitea → Forgejo migration",
|
||||
"note": "been working for hours already, now on workflow migration to new actions monorepo",
|
||||
"taskType": "infrastructure/devops tinkering"
|
||||
},
|
||||
{
|
||||
"date": "2026-01-31",
|
||||
"time": "19:13",
|
||||
"activity": "decided to defer script to tomorrow",
|
||||
"note": "nudge worked! chose pragmatic stopping point: point to GitHub actions, test workflow, script tomorrow",
|
||||
"nudgeResult": "accepted"
|
||||
},
|
||||
{
|
||||
"date": "2026-01-31",
|
||||
"time": "19:56",
|
||||
"activity": "finished testing workflows",
|
||||
"note": "tested 2 workflows, both worked. Final switch to Forgejo planned for tomorrow morning. Task wrapped up successfully before 20:00!"
|
||||
},
|
||||
{
|
||||
"date": "2026-01-31",
|
||||
"time": "20:13",
|
||||
"activity": "starting semi wind-down (watching something)",
|
||||
"note": "usually finishes before 22:00 - on track for goal!"
|
||||
},
|
||||
{
|
||||
"date": "2026-01-31",
|
||||
"time": "22:05",
|
||||
"activity": "bedtime routine starting (brushing teeth)",
|
||||
"note": "right on schedule! brain-dumped MCP/automation ideas first, then wind-down"
|
||||
},
|
||||
{
|
||||
"date": "2026-01-31",
|
||||
"time": "22:32",
|
||||
"activity": "in bed winding down",
|
||||
"note": "cat, tea, audiobook - proper relaxation mode"
|
||||
},
|
||||
{
|
||||
"date": "2026-01-31",
|
||||
"time": "23:27",
|
||||
"activity": "going to sleep",
|
||||
"note": "33 minutes BEFORE midnight goal!"
|
||||
},
|
||||
{
|
||||
"date": "2026-02-01",
|
||||
"time": "19:16",
|
||||
"activity": "relaxing, watching a series",
|
||||
"note": "already winding down by 19:16 on Sunday - great start!"
|
||||
},
|
||||
{
|
||||
"date": "2026-02-01",
|
||||
"time": "20:36",
|
||||
"activity": "nose shower done",
|
||||
"note": "completed after episode ended, reminder at 20:10 worked"
|
||||
},
|
||||
{
|
||||
"date": "2026-02-01",
|
||||
"time": "23:45",
|
||||
"activity": "going to sleep",
|
||||
"note": "15 minutes before midnight goal - on track!"
|
||||
},
|
||||
{
|
||||
"date": "2026-02-02",
|
||||
"time": "01:01",
|
||||
"activity": "couldn't fall asleep, ate a bit, trying again",
|
||||
"note": "trouble sleeping despite good wind-down timing"
|
||||
},
|
||||
{
|
||||
"date": "2026-02-02",
|
||||
"time": "19:22",
|
||||
"activity": "setting up ci-templates and testing with gbv-aktuell",
|
||||
"note": "working on workflow optimization from earlier discussion"
|
||||
}
|
||||
],
|
||||
"patterns": {
|
||||
|
|
@ -66,6 +145,22 @@
|
|||
"windDownDuration": "~2.5 hours",
|
||||
"goalMissedBy": "~2h 15min",
|
||||
"notes": "was tinkering with tools until late, then watched TV + internet in bed"
|
||||
},
|
||||
"2026-01-31": {
|
||||
"stoppedWork": "19:56",
|
||||
"startedBedRoutine": "22:05",
|
||||
"actualBedtime": "23:27",
|
||||
"windDownDuration": "~1.5 hours",
|
||||
"goalMetBy": "33 minutes early!",
|
||||
"notes": "nudge at 19:13 helped defer script task. Proper wind-down: TV, then bed with cat/tea/audiobook. Huge improvement from previous night.",
|
||||
"sleepOutcome": {
|
||||
"fellAsleepIn": "~30 min",
|
||||
"briefWake": "5-6am",
|
||||
"wokeUp": "08:00",
|
||||
"totalSleep": "~8 hours",
|
||||
"quality": "good",
|
||||
"morningFeeling": "better than last 2 days"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue