- Add statusline.sh and set-topic.sh for per-session status line topics - Update context-load with improved directory walking and output format - Update CLAUDE.md with status line docs and early-call safety note - Update MEMORY.md and README.md with new script/skill entries - Add memory files: script-statusline, skill-decompose, skill-orchestrate, gotchas-gitea - Add networking.md best practice (nftables, systemd sockets, Docker forwarding, TLS) - Update best practices from prior distill: documentation, kubernetes, scripting, secrets-management, skills-development - Prune reflected session logs, add new session logs - Update reflection state Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
513 B
513 B
Gitea Gotchas
Push fails when repo created by different API user than SSH alias
Symptom: git push to a new repo fails with "User permission denied for writing."
Cause: Repo was created via API using ai_admin token, but SSH alias authenticates as cluster-administrator who has no access.
Fix: After creating a repo via API, add the SSH-authenticating user as collaborator: PUT /api/v1/repos/<org>/<repo>/collaborators/<ssh-user> with admin permission. Do this before attempting to push.