~bigbes/sourcehut-root

72581ff9 — Eugene Blikh 2 days ago master
docs(sourcehut-ci): fix factual errors found in full audit

Verified the skill against the actual upstream sources mirrored in this
workspace and fixed every concrete claim that didn't match the code:

- Secrets management URL is builds.sr.ht/secrets, not meta.sr.ht/secrets
  (route lives in builds.sr.ht/buildsrht/blueprints/secrets.py; meta has
  no /secret* route). Updated SKILL.md, manifest.md, secrets-and-oauth.md.

- SSH key secret installation path: the worker uses the manifest entry
  verbatim, so name references land at ~/.ssh/<name>, not ~/.ssh/<uuid>
  (builds.sr.ht/worker/tasks.go SendSecrets).

- ubuntu/lts now points to resolute (26.04 LTS); oldlts points to noble.
  Added jammy and questing to the shipped-versions list.

- hut todo subcommands: rewrote the block to match v0.8.0 — `create` and
  `comment` only accept --stdin (no -t/-s/-b), `update-status` (not
  `update`), `list` reads --tracker (persistent flag on `hut todo`).

- hut pages acl update --id is required (MarkFlagRequired in
  hut/pages.go), not optional.
10a4d669 — Eugene Blikh 6 days ago
Add sourcehut-ci skill backup and justfile install target

Mirror the live ~/.claude/skills/sourcehut-ci skill into skills/ and add an
rsync-based 'install' recipe (repo -> ~/.claude).
dac87f39 — Eugene Blikh 6 days ago
Add BSD 2-Clause license for original workspace files

Scoped to the helper scripts, skills, generated index, patches, and docs
authored here; upstream submodules keep their own licenses.
983bb99b — Eugene Blikh 8 days ago
fix: build-index.sh — accept .git gitlinks, not just directories

After `git submodule absorbgitdirs`, each subproject's worktree contains
a .git *file* pointing into .git/modules/<name>/, not a .git directory.
The old `find -type d` test silently skipped every submodule, leaving
INDEX.md empty of repo content. Widen the type filter to both files and
directories so submodule-backed clones are detected too.
76024fae — Eugene Blikh 8 days ago
docs: document the new hut submodule

Updates CLAUDE.md (workspace layout) and the sourcehut-refresh skill to
explain that hut lives at ~xenrox, won't be discovered by the upstream
scrape, and must be bumped manually. INDEX.md timestamp bump.
672bd2d5 — Eugene Blikh 8 days ago
add hut CLI from ~xenrox as a tracked submodule (v0.8.0)

hut lives outside the ~sircmpwn umbrella but is the de-facto SourceHut
CLI, so it's worth mirroring alongside the rest. Noted in CLAUDE.md and
called out in sourcehut-refresh that the scrape won't find it — it must
be bumped manually.
fc8e0cd3 — Eugene Blikh 8 days ago
patches: ubuntu/genimg — move guest DNS override to end of script
d7053447 — Eugene Blikh 8 days ago
patches: ubuntu/genimg — fix guest DNS (SLIRP proxy) and -p1 hint
0a542630 — Eugene Blikh 8 days ago
patches: ubuntu/genimg — correct context lines for the network hunk

The previous version had stale context (EOF / fi / DHCP=yes) that didn't
match the actual recipe. Replace with the real surrounding lines (resolv.conf
nameservers above, Address=10.0.2.15/24 below) so `patch -p0` applies
cleanly on a fresh apk recipe tree.
6d2d8535 — Eugene Blikh 8 days ago
patches: ubuntu/genimg — widen systemd-networkd match to Name=en*

Third hunk in the ubuntu/genimg patch. Upstream only writes
25-ens3.network matching Name=ens3, but on modern noble + virtio the
kernel names the interface enp0s3 instead, so DHCP never starts and
the build-worker times out in 'Waiting for guest to settle'. Rename
the file to 25-ethernet.network and broaden [Match] Name= to en*.
61dfe6a3 — Eugene Blikh 8 days ago
patches: track ubuntu/genimg nbd-settle and chroot-chown fixes

Two-bug patch against builds.sr.ht-images ubuntu/genimg, applied
out-of-band on work.lab.local but not yet upstreamed to sr.ht-dev.
d7794447 — Eugene Blikh 8 days ago
init: superproject for SourceHut documentation mirror

29 upstream SourceHut repos pinned as submodules to their latest tags,
plus Claude tooling (skills, build-index script, INDEX inventory) and
phoebe-lab production patches that are not yet upstream.

Read CLAUDE.md and .claude/INDEX.md before exploring.