Scoop bucket for Windows binaries published by coilyco-flight-deck.
  • JavaScript 100%
Find a file
Repository files (latest commit first)
Filename Latest commit message Latest commit date
2026-08-29 16:04:46 +00:00
.agents/skills/repo-scoop-bucket feat: add repository pointer skill 2026-07-30 10:12:54 -07:00
.forgejo/workflows chore: drop CODEOWNERS so agents stop reading a review request as a gate 2026-08-20 02:13:16 -07:00
.ward chore(just): drop the empty ward commands block 2026-08-17 13:39:57 -07:00
bucket chore(aos): bump manifest to aos-v0.278.0 [skip ci] 2026-08-29 16:04:46 +00:00
docs docs: describe the manifests the bucket actually ships 2026-08-23 16:36:20 -07:00
scripts feat(autoupdate): advance ward past 0.353.0 and automate future bumps 2026-07-03 10:41:17 +00:00
.pre-commit-config.yaml init: flight-deck scoop bucket with o2r.json manifest 2026-06-03 00:35:43 -07:00
AGENTS.md docs: describe the manifests the bucket actually ships 2026-08-23 16:36:20 -07:00
CLAUDE.md init: flight-deck scoop bucket with o2r.json manifest 2026-06-03 00:35:43 -07:00
pyproject.toml chore(docs): declare the small documentation band 2026-08-16 18:09:01 -07:00
README.md docs: describe the manifests the bucket actually ships 2026-08-23 16:36:20 -07:00

scoop-bucket

The Scoop bucket for every coilyco-flight-deck CLI on Windows. Sibling to the flight-deck Homebrew tap, which serves the same tools on macOS and Linux.

Forgejo is canonical here. Both the bucket and the binaries it points at are hosted on forgejo.coilysiren.me.

Install

scoop bucket add coilyco-flight-deck https://forgejo.coilysiren.me/coilyco-flight-deck/scoop-bucket

Then install whichever tools you want:

scoop install coilyco-flight-deck/ward
scoop install coilyco-flight-deck/specgen
scoop install coilyco-flight-deck/agent-compose
scoop install coilyco-flight-deck/aos

Upgrade with scoop update <name>, or scoop update * for everything.

What is in the bucket

  • ward - governed execution layer for coding agents, and the audited verb gate contributors route build, test, and lint through. This is the Windows channel ward upgrade drives. From ward.
  • specgen - generates a standalone guarded CLI from KDL policy plus a committed lock. From umbra.
  • agent-compose - composes the role, doctrine, and skill context an agent harness loads. From agent-compose.
  • aos - the agent runtime composition root. From agentic-os.

Every manifest pulls a prebuilt *-windows-<arch>.exe from a Forgejo release and verifies it against the .sha256 sidecar published beside it.

How a version bump lands here

Each manifest's autoupdate block points at https://forgejo.coilysiren.me/coilyco-flight-deck/<repo>/releases/download/v$version/<asset>#/<rename> and reads the checksum from the sidecar.

Landing those bumps is automated in this repo. .forgejo/workflows/autoupdate.yml runs scripts/update-manifests.mjs hourly, advances each manifest to the newest complete upstream release, and commits to main. Complete means every asset and every .sha256 sidecar exists, so a half-published tag is skipped rather than pinned. Without that job the bucket never moves and scoop update keeps reporting the installed version as the latest. See docs/autoupdate.md and scoop-bucket#1.

An upstream repo that wants a manifest here owes two things from its own release.yml: attach both <asset> and <asset>.sha256 to the release, and tag as v<semver>.

See also

Cross-reference convention from coilysiren/agentic-os#59.