apply-agentic-os-hooks OWNER='coilysiren' is stale post org-migration #115
Labels
No labels
burndown-2026-06
coherence-core
consult
headless
interactive
P0
P1
P2
P3
P4
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
coilyco-flight-deck/agentic-os#115
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
scripts/apply-agentic-os-hooks.pyhardcodedOWNER = "coilysiren"and built its repo list fromgh repo list coilysiren. After the org migration tocoilyco-bridge/coilyco-flight-deck, only 3 source repos remain undercoilysiren(algo-zone,coilysiren,website), so the pre-commit hook-block rollout was silently skipping every migrated repo.This is a local-fleet tool (it runs
pre-commit installinside each checkout) andapply_to_repo()was already disk-gated, so theghlist only ever supplied candidate names. Fix: drive directly off the on-disk checkout set (every git working tree under~/projects/coilysiren) instead. Owner-agnostic, migration-proof, no network dependency.Mirror of the cross-org tracker coilysiren/agentic-os-kai#553; this issue exists so the same-repo
closes-issuehook can bind the fix commit here.Adjacent gap: the injected hook-SOURCE URL is still
coilysiren/agentic-osThis issue fixed
OWNER/ the consumer repo-list (which repos to roll out to), driving off the on-disk checkout set. That part is done and correctly closed.But a distinct stale ref survived, in the same files, because it's a different axis - the hook-source URL that gets injected into each consumer's
.pre-commit-config.yaml:scripts/apply-agentic-os-hooks.py:120-- repo: https://github.com/coilysiren/agentic-os(the literal block stamped into every consumer)scripts/apply-agentic-os-hooks.py:4- same URL in the module docstringscripts/audit-pre-commit-coverage.py:45-AGENTIC_OS_URL = "https://github.com/coilysiren/agentic-os"agentic-os's own GitHub home is now
coilyco-flight-deck/agentic-os. GitHub's transfer-redirect keeps the old URL resolving for now, so consumers' pre-commit still works - but it's latent: a freshpre-commit install/autoupdateagainst a re-created repo at the old path, or the redirect being dropped, breaks the fleet hook block.This is load-bearing and fleet-coupled (changing it means re-rolling the managed block to every consumer via
apply-agentic-os-hooks), so it was deliberately NOT swept in the 2026-06-01 Bucket B org-prefix pass. Flagging here rather than reopening, since this issue's own scope (OWNER/list) is genuinely complete. Suggest a dedicated follow-up (or fold into the agentic-os#534 Bucket A rollout).