{"id":34724992,"url":"https://github.com/pact-foundation/scoop","last_synced_at":"2026-04-19T21:06:28.254Z","repository":{"id":320819928,"uuid":"1073859610","full_name":"pact-foundation/scoop","owner":"pact-foundation","description":"Pact CLI tools available for Windows via Scoop","archived":false,"fork":false,"pushed_at":"2025-11-01T21:17:29.000Z","size":66,"stargazers_count":0,"open_issues_count":1,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-12-26T13:36:09.032Z","etag":null,"topics":["pact","scoop","scoop-bucket","windows"],"latest_commit_sha":null,"homepage":"","language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"unlicense","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/pact-foundation.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-10-10T18:23:33.000Z","updated_at":"2025-11-01T22:10:22.000Z","dependencies_parsed_at":"2025-10-26T05:39:01.210Z","dependency_job_id":"ea5b3a62-3923-467e-b1a0-b024c006cc93","html_url":"https://github.com/pact-foundation/scoop","commit_stats":null,"previous_names":["you54f/scoop","pact-foundation/scoop"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/pact-foundation/scoop","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pact-foundation%2Fscoop","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pact-foundation%2Fscoop/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pact-foundation%2Fscoop/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pact-foundation%2Fscoop/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/pact-foundation","download_url":"https://codeload.github.com/pact-foundation/scoop/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pact-foundation%2Fscoop/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32022577,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-18T20:23:30.271Z","status":"online","status_checked_at":"2026-04-19T02:00:07.110Z","response_time":55,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["pact","scoop","scoop-bucket","windows"],"created_at":"2025-12-25T02:23:24.376Z","updated_at":"2026-04-19T21:06:28.230Z","avatar_url":"https://github.com/pact-foundation.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Pact cli tools via scoop\r\n\r\n[![CI](https://github.com/pact-foundation/scoop/actions/workflows/ci.yml/badge.svg)](https://github.com/pact-foundation/scoop/actions/workflows/ci.yml)\r\n[![Tests](https://github.com/pact-foundation/scoop/actions/workflows/tests.yml/badge.svg)](https://github.com/pact-foundation/scoop/actions/workflows/tests.yml)\r\n\r\n[Pact CLI Tools](https://docs.pact.io/implementation_guides/cli) bucket for [Scoop](https://scoop.sh), the Windows command-line installer.\r\n\r\n## Supported Platforms\r\n\r\n| OS      | Architecture | Supported  |\r\n| ------- | ------------ | ---------  |\r\n| Windows | x86_64       |   ✅       |\r\n| Windows | aarch64      |   ✅       |\r\n\r\nHow do I install these manifests?\r\n---------------------------------\r\n\r\n```powershell\r\n# Unified CLI\r\nscoop bucket add pact https://github.com/pact-foundation/scoop\r\nscoop install pact\r\n\r\n# Individual tools\r\nscoop install pact-mock-server\r\nscoop install pact-stub-server\r\nscoop install pact-verifier\r\nscoop install pact-plugin\r\nscoop install pact-broker-client\r\nscoop install pact-legacy\r\n```\r\n\r\n### GitHub Actions Example\r\n\r\n```yml\r\n- name: Install Pact via Scoop\r\n  if: runner.os == 'Windows'\r\n  shell: powershell\r\n  run: |\r\n    scoop bucket add pact https://github.com/pact-foundation/scoop\r\n    scoop install pact\r\n    scoop search pact\r\n    pact --help\r\n```\r\n\r\n## Creating new manifests\r\n\r\nRun the following command, replacing variables\r\n\r\n```sh\r\nTOOL_NAME=\u003ctool name\u003e ./scripts/create_bucket.sh \u003cTAG\u003e\r\n```\r\n\r\nExamples\r\n\r\n```sh\r\nTOOL_NAME=pact_mock_server_cli ./scripts/create_bucket.sh pact_mock_server_cli-v2.0.0\r\nTOOL_NAME=pact-plugin-cli ./scripts/create_bucket.sh pact-plugin-cli-v0.2.0\r\nTOOL_NAME=pact-stub-server ./scripts/create_bucket.sh v0.7.0\r\nTOOL_NAME=pact-cli ./scripts/create_bucket.sh v0.9.1\r\nTOOL_NAME=pact-broker-cli ./scripts/create_bucket.sh v0.5.0\r\nTOOL_NAME=pact_verifier_cli ./scripts/create_bucket.sh pact_verifier_cli-v1.3.0\r\nTOOL_NAME=pact-legacy ./scripts/create_bucket.sh v2.5.6\r\n```\r\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpact-foundation%2Fscoop","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpact-foundation%2Fscoop","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpact-foundation%2Fscoop/lists"}