Skip to content

Instantly share code, notes, and snippets.

View goern's full-sized avatar
🥥
working on getting AI done...

Christoph Görn goern

🥥
working on getting AI done...
View GitHub Profile
@goern
goern / main-session-analysis.md
Created March 16, 2026 17:53
Main (Apex) agent session analysis — 8 problems identified with dependency graph (2026-03-16)

Main Agent (Apex) Session Analysis

Session: 7c1c3d95-e938-4dac-9602-b2a06fed4870 Period: 2026-03-14 03:20 UTC → 2026-03-16 ~09:19 UTC Entries: 108 JSONL lines


Identified Problems

@goern
goern / main-session.jsonl
Last active March 16, 2026 17:49
Main (Apex) agent last session log — session 7c1c3d95 (2026-03-16)
{"type":"session","version":3,"id":"7c1c3d95-e938-4dac-9602-b2a06fed4870","timestamp":"2026-03-14T03:20:12.162Z","cwd":"/home/openclaw/.openclaw/workspace"}
{"type":"model_change","id":"c6c42fa4","parentId":null,"timestamp":"2026-03-14T03:20:12.164Z","provider":"anthropic","modelId":"claude-sonnet-4-6"}
{"type":"thinking_level_change","id":"91245ea1","parentId":"c6c42fa4","timestamp":"2026-03-14T03:20:12.164Z","thinkingLevel":"medium"}
{"type":"custom","customType":"model-snapshot","data":{"timestamp":1773458412165,"provider":"anthropic","modelApi":"anthropic-messages","modelId":"claude-sonnet-4-6"},"id":"4eb207b7","parentId":"91245ea1","timestamp":"2026-03-14T03:20:12.165Z"}
{"type":"message","id":"de63a99b","parentId":"4eb207b7","timestamp":"2026-03-14T03:20:12.173Z","message":{"role":"user","content":[{"type":"text","text":"Read HEARTBEAT.md if it exists (workspace context). Follow it strictly. Do not infer or repeat old tasks from prior chats. If nothing needs attention, reply HEARTBEAT_OK.\nWhen reading
@goern
goern / helm-session-log.md
Created March 16, 2026 17:45
Indago + Helm agent session logs (2026-03-16) - filesystem error investigation

Helm Agent Session Log

[1] unknown (2026-03-11T11:15:58.953Z)


[2] unknown (2026-03-11T11:15:58.954Z)

@goern
goern / forge-session-log.md
Created March 16, 2026 17:45
Forge agent session log (2026-03-15/16) - GITHUB_TOKEN scope issue

Forge Agent Session Log

[1] unknown (2026-03-11T11:14:08.680Z)


[2] unknown (2026-03-11T11:14:08.682Z)

@goern
goern / proof.md
Last active February 6, 2024 09:14

openpgp4fpr:8a07d816280a983bbc35e85c280db66a3e8c012e

did:3:kjzl6cwe1jw148qx51ud1m1zs1g89ed2e5juw6p6ovajq6do2l72fx54kv7q92k
git rebase upstream/master
git remote add templates https://github.com/thoth-station/template-project.git
git remote update
git cherry-pick 913759701e45ed9f56d0434f20a76ecfb8a312f8
gh pr create --title "updates from the template project" --body "this is a cherry pick of https://github.com/thoth-station/template-project/commit/913759701e45ed9f56d0434f20a76ecfb8a312f8" --label "bot"
kind: BuildLog
apiVersion: buildlog.thoth-station.ninka/v1
metadata:
annotations:
buildlog.thoth-station.ninja/corresponding-build-configuration: {"apiVersion":"build.openshift.io/v1","kind":"BuildConfig","metadata":{"annotations":{"openshift.io/generated-by":"OpenShiftNewApp"},"creationTimestamp":"2018-07-18T14:45:20Z","labels":{"app":"tensorflow-build-image","appName":"tf-fedora27-builder-image-36","appTypes":"tensorflow-build-image"},"name":"tf-fedora27-builder-image-36","namespace":"thoth-prod-tensorflow","resourceVersion":"8850437","selfLink":"/apis/build.openshift.io/v1/namespaces/thoth-prod-tensorflow/buildconfigs/tf-fedora27-builder-image-36","uid":"32107a5d-8a99-11e8-9165-fa163e8c1860"},"spec":{"failedBuildsHistoryLimit":5,"nodeSelector":null,"output":{"to":{"kind":"ImageStreamTag","name":"tf-fedora27-builder-image-36:1"}},"postCommit":{},"resources":{"limits":{"cpu":"6","memory":"8Gi"},"requests":{"cpu":"3","memory":"4Gi"}},"runPolicy":"Serial","source":{"git":{"ref":"master","uri":"http
@goern
goern / gist:c06a82021ba68ac759262ef2a5950bad
Created June 27, 2018 08:25
regexp for a semver compliant pre-release
# coding=utf8
# the above tag defines encoding for this document and is for Python 2.x compatibility
import re
regex = r"([0-9]+)\.([0-9]+)\.([0-9]+)(?:-([0-9alpha|beta|rc.-]+))?(?:\+([0-9a-zA-Z.-]+))?"
test_str = ("0.0.1\n"
"0.1.0-rc.3\n"
"0.1.0-alpha.12\n"
@goern
goern / gist:170469685532bf39ac7f10db9030fee2
Created June 27, 2018 08:25
regexp for a semver compliant pre-release
# coding=utf8
# the above tag defines encoding for this document and is for Python 2.x compatibility
import re
regex = r"([0-9]+)\.([0-9]+)\.([0-9]+)(?:-([0-9alpha|beta|rc.-]+))?(?:\+([0-9a-zA-Z.-]+))?"
test_str = ("0.0.1\n"
"0.1.0-rc.3\n"
"0.1.0-alpha.12\n"