原始 JSON 报告 机器可读
{
"data": {
"repo": {
"topics": [
"git",
"go",
"parallel"
],
"is_fork": false,
"size_kb": 1876,
"has_wiki": true,
"homepage": null,
"languages": {
"Go": 29778,
"Makefile": 1871
},
"pushed_at": "2026-07-19T05:17:22Z",
"created_at": "2016-03-13T16:16:47Z",
"owner_type": "User",
"updated_at": "2026-07-19T05:17:23Z",
"description": "Run command on git repositories in parallel",
"is_archived": false,
"is_disabled": false,
"license_spdx": "MIT",
"default_branch": "master",
"license_spdx_raw": "MIT",
"primary_language": "Go",
"significant_languages": [
"Go"
]
},
"owner": {
"blog": "https://jeanchristophegay.com",
"name": "Jean-Christophe Gay",
"type": "User",
"login": "jcgay",
"company": "@softwarevidal ",
"location": "Paris, France",
"followers": 61,
"avatar_url": "https://avatars.githubusercontent.com/u/967336?v=4",
"created_at": "2011-08-08T20:02:14Z",
"is_verified": null,
"public_repos": 55,
"account_age_days": 5470
},
"license": {
"state": "standard",
"spdx_id": "MIT",
"raw_spdx": "MIT",
"file_present": true,
"scorecard_found": true,
"profile_has_license": true
},
"activity": {
"releases": [
{
"tag": "v1.1.1",
"kind": "patch",
"published_at": "2026-07-19T05:20:06Z"
},
{
"tag": "v1.1.0",
"kind": "minor",
"published_at": "2026-07-19T05:12:30Z"
},
{
"tag": "v1.0.1",
"kind": "patch",
"published_at": "2017-08-18T10:26:40Z"
},
{
"tag": "v1.0.0",
"kind": "major",
"published_at": "2017-08-17T16:17:59Z"
}
],
"recent_commits": [
{
"oid": "8e7d7f23d1b0a19cb81c2d2cfc6ecf971a32d97c",
"body": "Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>",
"is_bot": false,
"headline": "Publish Homebrew formula instead of cask",
"author_name": "Jean-Christophe Gay",
"author_login": "jcgay",
"committed_at": "2026-07-19T05:17:18Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "6ed4b9e597ad754a1fd58b844127b3382fe9c259",
"body": "Running a command across dozens of repositories drowns the two lines\nthat matter (the failures) under a wall of ✔. -q already hides success\nstdout but still prints one line per repo, so the signal is still lost.\n\n--failed skips the per-repo line entirely for successes and closes with\na `N ✔ / M ✘` summary, so a 30-repo run collapses to just the failures\nplus a headline count.\n\nCloses #49\n\nCo-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>",
"is_bot": false,
"headline": "Add --failed flag: hide successes and print a ✔/✘ summary",
"author_name": "Jean-Christophe Gay",
"author_login": "jcgay",
"committed_at": "2026-07-14T21:10:33Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "ae6e5255a030d1ff03a10bd1a0a196f9353f7f48",
"body": "The config path was hard-coded to $HOME/.parallel-git-repositories, so\nthere was no way to keep a team config versioned inside a repository, run\nseparate work/personal configs, or point the tool at a fixture without\noverriding the package-level home variable.\n\nResolve the path in order: -c flag > PA\n[…]\nory now take the full file path instead of the home directory,\nwhich also lets the tests pass a path straight through.\n\nCloses #50\n\nCo-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>",
"is_bot": false,
"headline": "Allow configuring the configuration file path",
"author_name": "Jean-Christophe Gay",
"author_login": "jcgay",
"committed_at": "2026-07-14T21:05:37Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "78441c902a31e67313df44b69849362887e40735",
"body": "Output was buffered in a bytes.Buffer per repository and printed only\nonce the command finished. For long commands (mvn install, git clone)\nthe tool looked frozen for minutes with nothing on screen.\n\n--stream wires each command's stdout/stderr to a prefixWriter that\nsplits the byte stream into whole\n[…]\nurrent repos never\ninterleave mid-line. Buffered mode stays the default since it still\nguarantees non-interleaved per-repo blocks.\n\nCo-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>",
"is_bot": false,
"headline": "Add --stream mode for live line-prefixed output",
"author_name": "Jean-Christophe Gay",
"author_login": "jcgay",
"committed_at": "2026-07-14T20:58:19Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "e8542133e647e38051d69ea385e7f7a0cc07873b",
"body": "`list` and the `-h` command listing iterated directly over Go maps,\nwhose iteration order is randomised on every run. That made groups and\ncommand aliases appear in a different order each invocation: output that\nlooks broken, is hard to scan, and can't be diffed or tested reliably.\n\nSort the keys be\n[…]\nthout a\nsecond copy. Repository lists within a group keep their TOML order,\nwhich `toml.Tree.Keys()` already preserves.\n\nFixes #53\n\nCo-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>",
"is_bot": false,
"headline": "Sort map-backed output for deterministic ordering",
"author_name": "Jean-Christophe Gay",
"author_login": "jcgay",
"committed_at": "2026-07-14T20:50:27Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "6f145944973207ac8e258b64e353cb5a8cc9c024",
"body": "`parallel-git-repo -g notifier list` printed every group and every\nrepository: the list branch iterated over the whole map and never looked\nat the group flag, so it couldn't preview which repositories a command\nwould actually run against.\n\nFilter the map to the requested group before printing. -g le\n[…]\nerything; an explicit unknown group is an error,\nmatching selectRepositories so `run` and `list` reject the same input.\n\nFixes #52\n\nCo-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>",
"is_bot": false,
"headline": "Make `list` honour the -g group flag",
"author_name": "Jean-Christophe Gay",
"author_login": "jcgay",
"committed_at": "2026-07-14T20:46:21Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "ddb160b50412cc8f4c771f75eb23438c156cd4fd",
"body": "Onboarding a repository meant hand-editing the hidden\n~/.parallel-git-repositories file. A single TOML typo there makes every\nsubsequent invocation fatal (newConfiguration log.Fatals on an unparseable\nfile), so the manual step is both tedious and easy to get catastrophically\nwrong.\n\n`add` resolves a\n[…]\ns.\nIt runs before newConfiguration so a missing or already-broken file doesn't\nblock the very command meant to fix it.\n\nCloses #48\n\nCo-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>",
"is_bot": false,
"headline": "Add an `add` command to register a repository",
"author_name": "Jean-Christophe Gay",
"author_login": "jcgay",
"committed_at": "2026-07-14T20:41:39Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "6bf2c20b6c1d8aa957766485554eb04d7005b954",
"body": "Configured commands were tokenized with a naive strings.Split on spaces,\nwhich cannot express what users reach for within the first week of real\nuse: quoted arguments (`-m \"two words\"` split into three tokens), pipes\n(`| grep` passed as literal arguments to git) and chaining (`&&`, `;`).\nThis is why\n[…]\nath so they pay no\nshell overhead. User arguments reach the shell as \"$@\", consistent with\nthe existing $@ placeholder.\n\nFixes #47\n\nCo-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>",
"is_bot": false,
"headline": "Run commands with shell metacharacters through /bin/sh",
"author_name": "Jean-Christophe Gay",
"author_login": "jcgay",
"committed_at": "2026-07-14T14:12:26Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "5974e0276a780e8fdaac4a33adb32a696f97e00e",
"body": "-g matched a single group exactly, so a \"morning fetch\" over every\nrepository, or over two groups at once, meant either duplicating paths\ninto the default group or launching the tool once per group. Comparable\ntools (gita fetch, mani run --all) make this the common case.\n\nResolve the -g value into a\n[…]\nd deduplicate repositories so one shared between\nselected groups still runs once. Unknown group names remain an error.\n\nCloses #46\n\nCo-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>",
"is_bot": false,
"headline": "Accept multiple groups and -g all",
"author_name": "Jean-Christophe Gay",
"author_login": "jcgay",
"committed_at": "2026-07-14T14:01:04Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "6435a4d7e21734eb3b41628381a8714f41295138",
"body": "command.Run() had no context or timeout, so a single command that\nblocks — typically git waiting for credentials, which it prompts for\nvia /dev/tty even when Stdin isn't wired — suspended wg.Wait()\nforever. One misconfigured remote out of 30 repos turned a 2-second\nrun into a hang that had to be kil\n[…]\nead of hanging. The\n timeout starts when the command actually runs, not when it was\n queued behind the -j semaphore.\n\nCloses #43\n\nCo-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>",
"is_bot": false,
"headline": "Stop a hung command from blocking the whole run",
"author_name": "Jean-Christophe Gay",
"author_login": "jcgay",
"committed_at": "2026-07-14T13:56:14Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "eda6483621a4456bfbc6952f7f189c8df46efd8c",
"body": "runner.Run spawned one goroutine — and one child git process — per\nrepository with no upper bound. On a group of 200+ repositories that\nmeans 200 git processes at once, which thrashes the disk and can trip\nGitHub/GitLab limits on concurrent SSH connections, making large runs\nslower or failing them o\n[…]\n, hoist the deterministic\nforwardArgs call out of the goroutine so it is computed once instead\nof once per repository.\n\nCloses #42\n\nCo-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>",
"is_bot": false,
"headline": "Bound parallelism with a -j flag",
"author_name": "Jean-Christophe Gay",
"author_login": "jcgay",
"committed_at": "2026-07-14T13:48:51Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "76ccbfad5e197bac6c27d122cb5a84d93a7dd130",
"body": "The unknown-group guard told users to \"run `list`\" to discover valid\ngroup names. That forces an extra command just to recover from a typo.\nListing the available groups inline in the error means the user can fix\nthe mistake in one step, straight from the message they already have in\nfront of them.\n\n\n[…]\n the map instead of scanning\nevery entry with a `found` flag, which also gives us the key set to\nbuild the suggestion.\n\nCloses #41\n\nCo-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>",
"is_bot": false,
"headline": "List available groups when -g references an unknown one",
"author_name": "Jean-Christophe Gay",
"author_login": "jcgay",
"committed_at": "2026-07-14T13:41:56Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "96640d71476901dbd4df9248b65a10af7bffc10f",
"body": "The process always exited 0, even when the command failed in every\nrepository. That made the tool impossible to script or use in CI:\n`parallel-git-repo fetch && parallel-git-repo status` could not tell that\n`fetch` had failed, and a failing job would still be reported as green.\n\n`runner.Run` now cou\n[…]\nso treated as a failure so every failure mode ends non-zero;\nunknown commands already exit non-zero through the existing log.Fatalf.\n\nCloses #40\n\nCo-Authored-By: Claude Fable 5 <noreply@anthropic.com>",
"is_bot": false,
"headline": "Exit with a non-zero status when a command fails",
"author_name": "Jean-Christophe Gay",
"author_login": "jcgay",
"committed_at": "2026-07-14T13:37:22Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "1708ddef12f5d6d3a23266d1a65fe3520381711d",
"body": "Bumps [github.com/fatih/color](https://github.com/fatih/color) from 1.14.1 to 1.19.0.\n- [Release notes](https://github.com/fatih/color/releases)\n- [Commits](https://github.com/fatih/color/compare/v1.14.1...v1.19.0)\n\n---\nupdated-dependencies:\n- dependency-name: github.com/fatih/color\n dependency-ver\n[…]\ntion\n update-type: version-update:semver-minor\n...\n\nCloses #28\n\nSigned-off-by: dependabot[bot] <support@github.com>\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
"is_bot": true,
"headline": "Bump github.com/fatih/color from 1.14.1 to 1.19.0",
"author_name": "dependabot[bot]",
"author_login": "dependabot[bot]",
"committed_at": "2026-07-14T13:10:29Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "6f44604dd5b27924d81de15527ab50b72b6d6a80",
"body": "github.com/assertgo/assert is an unmaintained third-party assertion library\npinned at a v2.0.0+incompatible pseudo-version. For four small tests it is not\nworth a dependency: rewrite the assertions with the standard library and a\ntiny local assertEqual helper, then drop the module from go.mod/go.sum.\n\nNo test behaviour changes; go vet, go test and staticcheck pass.\n\nCloses #39\n\nCo-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com>",
"is_bot": false,
"headline": "Replace assertgo with the standard testing package",
"author_name": "Jean-Christophe Gay",
"author_login": "jcgay",
"committed_at": "2026-07-14T13:07:32Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "15fd41f5b2b32ab8f2d58841756c6794998a3137",
"body": "The fmt, lint and vet targets each piped through `tee /dev/stderr`, so the\nrecipe's exit status was tee's (always 0): unformatted code, staticcheck\nfindings and vet errors could never fail the target. They also filtered a\nvendor directory that no longer exists.\n\n- fmt: fail when gofmt reports any fi\n[…]\n\n automatically by release-drafter on GitHub Releases, so the hand-maintained\n file was stale duplicate bookkeeping.\n\nCloses #38\n\nCo-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com>",
"is_bot": false,
"headline": "Clean up Makefile quality targets and stale docs",
"author_name": "Jean-Christophe Gay",
"author_login": "jcgay",
"committed_at": "2026-07-14T13:04:01Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "19770c35f1868aeb5069e1250791c1f05f61419f",
"body": "The version and commit were carried by a dedicated `version` package plus a\nversion/VERSION file, injected at build time through a chain of Makefile\nldflags (VERSION/GITCOMMIT/CTIMEVAR). That is a lot of machinery for two\nstrings.\n\nGo stamps the module version and VCS revision into every binary sinc\n[…]\nd.\n\nVerified `make build` and a GoReleaser snapshot both report a correct version\nand commit; go vet and go test pass.\n\nCloses #37\n\nCo-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com>",
"is_bot": false,
"headline": "Read version from build info instead of a version package",
"author_name": "Jean-Christophe Gay",
"author_login": "jcgay",
"committed_at": "2026-07-14T12:59:49Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "cbc6a2a083a96e3279d4a9d2f91adec9a78854fc",
"body": "With Go modules and a checksummed go.sum, the vendored copies of the\ndependencies (381 files) are redundant: they only added noise to the repo and\nto every Dependabot bump. Remove the directory and rely on the module cache;\nbuilds fetch and verify dependencies from the proxy.\n\n`go build ./...`, `go vet ./...` and `go test ./...` all pass without it.\n\nCloses #36\n\nCo-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com>",
"is_bot": false,
"headline": "Drop the vendor directory",
"author_name": "Jean-Christophe Gay",
"author_login": "jcgay",
"committed_at": "2026-07-14T12:52:16Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "53e6a39ff97c2ca447cc60a1f8fdac4cf3915973",
"body": "The download and status sections pointed at dead services and a removed make\ntarget:\n\n- Binary links pointed at Bintray, shut down in May 2021, so none of them\n worked. Point to the GitHub Releases page, which GoReleaser now populates.\n- Add a Homebrew install line, since releases publish a formula\n[…]\ne Release section referenced `make release`, which no longer exists;\n document the tag-based GoReleaser flow instead.\n\nCloses #35\n\nCo-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com>",
"is_bot": false,
"headline": "Fix stale links and badges in README",
"author_name": "Jean-Christophe Gay",
"author_login": "jcgay",
"committed_at": "2026-07-14T12:50:30Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "1ee6b034bbfcce6e67ebaaae5e1e84cc9ebc47da",
"body": "Add a homebrew_casks entry so each release also pushes a Homebrew recipe to the\njcgay/homebrew-jcgay tap, letting users install with\n`brew install jcgay/jcgay/parallel-git-repo`.\n\nCasks (not the deprecated `brews` formula key) are GoReleaser's current\nmechanism for distributing pre-built binaries vi\n[…]\ndefault GITHUB_TOKEN cannot\nprovide, so the release workflow passes HOMEBREW_TAP_GITHUB_TOKEN, a PAT with\nwrite access to the tap.\n\nCo-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>",
"is_bot": false,
"headline": "Publish a Homebrew formula to jcgay/homebrew-jcgay on release",
"author_name": "Jean-Christophe Gay",
"author_login": "jcgay",
"committed_at": "2026-07-14T12:48:26Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "fe90b223c0ea11cb9c264ec7e7145e5f08af829f",
"body": "Releases were built by hand-rolled Makefile targets (cross, release) that\nshelled out to md5sum/sha256sum -- tools absent from a default macOS -- and the\nresulting binaries were hosted on Bintray, which shut down in May 2021. Nothing\npublished artifacts automatically, so a tag produced no downloadab\n[…]\nd with `goreleaser check` and a full `goreleaser build --snapshot`\nproducing all five binaries with the version correctly stamped.\n\nCo-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>",
"is_bot": false,
"headline": "Automate releases with GoReleaser",
"author_name": "Jean-Christophe Gay",
"author_login": "jcgay",
"committed_at": "2026-07-14T12:48:26Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "6557e6659be1def9a99f4712c5e0deb5dcc219c8",
"body": "io/ioutil has been deprecated since Go 1.16; its functions now just forward to\nos and io. Move to the current APIs:\n\n- ioutil.TempDir -> os.MkdirTemp, and t.TempDir() inside tests, which registers\n automatic cleanup and lets the two manual `defer os.RemoveAll` calls go away.\n- ioutil.WriteFile -> os.WriteFile.\n\nNo behaviour change; tests and vet pass.\n\nCloses #33\n\nCo-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com>",
"is_bot": false,
"headline": "Replace deprecated io/ioutil in tests",
"author_name": "Jean-Christophe Gay",
"author_login": "jcgay",
"committed_at": "2026-07-14T12:31:55Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "24e276ac2330d9b5746df56b90522560e129864b",
"body": "The workflow ran on actions that are archived and emit deprecation warnings,\nand it only exercised build + test, so regressions caught by vet or known\nvulnerabilities went unnoticed.\n\n- Bump actions/checkout v2 -> v4 and actions/setup-go v2 -> v5 (the v2\n releases run on the end-of-life Node 16 run\n[…]\n.\n- Add a govulncheck step so known vulnerabilities in dependencies fail the\n build.\n- Bump release-drafter v5 -> v6.\n\nCloses #32\n\nCo-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com>",
"is_bot": false,
"headline": "Modernize GitHub Actions CI",
"author_name": "Jean-Christophe Gay",
"author_login": "jcgay",
"committed_at": "2026-07-14T12:29:57Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "a79b1d8080024f95664ec2b17b8717ea3dc35dfa",
"body": "Go 1.20 reached end of life in August 2023 and no longer receives security\nfixes. Move the module to a currently supported Go version. No source changes\nare required; tests and vet pass unchanged.\n\nCloses #31\n\nCo-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com>",
"is_bot": false,
"headline": "Bump Go directive to 1.24",
"author_name": "Jean-Christophe Gay",
"author_login": "jcgay",
"committed_at": "2026-07-14T12:26:55Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "c663a4d35127f6c1277fb172b1666e0912887e1b",
"body": "The tool panicked in several situations that a user can trigger with valid\ninput:\n\n- Running the binary without any command (e.g. `parallel-git-repo`) indexed\n os.Args[1] unconditionally and crashed with an index-out-of-range panic.\n Switch to flag.Args(), which correctly excludes global flags, an\n[…]\nn a\n command references more positional arguments ($3) than were provided. Leave\n the placeholder untouched instead.\n\nCloses #30\n\nCo-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com>",
"is_bot": false,
"headline": "Harden CLI argument and configuration handling",
"author_name": "Jean-Christophe Gay",
"author_login": "jcgay",
"committed_at": "2026-07-14T12:25:02Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "3e22da5a83a1a5c0aed629dc6a080ef9e9d37a59",
"body": "'go install' is the new 'go get'! \r\n\r\nSee https://go.dev/doc/go-get-install-deprecation:\r\n\r\n> In Go 1.18, go get will no longer build packages\r\n\r\nFixes #29",
"is_bot": false,
"headline": "Fix \"go style\" install in README",
"author_name": "Nicolas Kosinski",
"author_login": "nicokosi",
"committed_at": "2023-10-26T08:16:13Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "8d4382e876d63aebd8cd4f246424f0e5b000e005",
"body": null,
"is_bot": false,
"headline": "Set version 1.1.0",
"author_name": "Jean-Christophe Gay",
"author_login": "jcgay",
"committed_at": "2023-02-27T07:09:36Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "0499c8fe89ebb075da58baa9eb8b1d59f6a148af",
"body": null,
"is_bot": false,
"headline": "Remove unused configuration files",
"author_name": "Jean-Christophe Gay",
"author_login": "jcgay",
"committed_at": "2023-02-27T06:46:28Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f1362e37abd1cdd58e936e3e3940fe53adca4106",
"body": "https://github.com/marketplace/actions/release-drafter",
"is_bot": false,
"headline": "Add release-drafter GitHub action",
"author_name": "Jean-Christophe Gay",
"author_login": "jcgay",
"committed_at": "2023-02-27T06:43:06Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a7067e1c036abd6089b4331bde29e2ebc510d835",
"body": null,
"is_bot": false,
"headline": "Build binaries for Apple Silicon",
"author_name": "Jean-Christophe Gay",
"author_login": "jcgay",
"committed_at": "2023-02-27T06:35:23Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a0c80b2b7010667e742bad35cbaaf0689a63a3ad",
"body": "Bumps [github.com/pelletier/go-toml](https://github.com/pelletier/go-toml) from 1.0.0 to 1.9.5.\n- [Release notes](https://github.com/pelletier/go-toml/releases)\n- [Changelog](https://github.com/pelletier/go-toml/blob/v2/.goreleaser.yaml)\n- [Commits](https://github.com/pelletier/go-toml/compare/v1.0.\n[…]\nd-dependencies:\n- dependency-name: github.com/pelletier/go-toml\n dependency-type: direct:production\n update-type: version-update:semver-minor\n...\n\nSigned-off-by: dependabot[bot] <support@github.com>",
"is_bot": true,
"headline": "Bump github.com/pelletier/go-toml from 1.0.0 to 1.9.5",
"author_name": "dependabot[bot]",
"author_login": "dependabot[bot]",
"committed_at": "2023-02-27T06:34:54Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "34b5374ec3c2aefbe8dc78bb06b2a6c20299848e",
"body": "Bumps [github.com/fatih/color](https://github.com/fatih/color) from 1.5.0 to 1.14.1.\n- [Release notes](https://github.com/fatih/color/releases)\n- [Commits](https://github.com/fatih/color/compare/v1.5.0...v1.14.1)\n\n---\nupdated-dependencies:\n- dependency-name: github.com/fatih/color\n dependency-type: direct:production\n update-type: version-update:semver-minor\n...\n\nSigned-off-by: dependabot[bot] <support@github.com>",
"is_bot": true,
"headline": "Bump github.com/fatih/color from 1.5.0 to 1.14.1",
"author_name": "dependabot[bot]",
"author_login": "dependabot[bot]",
"committed_at": "2023-02-27T06:33:15Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "671d33ff7bcdcc5f579afcfce8ec40787848881f",
"body": "Bumps [github.com/mitchellh/go-homedir](https://github.com/mitchellh/go-homedir) from 0.0.0-20161203194507-b8bc1bf76747 to 1.1.0.\n- [Release notes](https://github.com/mitchellh/go-homedir/releases)\n- [Commits](https://github.com/mitchellh/go-homedir/commits/v1.1.0)\n\n---\nupdated-dependencies:\n- dependency-name: github.com/mitchellh/go-homedir\n dependency-type: direct:production\n update-type: version-update:semver-major\n...\n\nSigned-off-by: dependabot[bot] <support@github.com>",
"is_bot": true,
"headline": "Bump github.com/mitchellh/go-homedir",
"author_name": "dependabot[bot]",
"author_login": "dependabot[bot]",
"committed_at": "2023-02-27T06:31:33Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "234377d41be752fc2f8a46f6b9678f9e24b0cfc9",
"body": "Bumps [golang.org/x/sys](https://github.com/golang/sys) from 0.0.0-20170815135041-9f7170bcd8e9 to 0.1.0.\n- [Release notes](https://github.com/golang/sys/releases)\n- [Commits](https://github.com/golang/sys/commits/v0.1.0)\n\n---\nupdated-dependencies:\n- dependency-name: golang.org/x/sys\n dependency-type: indirect\n...\n\nSigned-off-by: dependabot[bot] <support@github.com>",
"is_bot": true,
"headline": "Bump golang.org/x/sys from 0.0.0-20170815135041-9f7170bcd8e9 to 0.1.0",
"author_name": "dependabot[bot]",
"author_login": "dependabot[bot]",
"committed_at": "2023-02-27T06:31:10Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3f25750cce55a0c6a74e9be561a6b76b8feacbee",
"body": null,
"is_bot": false,
"headline": "Upgrade to go 1.20",
"author_name": "Jean-Christophe Gay",
"author_login": "jcgay",
"committed_at": "2023-02-27T06:29:58Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "0872d4e3a81752c9c92a53586c1c77021444204a",
"body": null,
"is_bot": false,
"headline": "Manage dependencies with dependabot",
"author_name": "Jean-Christophe Gay",
"author_login": "jcgay",
"committed_at": "2023-02-27T06:23:46Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ba9d7eb3a0cd3a8931dd169a076b708e6d7332ae",
"body": null,
"is_bot": false,
"headline": "Build with GitHub Actions",
"author_name": "Jean-Christophe Gay",
"author_login": "jcgay",
"committed_at": "2022-01-30T23:00:47Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a6cc241dc81e1287bf1c0fc477d5b549dc173066",
"body": "https://staticcheck.io/\n\n go install honnef.co/go/tools/cmd/staticcheck@latest",
"is_bot": false,
"headline": "Replace golint by Staticcheck",
"author_name": "Jean-Christophe Gay",
"author_login": "jcgay",
"committed_at": "2022-01-30T22:56:49Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "eb0ca967bd9c2fc71c02d114fcf584c502b0082e",
"body": "Documentation 📚: https://golang.org/doc/go1.17\n\nI have run these shell commands 🤓:\n\n\tgo mod init github.com/jcgay/parallel-git-repo\n\tgo mod tidy\n\tgo mod vendor",
"is_bot": false,
"headline": "Use Go 1.17 🆙",
"author_name": "Nicolas Kosinski",
"author_login": "nicokosi",
"committed_at": "2021-09-13T09:44:40Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "548ec779f80db20634f1f975f6bd0db4dac452cd",
"body": null,
"is_bot": false,
"headline": "Update download links for v1.0.1",
"author_name": "Jean-Christophe GAY",
"author_login": "jcgay",
"committed_at": "2017-08-18T10:29:26Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "09b7f7df68fc2a50043f4568abf16895f12bcd27",
"body": "Even when they are linked to different versions, Bintray does not allow\nto upload a file with the same name ?!\n\nhttps://travis-ci.org/jcgay/parallel-git-repo/builds/265907874\n\n [Bintray Upload] Reading descriptor file: bintray/descriptor.json\n [Bintray Upload] Creating version 'v1.0.1'...\n \n[…]\nd64.sha256\n [Bintray Upload] Bintray response: 201 Created. success\n [Bintray Upload] Publishing version 'v1.0.1' of package 'parallel-git-repo'...\n [Bintray Upload] Bintray response: 200 OK.",
"is_bot": false,
"headline": "Upload binaries in a different folder for Bintray",
"author_name": "Jean-Christophe GAY",
"author_login": "jcgay",
"committed_at": "2017-08-18T10:21:37Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "200e459f204d5bf0473e33ae02af3719b7fc5372",
"body": null,
"is_bot": false,
"headline": "Prepare release v1.0.1",
"author_name": "Jean-Christophe GAY",
"author_login": "jcgay",
"committed_at": "2017-08-18T10:09:59Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "655a7f30962fb1c325d03413bceba1937a941c5d",
"body": null,
"is_bot": false,
"headline": "Add CHANGELOG.md",
"author_name": "Jean-Christophe GAY",
"author_login": "jcgay",
"committed_at": "2017-08-18T10:01:04Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a5ef56dcff365f86ea7e2b74010c8bd0f2bae6a9",
"body": "File ~/.parallel-git-repo is only read (and fail) when necessary.\nOne can use -h and -v option when the configuration file is not yet present.\n\nFixes #3",
"is_bot": false,
"headline": "Can print version and help when configuration is not present",
"author_name": "Jean-Christophe GAY",
"author_login": "jcgay",
"committed_at": "2017-08-18T09:52:08Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ff7db2a7ac2b8ea79424376242d48bc7e6847001",
"body": "The -v option was documented twice.",
"is_bot": false,
"headline": "Remove duplicate -v flag in help",
"author_name": "Jean-Christophe GAY",
"author_login": "jcgay",
"committed_at": "2017-08-18T09:26:08Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "39f348cd9077592024304f265ae5c346a2c7e870",
"body": null,
"is_bot": false,
"headline": "Add binaries download links in README",
"author_name": "Jean-Christophe GAY",
"author_login": "jcgay",
"committed_at": "2017-08-18T09:01:52Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "07f10035be291a1b06e2a065c00ae8e7a83ec68a",
"body": "Shameless copy of the amazing one found in https://github.com/jessfraz/amicontained\nRemove goxc (which is not maintained anymore).\n\nBinaries are uploaded by Travis CI when building tag.",
"is_bot": false,
"headline": "Use a Makefile to build the project",
"author_name": "Jean-Christophe GAY",
"author_login": "jcgay",
"committed_at": "2017-08-17T16:14:07Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b226cb961ab8c302d7b34d6ed7edc0154629d55c",
"body": "Use dep (https://github.com/golang/dep) to vendor dependencies",
"is_bot": false,
"headline": "Upgrade dependencies using dep",
"author_name": "Jean-Christophe GAY",
"author_login": "jcgay",
"committed_at": "2017-08-17T08:25:53Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9d03f478a331d8e040c296dbc429da888927f296",
"body": null,
"is_bot": false,
"headline": "Add dependency github.com/pelletier/go-buffruneio",
"author_name": "Jean-Christophe Gay",
"author_login": "jcgay",
"committed_at": "2017-05-29T07:11:55Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e95f7804706f9a726f82e8e8ced2050f77416eb3",
"body": "https://coveralls.io/github/jcgay/parallel-git-repo",
"is_bot": false,
"headline": "Add test coverage with coveralls.io",
"author_name": "Jean-Christophe GAY",
"author_login": "jcgay",
"committed_at": "2017-05-27T16:21:30Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "631b870d32d953c135ef28f7afa460a8910ae614",
"body": "They were not run because first example was running os.Exit(0) which\nterminate test runner...",
"is_bot": false,
"headline": "Really run all tests...",
"author_name": "Jean-Christophe GAY",
"author_login": "jcgay",
"committed_at": "2017-05-27T16:21:30Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "438021db395a7da57454158a0b6950324bfbad40",
"body": null,
"is_bot": false,
"headline": "Code cleanup (using goreportcard.com)",
"author_name": "Jean-Christophe GAY",
"author_login": "jcgay",
"committed_at": "2017-05-27T11:37:39Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "06f070906e5316708aba1dc78a6def70071b3ca6",
"body": null,
"is_bot": false,
"headline": "Enhance documentation to manipulate groups",
"author_name": "Jean-Christophe GAY",
"author_login": "jcgay",
"committed_at": "2017-05-16T21:12:16Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2a5cfa4a275b1ef6c5362c618525a951a13d25fb",
"body": null,
"is_bot": false,
"headline": "Remove github.com/codegangsta/cli",
"author_name": "Jean-Christophe GAY",
"author_login": "jcgay",
"committed_at": "2017-05-16T20:55:54Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f505b430ebbd55a80c2b66625bd3e9b59e614f7f",
"body": " parallel-git-repo -g=others status\n\nwill run command status for repositories declared in a 'others' group.\n\nFixes #2",
"is_bot": false,
"headline": "Select which group to use to run command on",
"author_name": "Jean-Christophe GAY",
"author_login": "jcgay",
"committed_at": "2017-05-15T20:02:27Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "bc723d1ff794085216c0e9fac0224c016157b6f8",
"body": "Declare repositories as:\n\n [repositories]\n default = [\n \"/Users/jcgay/dev/maven-notifier\",\n \"/Users/jcgay/dev/maven-color\"\n ]\n others = [\n \"/Users/jcgay/dev/buildplan-maven-plugin\",\n \"/Users/jcgay/dev/gradle-notifier\"\n ]",
"is_bot": false,
"headline": "Can create repositories groups",
"author_name": "Jean-Christophe GAY",
"author_login": "jcgay",
"committed_at": "2017-05-15T19:42:41Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3830cb3e8176475c75290bbe7db33b09fe64a509",
"body": null,
"is_bot": false,
"headline": "Replace YAML configuration by TOML",
"author_name": "Jean-Christophe GAY",
"author_login": "jcgay",
"committed_at": "2017-05-14T18:38:19Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f573d5af11743c25fac581ba32b1323055cfcde3",
"body": null,
"is_bot": false,
"headline": "Add documentation to add commands",
"author_name": "Jean-Christophe GAY",
"author_login": "jcgay",
"committed_at": "2017-05-14T16:24:14Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e26d20330a78bd0d8199aa245e0e151dc8773827",
"body": null,
"is_bot": false,
"headline": "Get back all code in main.go",
"author_name": "Jean-Christophe GAY",
"author_login": "jcgay",
"committed_at": "2017-05-14T16:14:52Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "188b59ad9aaa54d420cb12572885fd1b584ebbd1",
"body": null,
"is_bot": false,
"headline": "Use the same output for stdout and stderr",
"author_name": "Jean-Christophe GAY",
"author_login": "jcgay",
"committed_at": "2017-05-14T16:09:57Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a0e5069dc2495d0f5d338c93dcb41be6cdc4cf7b",
"body": "Before this commit, we were reading command size instead of their name.\nThis was leading to leaving a big blank in the commands list between name and command.",
"is_bot": false,
"headline": "Calculate margin between commands name and value by reading name size",
"author_name": "Jean-Christophe GAY",
"author_login": "jcgay",
"committed_at": "2017-02-25T10:48:52Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9be2822e505bf4a599a2a0b325bbb079360dc53c",
"body": null,
"is_bot": false,
"headline": "Create a fake ~/.parallel-git-repositories file to run test",
"author_name": "Jean-Christophe GAY",
"author_login": "jcgay",
"committed_at": "2017-02-25T10:45:42Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a432257a1ff4f07fb76128286fb64ca67f97331b",
"body": "with https://github.com/kardianos/govendor instead of Godeps",
"is_bot": false,
"headline": "Vendoring dependencies",
"author_name": "Jean-Christophe GAY",
"author_login": "jcgay",
"committed_at": "2017-02-19T19:16:56Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "80f71d1faf6dad3c5e16c766145ce2a43d86717a",
"body": null,
"is_bot": false,
"headline": "Add command list to print configured repositories",
"author_name": "Jean-Christophe GAY",
"author_login": "jcgay",
"committed_at": "2016-05-11T18:15:37Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "99ac9d74f1b0b38f8e99c125d3f79603470710d7",
"body": "It allow executing command like:\n\n parallel-git-repo run git checkout -b new-branch",
"is_bot": false,
"headline": "Remove usage of github.com/codegangsta/cli",
"author_name": "Jean-Christophe GAY",
"author_login": "jcgay",
"committed_at": "2016-04-17T20:15:01Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "287acc7f61b1391c3a431be57d9c95ca9d20ac57",
"body": "Example:\n\n parallel-git-repo run -q echo `pwd`\n parallel-git-repo run --quiet echo `pwd`",
"is_bot": false,
"headline": "Add quiet option to mute stdout",
"author_name": "Jean-Christophe GAY",
"author_login": "jcgay",
"committed_at": "2016-04-17T13:55:47Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "8a0cb3c72ab52c18af51e6bc717844e75f098f26",
"body": "The desired behavior is to let the use define its own commands\nin its own configuration.",
"is_bot": false,
"headline": "Remove custom commands packaged in the application",
"author_name": "Jean-Christophe GAY",
"author_login": "jcgay",
"committed_at": "2016-04-17T09:07:32Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f44f82d1164b23750f48c47a60b9ada433413f2e",
"body": null,
"is_bot": false,
"headline": "Display tick/cross on success/failure command",
"author_name": "Jean-Christophe GAY",
"author_login": "jcgay",
"committed_at": "2016-04-17T09:07:32Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2974b8dd86b9c82d90e4f6d5e370d9a0da243923",
"body": null,
"is_bot": false,
"headline": "Ignore built executable by \"go build\"",
"author_name": "Jean-Christophe GAY",
"author_login": "jcgay",
"committed_at": "2016-04-17T09:07:32Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "355ab20b1404963495a4d4422117395bfdce62c3",
"body": "Commands must be declared in ~/.parallel-git-repositories configuration file.\n\nExample:\n\n repositories:\n - /Users/jcgay/dev/maven-notifier\n - /Users/jcgay/dev/maven-color\n - /Users/jcgay/dev/golang/src/github.com/jcgay/parallel-git-repo\n\n commands:\n print : echo $1",
"is_bot": false,
"headline": "Configure custom commands",
"author_name": "Jean-Christophe GAY",
"author_login": "jcgay",
"committed_at": "2016-04-17T09:07:32Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7e2d98fcb1ce3c6ade1cb61b73bd086202869114",
"body": " parallel-git-repo run echo plop",
"is_bot": false,
"headline": "Can run arbitrary commands",
"author_name": "Jean-Christophe GAY",
"author_login": "jcgay",
"committed_at": "2016-04-11T11:31:31Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "99211d7910fded8dc5251929822586ad5957da03",
"body": null,
"is_bot": false,
"headline": "Add merge-abort command",
"author_name": "Jean-Christophe GAY",
"author_login": "jcgay",
"committed_at": "2016-03-20T11:58:40Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "06f8c622aefd5ab3285b6d4e81f510007bdc9050",
"body": null,
"is_bot": false,
"headline": "Add ulg and llg commands",
"author_name": "Jean-Christophe GAY",
"author_login": "jcgay",
"committed_at": "2016-03-13T20:28:40Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "057aed8ab4442048d48ccb402a98b9a4dae41a72",
"body": null,
"is_bot": false,
"headline": "Add checkout command",
"author_name": "Jean-Christophe GAY",
"author_login": "jcgay",
"committed_at": "2016-03-13T19:33:24Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "02c5801c65366454715be25caad0776df68e45de",
"body": null,
"is_bot": false,
"headline": "Add status command",
"author_name": "Jean-Christophe GAY",
"author_login": "jcgay",
"committed_at": "2016-03-13T19:22:10Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "4b9fa8ead0508a6f92299b6ead81209243ab4f13",
"body": null,
"is_bot": false,
"headline": "Add fetch command",
"author_name": "Jean-Christophe GAY",
"author_login": "jcgay",
"committed_at": "2016-03-13T19:03:08Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7b90bcceed64200bb4c78ef8fb35f23dc169ace5",
"body": null,
"is_bot": false,
"headline": "Vendoring dependencies",
"author_name": "Jean-Christophe GAY",
"author_login": "jcgay",
"committed_at": "2016-03-13T16:30:00Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "237c69f801a1937dbe14668af8ab7e1d42dce4b5",
"body": null,
"is_bot": false,
"headline": "Enrich documentation with examples",
"author_name": "Jean-Christophe GAY",
"author_login": "jcgay",
"committed_at": "2016-03-13T16:15:32Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ad1577aa7dbb889ec309de99f80790493d516170",
"body": null,
"is_bot": false,
"headline": "Going parallel !",
"author_name": "Jean-Christophe GAY",
"author_login": "jcgay",
"committed_at": "2016-03-13T15:56:15Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "02c2e445e91c79b8a6cd6254c7585af3326a0504",
"body": null,
"is_bot": false,
"headline": "Report success/failure with tick and colors",
"author_name": "Jean-Christophe GAY",
"author_login": "jcgay",
"committed_at": "2016-03-13T15:48:35Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "66a7a4d34e5298a5d3d5334213d3e20d554d7b3f",
"body": null,
"is_bot": false,
"headline": "Add git merge command",
"author_name": "Jean-Christophe GAY",
"author_login": "jcgay",
"committed_at": "2016-03-13T12:16:52Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "134fe310c1b6651308abaf8514de92fb12e43030",
"body": null,
"is_bot": false,
"headline": "Move commands into their own package",
"author_name": "Jean-Christophe GAY",
"author_login": "jcgay",
"committed_at": "2016-03-13T12:05:04Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6827c0a10aa6ec6ee498499ac1118b9485eb4902",
"body": "Use a YAML configuration file to list managed repositories.\n\n repositories:\n - /Users/jcgay/dev/maven-notifier\n - /Users/jcgay/dev/maven-color",
"is_bot": false,
"headline": "Read repositories $HOME/.parallel-git-repositories",
"author_name": "Jean-Christophe GAY",
"author_login": "jcgay",
"committed_at": "2016-03-13T11:51:05Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "955878f979e24cf484ffb07973a5ce6111f7a787",
"body": null,
"is_bot": false,
"headline": "Delegate output computation to RunnableCommand",
"author_name": "Jean-Christophe GAY",
"author_login": "jcgay",
"committed_at": "2016-03-12T17:06:34Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7b3610280a06c2b0a4d57fc303af48b136c591a7",
"body": null,
"is_bot": false,
"headline": "Print errors",
"author_name": "Jean-Christophe GAY",
"author_login": "jcgay",
"committed_at": "2016-03-06T19:33:33Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "4b49c182666ca6fcc2eb67a1c13799cde62e28dc",
"body": "Use $@ to forward all arguments or use $1, $2... to choose\na specific one.",
"is_bot": false,
"headline": "Pass CLI arguments to commands",
"author_name": "Jean-Christophe GAY",
"author_login": "jcgay",
"committed_at": "2016-01-03T14:03:38Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d72ba7df6bd54452f48abc4a6e64e59f4eb80626",
"body": null,
"is_bot": false,
"headline": "Display repository name in output result",
"author_name": "Jean-Christophe GAY",
"author_login": "jcgay",
"committed_at": "2016-01-01T19:48:31Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c0e6945668e482cf82371fbd10d9a4ce701d4462",
"body": null,
"is_bot": false,
"headline": "Run git command",
"author_name": "Jean-Christophe GAY",
"author_login": "jcgay",
"committed_at": "2016-01-01T19:38:57Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "28643e29df3dfa40ffdc6bdb4e34e3cfd514b895",
"body": null,
"is_bot": false,
"headline": "Use codegangsta/cli to define commands",
"author_name": "Jean-Christophe GAY",
"author_login": "jcgay",
"committed_at": "2015-12-29T20:48:48Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c94947aefb259fa7322abbb1f506585c57c11308",
"body": null,
"is_bot": false,
"headline": "Can run command on multiple repositories",
"author_name": "Jean-Christophe GAY",
"author_login": "jcgay",
"committed_at": "2015-11-22T10:27:56Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "476cac4b160e4b09aff8e76b82ff0221cb588fd5",
"body": null,
"is_bot": false,
"headline": "Can run command",
"author_name": "Jean-Christophe GAY",
"author_login": "jcgay",
"committed_at": "2015-11-22T10:11:07Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "cce8835306b86f0ef12136c31a0fe24ddf61d1b2",
"body": null,
"is_bot": false,
"headline": "Build with Travis CI",
"author_name": "Jean-Christophe GAY",
"author_login": "jcgay",
"committed_at": "2015-11-21T09:54:55Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "1dfeef98d7cd0ccd473758f0040d1676818c45a3",
"body": "https://github.com/laher/goxc",
"is_bot": false,
"headline": "Configure build with goxc",
"author_name": "Jean-Christophe GAY",
"author_login": "jcgay",
"committed_at": "2015-11-21T09:54:39Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "622527e1ff90ce7fee48ed7045e2f825db325165",
"body": null,
"is_bot": false,
"headline": "Add License",
"author_name": "Jean-Christophe GAY",
"author_login": "jcgay",
"committed_at": "2015-11-21T09:31:21Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "012fb41a854137a3d71157891ca34ee3938e1970",
"body": null,
"is_bot": false,
"headline": "Add .gitignore",
"author_name": "Jean-Christophe GAY",
"author_login": "jcgay",
"committed_at": "2015-11-21T09:30:00Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "dec825999b0d1dd47f42104e1d40fd8e30ee6420",
"body": null,
"is_bot": false,
"headline": "Initial commit",
"author_name": "Jean-Christophe GAY",
"author_login": "jcgay",
"committed_at": "2015-11-21T09:26:54Z",
"body_truncated": false,
"is_coding_agent": false
}
],
"releases_count": 4,
"commits_last_year": 25,
"latest_release_at": "2026-07-19T05:20:06Z",
"latest_release_tag": "v1.1.1",
"releases_from_tags": false,
"days_since_last_push": 12,
"active_weeks_last_year": 2,
"days_since_latest_release": 12,
"mean_days_between_releases": 1085.8
},
"community": {
"has_readme": true,
"has_license": true,
"has_description": true,
"has_contributing": false,
"health_percentage": 42,
"has_issue_template": false,
"has_code_of_conduct": false,
"has_pull_request_template": false
},
"ecosystem": {
"packages": [
{
"name": "github.com/jcgay/parallel-git-repo",
"exists": true,
"license": null,
"keywords": [],
"ecosystem": "go",
"matches_repo": true,
"registry_url": "https://pkg.go.dev/github.com/jcgay/parallel-git-repo",
"is_deprecated": false,
"latest_version": "v1.1.1",
"repository_url": "https://github.com/jcgay/parallel-git-repo",
"versions_count": 4,
"total_downloads": null,
"dependents_count": null,
"deprecation_note": null,
"maintainers_count": null,
"monthly_downloads": null,
"first_published_at": null,
"latest_published_at": "2026-07-19T05:17:18Z",
"latest_version_yanked": null,
"days_since_latest_publish": 12
}
]
},
"popularity": {
"forks": 1,
"stars": 6,
"watchers": 1,
"fork_history": {
"days": [
{
"date": "2017-05-26",
"count": 1
}
],
"complete": true,
"collected": 1,
"total_forks": 1
},
"star_history": null,
"open_issues_and_prs": 3
},
"ai_readiness": {
"has_nix": false,
"example_dirs": [],
"has_llms_txt": false,
"has_dockerfile": false,
"has_mcp_signal": false,
"bootstrap_files": [
"Makefile"
],
"api_schema_files": [],
"has_devcontainer": false,
"typecheck_configs": [],
"toolchain_manifests": [
"go.mod"
],
"largest_source_bytes": 17105,
"source_files_sampled": 2,
"oversized_source_files": 0,
"agent_instruction_files": [],
"agent_instruction_max_bytes": null
},
"dependencies": {
"manifests": [
"go.mod"
],
"advisories": {
"error": null,
"scope": "repository_graph",
"source": "osv",
"findings": [
{
"name": "golang.org/x/sys",
"direct": false,
"version": "v0.42.0",
"severity": "unknown",
"ecosystem": "go",
"cvss_score": null,
"advisory_ids": [
"GO-2026-5024"
],
"fixed_version": "0.44.0",
"advisory_count": 1,
"oldest_advisory_days": 69
}
],
"collected": true,
"malicious": [],
"truncated": false,
"by_severity": {
"unknown": 1
},
"advisory_count": 1,
"affected_count": 1,
"assessed_count": 6,
"malicious_count": 0,
"assessed_package": null,
"unassessed_count": 0,
"direct_affected_count": 0
},
"ecosystems": [
"go"
],
"dependencies": [
{
"name": "github.com/fatih/color",
"manifest": "go.mod",
"ecosystem": "go",
"version_constraint": "v1.19.0"
},
{
"name": "github.com/mitchellh/go-homedir",
"manifest": "go.mod",
"ecosystem": "go",
"version_constraint": "v1.1.0"
},
{
"name": "github.com/pelletier/go-toml",
"manifest": "go.mod",
"ecosystem": "go",
"version_constraint": "v1.9.5"
}
],
"all_dependencies": {
"error": null,
"source": "github-sbom",
"packages": [
{
"name": "github.com/fatih/color",
"direct": true,
"version": "v1.19.0",
"ecosystem": "go"
},
{
"name": "github.com/mitchellh/go-homedir",
"direct": true,
"version": "v1.1.0",
"ecosystem": "go"
},
{
"name": "github.com/pelletier/go-toml",
"direct": true,
"version": "v1.9.5",
"ecosystem": "go"
},
{
"name": "github.com/mattn/go-colorable",
"direct": false,
"version": "v0.1.14",
"ecosystem": "go"
},
{
"name": "github.com/mattn/go-isatty",
"direct": false,
"version": "v0.0.20",
"ecosystem": "go"
},
{
"name": "golang.org/x/sys",
"direct": false,
"version": "v0.42.0",
"ecosystem": "go"
}
],
"collected": true,
"truncated": false,
"total_count": 6,
"direct_count": 3,
"indirect_count": 3
}
},
"maintainership": {
"issues": {
"open_prs": 0,
"merged_prs": 30,
"open_issues": 3,
"closed_ratio": 0.833,
"closed_issues": 15,
"closed_unmerged_prs": 17
},
"bus_factor": 1,
"bot_contributors": 1,
"top_contributors": [
{
"type": "User",
"login": "jcgay",
"commits": 89,
"avatar_url": "https://avatars.githubusercontent.com/u/967336?v=4"
},
{
"type": "User",
"login": "nicokosi",
"commits": 2,
"avatar_url": "https://avatars.githubusercontent.com/u/3862051?v=4"
}
],
"contributors_sampled": 2,
"top_contributor_share": 0.978
},
"quality_signals": {
"has_ci": true,
"has_tests": true,
"ci_workflows": [
"go.yml",
"release-drafter.yml",
"release.yml"
],
"has_docs_dir": false,
"linter_configs": [],
"has_editorconfig": false,
"has_linter_config": false,
"has_precommit_config": false
},
"security_signals": {
"lockfiles": [
"go.sum"
],
"scorecard": {
"checks": [
{
"name": "Binary-Artifacts",
"score": 10,
"reason": "no binaries found in the repo",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#binary-artifacts"
},
{
"name": "Branch-Protection",
"score": 0,
"reason": "branch protection not enabled on development/release branches",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#branch-protection"
},
{
"name": "CI-Tests",
"score": 9,
"reason": "22 out of 24 merged PRs checked by a CI test -- score normalized to 9",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#ci-tests"
},
{
"name": "CII-Best-Practices",
"score": 0,
"reason": "no effort to earn an OpenSSF best practices badge detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#cii-best-practices"
},
{
"name": "Code-Review",
"score": 0,
"reason": "Found 1/28 approved changesets -- score normalized to 0",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#code-review"
},
{
"name": "Contributors",
"score": 6,
"reason": "project has 2 contributing companies or organizations -- score normalized to 6",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#contributors"
},
{
"name": "Dangerous-Workflow",
"score": 10,
"reason": "no dangerous workflow patterns detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#dangerous-workflow"
},
{
"name": "Dependency-Update-Tool",
"score": 10,
"reason": "update tool detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#dependency-update-tool"
},
{
"name": "Fuzzing",
"score": 0,
"reason": "project is not fuzzed",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#fuzzing"
},
{
"name": "License",
"score": 10,
"reason": "license file detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#license"
},
{
"name": "Maintained",
"score": 10,
"reason": "25 commit(s) and 14 issue activity found in the last 90 days -- score normalized to 10",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#maintained"
},
{
"name": "Packaging",
"score": 10,
"reason": "packaging workflow detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#packaging"
},
{
"name": "Pinned-Dependencies",
"score": 0,
"reason": "dependency not pinned by hash detected -- score normalized to 0",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#pinned-dependencies"
},
{
"name": "SAST",
"score": 0,
"reason": "SAST tool is not run on all commits -- score normalized to 0",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#sast"
},
{
"name": "Security-Policy",
"score": 0,
"reason": "security policy file not detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#security-policy"
},
{
"name": "Signed-Releases",
"score": 0,
"reason": "Project has not signed or included provenance with any releases.",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#signed-releases"
},
{
"name": "Token-Permissions",
"score": 0,
"reason": "detected GitHub workflow tokens with excessive permissions",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#token-permissions"
},
{
"name": "Vulnerabilities",
"score": 9,
"reason": "1 existing vulnerabilities detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#vulnerabilities"
}
],
"commit": "8e7d7f23d1b0a19cb81c2d2cfc6ecf971a32d97c",
"ran_at": "2026-07-31T09:18:05Z",
"aggregate_score": 4.8,
"scorecard_version": "v5.5.0"
},
"has_codeql_workflow": false,
"has_security_policy": false,
"has_dependabot_config": true
},
"contribution_flow": {
"collected": true,
"ci_last_run_at": "2026-07-27T01:42:31Z",
"oldest_open_prs": [],
"last_merged_pr_at": "2026-07-14T21:10:34Z",
"ci_last_conclusion": "SUCCESS",
"oldest_open_issues": [
{
"number": 1,
"created_at": "2016-05-07T16:54:27Z",
"last_comment_at": null,
"last_comment_author": null
},
{
"number": 44,
"created_at": "2026-07-14T13:18:35Z",
"last_comment_at": null,
"last_comment_author": null
},
{
"number": 45,
"created_at": "2026-07-14T13:18:36Z",
"last_comment_at": null,
"last_comment_author": null
}
]
}
},
"config": {
"disabled_metrics": [],
"disabled_categories": [],
"disabled_components": {}
},
"source": {
"url": "https://github.com/jcgay/parallel-git-repo",
"host": "github.com",
"name": "parallel-git-repo",
"owner": "jcgay"
},
"metrics": {
"overall": {
"key": "overall",
"band": "moderate",
"name": "Overall health",
"note": null,
"notes": [],
"value": 53,
"inputs": {
"security": 58,
"vitality": 59,
"community": 29,
"governance": 55,
"engineering": 64
},
"components": []
},
"categories": [
{
"key": "vitality",
"band": "moderate",
"name": "Vitality",
"value": 59,
"weight": 0.22,
"metrics": [
{
"key": "development_activity",
"band": "moderate",
"name": "Development activity",
"note": null,
"notes": [],
"value": 53,
"inputs": {
"commits_last_year": 25,
"human_commit_share": 0.948,
"days_since_last_push": 12,
"active_weeks_last_year": 2
},
"components": [
{
"key": "push_recency",
"name": "Push recency",
"detail": "last push 12 days ago",
"points": 28.8,
"status": "partial",
"details": [
{
"code": "push_recency",
"params": {
"days": 12
}
}
],
"max_points": 36
},
{
"key": "commit_cadence",
"name": "Commit cadence",
"detail": "2/52 weeks with commits",
"points": 1.4,
"status": "partial",
"details": [
{
"code": "commit_cadence_weeks",
"params": {
"weeks": 2
}
}
],
"max_points": 36
},
{
"key": "commit_volume",
"name": "Commit volume",
"detail": "25 commits in the last year",
"points": 12.7,
"status": "partial",
"details": [
{
"code": "commits_last_year",
"params": {
"count": 25
}
}
],
"max_points": 18
},
{
"key": "openssf_scorecard_maintained",
"name": "OpenSSF Scorecard: Maintained",
"detail": "25 commit(s) and 14 issue activity found in the last 90 days -- score normalized to 10",
"points": 10,
"status": "met",
"details": [],
"max_points": 10
}
]
},
{
"key": "release_discipline",
"band": "moderate",
"name": "Release discipline",
"note": null,
"notes": [],
"value": 68,
"inputs": {
"releases_count": 4,
"latest_release_tag": "v1.1.1",
"releases_from_tags": false,
"days_since_latest_release": 12,
"mean_days_between_releases": 1085.8
},
"components": [
{
"key": "ships_releases",
"name": "Ships releases",
"detail": "4 releases published",
"points": 27,
"status": "met",
"details": [
{
"code": "releases_published",
"params": {
"count": 4
}
}
],
"max_points": 27
},
{
"key": "release_recency",
"name": "Release recency",
"detail": "latest release 12 days ago",
"points": 36,
"status": "met",
"details": [
{
"code": "release_recency",
"params": {
"days": 12
}
}
],
"max_points": 36
},
{
"key": "release_cadence",
"name": "Release cadence",
"detail": "a release every ~1085.8 days",
"points": 5.4,
"status": "partial",
"details": [
{
"code": "release_cadence",
"params": {
"gap": 1085.8
}
}
],
"max_points": 27
},
{
"key": "openssf_scorecard_signed_releases",
"name": "OpenSSF Scorecard: Signed-Releases",
"detail": "Project has not signed or included provenance with any releases.",
"points": 0,
"status": "missed",
"details": [],
"max_points": 10
}
]
},
{
"key": "abandonment",
"band": "excellent",
"name": "Abandonment",
"note": null,
"notes": [],
"value": 100,
"inputs": {
"cap": null,
"state": "maintained",
"guards": [],
"signals": [],
"red_flag": false,
"multiplier_pct": 100,
"declared_reason": null,
"unverified_reason": null,
"unanswered_open_prs": null,
"unanswered_open_issues": null,
"days_since_last_merged_pr": null,
"days_since_last_human_commit": 12,
"days_since_last_human_commit_is_floor": false
},
"components": [
{
"key": "project_is_still_maintained",
"name": "Project is still maintained",
"detail": "last human commit 12 days ago",
"points": 100,
"status": "met",
"details": [
{
"code": "abandonment_maintained",
"params": {
"days": 12
}
}
],
"max_points": 100
}
]
}
],
"description": "Is the project alive — is code being written and are releases shipping?"
},
{
"key": "community",
"band": "critical",
"name": "Community & Adoption",
"value": 29,
"weight": 0.18,
"metrics": [
{
"key": "popularity",
"band": "critical",
"name": "Popularity & adoption",
"note": null,
"notes": [],
"value": 11,
"inputs": {
"forks": 1,
"stars": 6,
"watchers": 1,
"growth_state": "unverified",
"growth_factor_pct": 100,
"growth_unverified_reason": "no_history"
},
"components": [
{
"key": "stars",
"name": "Stars",
"detail": "6 stars",
"points": 11.3,
"status": "partial",
"details": [
{
"code": "stars",
"params": {
"count": 6
}
}
],
"max_points": 60
},
{
"key": "forks",
"name": "Forks",
"detail": "1 forks",
"points": 0,
"status": "missed",
"details": [
{
"code": "forks",
"params": {
"count": 1
}
}
],
"max_points": 25
},
{
"key": "watchers",
"name": "Watchers",
"detail": "1 watchers",
"points": 0,
"status": "missed",
"details": [
{
"code": "watchers",
"params": {
"count": 1
}
}
],
"max_points": 15
}
]
},
{
"key": "community_health",
"band": "moderate",
"name": "Community health",
"note": null,
"notes": [],
"value": 50,
"inputs": {
"has_readme": true,
"has_license": true,
"has_contributing": false,
"has_issue_template": false,
"has_code_of_conduct": false,
"has_pull_request_template": false
},
"components": [
{
"key": "readme",
"name": "README",
"detail": null,
"points": 22.5,
"status": "met",
"details": [],
"max_points": 22.5
},
{
"key": "license",
"name": "License",
"detail": "recognized license (MIT)",
"points": 22.5,
"status": "met",
"details": [
{
"code": "license_standard",
"params": {}
},
{
"code": "license_spdx",
"params": {
"spdx": "MIT"
}
}
],
"max_points": 22.5
},
{
"key": "contributing_guide",
"name": "CONTRIBUTING guide",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 18
},
{
"key": "code_of_conduct",
"name": "Code of conduct",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 13.5
},
{
"key": "issue_template",
"name": "Issue template",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.2
},
{
"key": "pr_template",
"name": "PR template",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 6.3
}
]
}
],
"description": "Does the project have users, downloads, attention, and a welcoming setup for contributors?"
},
{
"key": "governance",
"band": "moderate",
"name": "Sustainability & Governance",
"value": 55,
"weight": 0.24,
"metrics": [
{
"key": "maintainer_resilience",
"band": "critical",
"name": "Maintainer resilience (bus factor)",
"note": null,
"notes": [],
"value": 18,
"inputs": {
"bus_factor": 1,
"contributors_sampled": 2,
"top_contributor_share": 0.978
},
"components": [
{
"key": "bus_factor",
"name": "Bus factor",
"detail": "1 contributor(s) cover half of all commits",
"points": 9,
"status": "partial",
"details": [
{
"code": "bus_factor",
"params": {
"count": 1
}
}
],
"max_points": 54
},
{
"key": "commit_distribution",
"name": "Commit distribution",
"detail": "top contributor authored 98% of commits",
"points": 0.5,
"status": "partial",
"details": [
{
"code": "top_contributor_share",
"params": {
"share": 98
}
}
],
"max_points": 22.5
},
{
"key": "contributor_breadth",
"name": "Contributor breadth",
"detail": "2 contributors",
"points": 2.7,
"status": "partial",
"details": [
{
"code": "contributors_sampled",
"params": {
"count": 2
}
}
],
"max_points": 13.5
},
{
"key": "openssf_scorecard_contributors",
"name": "OpenSSF Scorecard: Contributors",
"detail": "project has 2 contributing companies or organizations -- score normalized to 6",
"points": 6,
"status": "partial",
"details": [],
"max_points": 10
}
]
},
{
"key": "responsiveness",
"band": "moderate",
"name": "Issue & PR responsiveness",
"note": null,
"notes": [],
"value": 63,
"inputs": {
"merged_prs": 30,
"open_issues": 3,
"closed_issues": 15,
"issue_closed_ratio": 0.833,
"closed_unmerged_prs": 17
},
"components": [
{
"key": "issue_resolution",
"name": "Issue resolution",
"detail": "83% of issues closed",
"points": 38.9,
"status": "partial",
"details": [
{
"code": "issues_closed_share",
"params": {
"share": 83
}
}
],
"max_points": 46.75
},
{
"key": "pr_acceptance",
"name": "PR acceptance",
"detail": "30/47 decided PRs merged",
"points": 24.4,
"status": "partial",
"details": [
{
"code": "decided_prs_merged",
"params": {
"merged": 30,
"decided": 47
}
}
],
"max_points": 38.25
},
{
"key": "openssf_scorecard_code_review",
"name": "OpenSSF Scorecard: Code-Review",
"detail": "Found 1/28 approved changesets -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 15
}
]
},
{
"key": "stewardship",
"band": "moderate",
"name": "Ownership & stewardship",
"note": "Excluded from scoring (no data or not applicable): Verified domain. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"verified_domain"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 60,
"inputs": {
"followers": 61,
"owner_type": "User",
"is_verified": null,
"owner_login": "jcgay",
"public_repos": 55,
"account_age_days": 5470
},
"components": [
{
"key": "ownership_backing",
"name": "Ownership backing",
"detail": "personal (user) account",
"points": 10,
"status": "partial",
"details": [
{
"code": "owner_personal",
"params": {}
}
],
"max_points": 30
},
{
"key": "verified_domain",
"name": "Verified domain",
"detail": "not applicable to user accounts",
"points": 0,
"status": "excluded",
"details": [
{
"code": "not_applicable_to_user_accounts",
"params": {}
}
],
"max_points": 20
},
{
"key": "owner_reach",
"name": "Owner reach",
"detail": "61 followers of jcgay",
"points": 12.9,
"status": "partial",
"details": [
{
"code": "owner_followers",
"params": {
"count": 61,
"login": "jcgay"
}
}
],
"max_points": 25
},
{
"key": "track_record",
"name": "Track record",
"detail": "55 public repos, account ~14 yr old",
"points": 24.7,
"status": "partial",
"details": [
{
"code": "public_repos",
"params": {
"count": 55
}
},
{
"code": "account_age_years",
"params": {
"years": 14
}
}
],
"max_points": 25
}
]
},
{
"key": "package_maintenance",
"band": "excellent",
"name": "Package maintenance",
"note": null,
"notes": [],
"value": 92,
"inputs": {
"packages": [
"github.com/jcgay/parallel-git-repo"
],
"ecosystems": "go",
"any_deprecated": false,
"min_days_since_publish": 12
},
"components": [
{
"key": "published_resolvable",
"name": "Published & resolvable",
"detail": "1 package(s) on go",
"points": 25,
"status": "met",
"details": [
{
"code": "packages_published",
"params": {
"count": 1,
"ecosystems": "go"
}
}
],
"max_points": 25
},
{
"key": "publish_recency",
"name": "Publish recency",
"detail": "latest publish 12 days ago",
"points": 35,
"status": "met",
"details": [
{
"code": "publish_recency",
"params": {
"days": 12
}
}
],
"max_points": 35
},
{
"key": "version_history",
"name": "Version history",
"detail": "4 published versions",
"points": 12,
"status": "partial",
"details": [
{
"code": "published_versions",
"params": {
"count": 4
}
}
],
"max_points": 20
},
{
"key": "not_deprecated",
"name": "Not deprecated",
"detail": "active, not deprecated or yanked",
"points": 20,
"status": "met",
"details": [
{
"code": "package_not_deprecated",
"params": {}
}
],
"max_points": 20
}
]
}
],
"description": "Will the project survive its people — bus factor, responsiveness, who backs it, and package upkeep?"
},
{
"key": "engineering",
"band": "moderate",
"name": "Engineering Quality",
"value": 64,
"weight": 0.2,
"metrics": [
{
"key": "engineering_practices",
"band": "moderate",
"name": "Engineering practices",
"note": null,
"notes": [],
"value": 66,
"inputs": {
"has_ci": true,
"has_tests": true,
"has_editorconfig": false,
"has_linter_config": false,
"has_precommit_config": false
},
"components": [
{
"key": "ci_workflows",
"name": "CI workflows",
"detail": "3 workflow(s)",
"points": 24,
"status": "met",
"details": [
{
"code": "ci_workflows",
"params": {
"count": 3
}
}
],
"max_points": 24
},
{
"key": "tests_present",
"name": "Tests present",
"detail": null,
"points": 24,
"status": "met",
"details": [],
"max_points": 24
},
{
"key": "linter_config",
"name": "Linter config",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 16
},
{
"key": "pre_commit_hooks",
"name": "Pre-commit hooks",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 9.6
},
{
"key": "editorconfig",
"name": ".editorconfig",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 6.4
},
{
"key": "openssf_scorecard_ci_tests",
"name": "OpenSSF Scorecard: CI-Tests",
"detail": "22 out of 24 merged PRs checked by a CI test -- score normalized to 9",
"points": 18,
"status": "partial",
"details": [],
"max_points": 20
}
]
},
{
"key": "documentation",
"band": "moderate",
"name": "Documentation",
"note": null,
"notes": [],
"value": 60,
"inputs": {
"topics": [
"git",
"go",
"parallel"
],
"has_wiki": true,
"homepage": null,
"has_readme": true,
"has_docs_dir": false,
"has_description": true
},
"components": [
{
"key": "readme",
"name": "README",
"detail": null,
"points": 30,
"status": "met",
"details": [],
"max_points": 30
},
{
"key": "documentation_directory",
"name": "Documentation directory",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 25
},
{
"key": "documentation_homepage_site",
"name": "Documentation / homepage site",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 15
},
{
"key": "repository_description",
"name": "Repository description",
"detail": null,
"points": 10,
"status": "met",
"details": [],
"max_points": 10
},
{
"key": "topics",
"name": "Topics",
"detail": "3 topics",
"points": 10,
"status": "met",
"details": [
{
"code": "topics_count",
"params": {
"count": 3
}
}
],
"max_points": 10
},
{
"key": "wiki",
"name": "Wiki",
"detail": null,
"points": 10,
"status": "met",
"details": [],
"max_points": 10
}
]
}
],
"description": "Are baseline engineering and documentation practices in place?"
},
{
"key": "security",
"band": "moderate",
"name": "Security",
"value": 58,
"weight": 0.16,
"metrics": [
{
"key": "security_posture",
"band": "at_risk",
"name": "Security posture",
"note": null,
"notes": [],
"value": 48,
"inputs": {
"source": "openssf_scorecard",
"checks_evaluated": 18,
"scorecard_version": "v5.5.0",
"checks_inconclusive": 0,
"scorecard_aggregate": 4.8
},
"components": [
{
"key": "binary_artifacts",
"name": "Binary-Artifacts",
"detail": "no binaries found in the repo",
"points": 7.5,
"status": "met",
"details": [],
"max_points": 7.5
},
{
"key": "branch_protection",
"name": "Branch-Protection",
"detail": "branch protection not enabled on development/release branches",
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.5
},
{
"key": "ci_tests",
"name": "CI-Tests",
"detail": "22 out of 24 merged PRs checked by a CI test -- score normalized to 9",
"points": 2.2,
"status": "partial",
"details": [],
"max_points": 2.5
},
{
"key": "cii_best_practices",
"name": "CII-Best-Practices",
"detail": "no effort to earn an OpenSSF best practices badge detected",
"points": 0,
"status": "missed",
"details": [],
"max_points": 2.5
},
{
"key": "code_review",
"name": "Code-Review",
"detail": "Found 1/28 approved changesets -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.5
},
{
"key": "contributors",
"name": "Contributors",
"detail": "project has 2 contributing companies or organizations -- score normalized to 6",
"points": 1.5,
"status": "partial",
"details": [],
"max_points": 2.5
},
{
"key": "dangerous_workflow",
"name": "Dangerous-Workflow",
"detail": "no dangerous workflow patterns detected",
"points": 10,
"status": "met",
"details": [],
"max_points": 10
},
{
"key": "dependency_update_tool",
"name": "Dependency-Update-Tool",
"detail": "update tool detected",
"points": 7.5,
"status": "met",
"details": [],
"max_points": 7.5
},
{
"key": "fuzzing",
"name": "Fuzzing",
"detail": "project is not fuzzed",
"points": 0,
"status": "missed",
"details": [],
"max_points": 5
},
{
"key": "license",
"name": "License",
"detail": "license file detected",
"points": 2.5,
"status": "met",
"details": [],
"max_points": 2.5
},
{
"key": "maintained",
"name": "Maintained",
"detail": "25 commit(s) and 14 issue activity found in the last 90 days -- score normalized to 10",
"points": 7.5,
"status": "met",
"details": [],
"max_points": 7.5
},
{
"key": "packaging",
"name": "Packaging",
"detail": "packaging workflow detected",
"points": 5,
"status": "met",
"details": [],
"max_points": 5
},
{
"key": "pinned_dependencies",
"name": "Pinned-Dependencies",
"detail": "dependency not pinned by hash detected -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 5
},
{
"key": "sast",
"name": "SAST",
"detail": "SAST tool is not run on all commits -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 5
},
{
"key": "security_policy",
"name": "Security-Policy",
"detail": "security policy file not detected",
"points": 0,
"status": "missed",
"details": [],
"max_points": 5
},
{
"key": "signed_releases",
"name": "Signed-Releases",
"detail": "Project has not signed or included provenance with any releases.",
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.5
},
{
"key": "token_permissions",
"name": "Token-Permissions",
"detail": "detected GitHub workflow tokens with excessive permissions",
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.5
},
{
"key": "vulnerabilities",
"name": "Vulnerabilities",
"detail": "1 existing vulnerabilities detected",
"points": 6.8,
"status": "partial",
"details": [],
"max_points": 7.5
}
]
},
{
"key": "dependency_advisories",
"band": "excellent",
"name": "Dependency advisories",
"note": "Excluded from scoring (no data or not applicable): Indirect dependencies free of known advisories, No advisories left outstanding. Remaining weights renormalized. Matched 6 resolved dependencies against OSV. This repository publishes no package the index resolves, so the repository dependency graph was assessed instead. That graph mixes development and test pins with shipped dependencies, so only the declared runtime dependencies are scored; transitive findings are reported as context and excluded from the score. Reachability is not analyzed.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"indirect_dependencies_free_of_known_advisories",
"no_advisories_left_outstanding"
]
}
},
{
"code": "weights_renormalized",
"params": {}
},
{
"code": "advisories_scope_repository",
"params": {
"assessed": 6
}
},
{
"code": "advisories_repo_graph_caveat",
"params": {}
},
{
"code": "advisories_reachability",
"params": {}
}
],
"value": 100,
"inputs": {
"source": "osv",
"advisories": 1,
"affected_packages": 1,
"assessed_packages": 6,
"unassessed_packages": 0,
"affected_by_severity": "unknown 1",
"direct_affected_packages": 0
},
"components": [
{
"key": "direct_dependencies_free_of_known_advisories",
"name": "Direct dependencies free of known advisories",
"detail": "no direct dependency carries a known advisory",
"points": 35,
"status": "met",
"details": [
{
"code": "no_direct_advisories",
"params": {}
}
],
"max_points": 35
},
{
"key": "indirect_dependencies_free_of_known_advisories",
"name": "Indirect dependencies free of known advisories",
"detail": "transitive set not separable from development and test dependencies in this scope",
"points": 0,
"status": "excluded",
"details": [
{
"code": "advisories_scope_not_separable",
"params": {}
}
],
"max_points": 25
},
{
"key": "no_advisories_left_outstanding",
"name": "No advisories left outstanding",
"detail": "no advisory carries a publication date",
"points": 0,
"status": "excluded",
"details": [
{
"code": "advisories_no_publication_date",
"params": {}
}
],
"max_points": 40
}
]
},
{
"key": "malicious_dependencies",
"band": "excellent",
"name": "Malicious dependencies",
"note": null,
"notes": [],
"value": 100,
"inputs": {
"source": "osv",
"meaning": "reported as a malicious package by the OpenSSF corpus; the remedy is removal or moving off the compromised name, never an upgrade of the same artifact. Versions the registry has since pulled are listed but not scored",
"packages": [],
"red_flag": false,
"assessed_packages": 6,
"malicious_packages": 0,
"direct_malicious_packages": 0,
"withdrawn_malicious_packages": 0,
"installable_malicious_packages": 0
},
"components": [
{
"key": "no_dependency_reported_as_a_malicious_package",
"name": "No dependency reported as a malicious package",
"detail": "no dependency is reported as a malicious package",
"points": 100,
"status": "met",
"details": [
{
"code": "no_malicious_dependencies",
"params": {}
}
],
"max_points": 100
}
]
},
{
"key": "high_risk_jurisdiction_exposure",
"band": "excellent",
"name": "High-Risk Jurisdiction Exposure",
"note": "Only high-confidence self-published location evidence affects this multiplier. Ambiguous matches are review-only; country evidence is not proof of nationality, citizenship, legal registration, malicious intent, or sanctions status.",
"notes": [
{
"code": "jurisdiction_evidence_limits",
"params": {}
}
],
"value": 100,
"inputs": {
"meaning": "self-published location evidence; not nationality or citizenship",
"red_flag": false,
"exposures": [],
"policy_countries": [
"Russia",
"Iran",
"North Korea"
],
"review_only_matches": 0,
"assessed_self_published_locations": 3
},
"components": [
{
"key": "policy_exposure_multiplier",
"name": "Policy exposure multiplier",
"detail": "no confirmed policy-scope location match",
"points": 100,
"status": "met",
"details": [
{
"code": "jurisdiction_no_match",
"params": {}
}
],
"max_points": 100
}
]
}
],
"description": "Are visible security and supply-chain practices strong, with no malicious dependency and no unresolved high-risk jurisdiction exposure?"
},
{
"key": "ai_readiness",
"band": "moderate",
"name": "AI Readiness",
"value": 63,
"weight": 0,
"metrics": [
{
"key": "ai_agent_context",
"band": "critical",
"name": "Agent context & guidance",
"note": null,
"notes": [],
"value": 22,
"inputs": {
"has_llms_txt": false,
"legible_history_share": 0.418,
"agent_instruction_files": [],
"agent_instruction_max_bytes": null
},
"components": [
{
"key": "agent_instructions",
"name": "Agent instructions",
"detail": "no CLAUDE.md / AGENTS.md / editor rules",
"points": 0,
"status": "missed",
"details": [
{
"code": "no_agent_instructions",
"params": {}
}
],
"max_points": 45
},
{
"key": "machine_readable_docs_llms_txt",
"name": "Machine-readable docs (llms.txt)",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 15
},
{
"key": "legible_commit_history",
"name": "Legible commit history",
"detail": "38 of 91 human commits state their intent (structured subject or explanatory body)",
"points": 22.3,
"status": "partial",
"details": [
{
"code": "legible_history",
"params": {
"legible": 38,
"sampled": 91
}
}
],
"max_points": 40
}
]
},
{
"key": "ai_verify_loop",
"band": "good",
"name": "Verify loop (build / test / typecheck)",
"note": null,
"notes": [],
"value": 79,
"inputs": {
"has_nix": false,
"has_tests": true,
"lockfiles": [
"go.sum"
],
"has_dockerfile": false,
"typed_language": true,
"bootstrap_files": [
"Makefile"
],
"has_devcontainer": false,
"has_linter_config": false,
"typecheck_configs": [],
"agent_commit_share": 0.25,
"toolchain_manifests": [
"go.mod"
],
"dependency_bot_commit_share": 0.052
},
"components": [
{
"key": "one_command_bootstrap",
"name": "One-command bootstrap",
"detail": "Makefile",
"points": 18,
"status": "met",
"details": [
{
"code": "file_list",
"params": {
"files": "Makefile"
}
}
],
"max_points": 18
},
{
"key": "automated_tests",
"name": "Automated tests",
"detail": null,
"points": 22,
"status": "met",
"details": [],
"max_points": 22
},
{
"key": "lint_format_config",
"name": "Lint / format config",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 11
},
{
"key": "static_type_checking",
"name": "Static type checking",
"detail": "Go (statically typed)",
"points": 11,
"status": "met",
"details": [
{
"code": "statically_typed_language",
"params": {
"language": "Go"
}
}
],
"max_points": 11
},
{
"key": "reproducible_environment",
"name": "Reproducible environment",
"detail": "lockfile",
"points": 10,
"status": "met",
"details": [
{
"code": "file_list",
"params": {
"files": "lockfile"
}
}
],
"max_points": 10
},
{
"key": "demonstrated_agent_practice",
"name": "Demonstrated agent practice",
"detail": "24 of the last 96 commits agent-authored or agent-credited",
"points": 10,
"status": "met",
"details": [
{
"code": "agent_authored_commits",
"params": {
"count": 24,
"sampled": 96
}
}
],
"max_points": 10
},
{
"key": "automated_maintenance",
"name": "Automated maintenance",
"detail": "5 of the last 96 commits are automated dependency updates",
"points": 8,
"status": "met",
"details": [
{
"code": "dependency_bot_commits",
"params": {
"count": 5,
"sampled": 96
}
}
],
"max_points": 8
},
{
"key": "openssf_scorecard_pinned_dependencies",
"name": "OpenSSF Scorecard: Pinned-Dependencies",
"detail": "dependency not pinned by hash detected -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 10
}
]
},
{
"key": "ai_code_legibility",
"band": "excellent",
"name": "Code legibility for models",
"note": null,
"notes": [],
"value": 100,
"inputs": {
"primary_language": "Go",
"largest_source_bytes": 17105,
"source_files_sampled": 2,
"oversized_source_files": 0
},
"components": [
{
"key": "type_checkable_code",
"name": "Type-checkable code",
"detail": "Go (statically typed)",
"points": 45,
"status": "met",
"details": [
{
"code": "statically_typed_language",
"params": {
"language": "Go"
}
}
],
"max_points": 45
},
{
"key": "manageable_file_sizes",
"name": "Manageable file sizes",
"detail": "0/2 source files over 60KB",
"points": 55,
"status": "met",
"details": [
{
"code": "oversized_source_files",
"params": {
"kb": 60,
"sampled": 2,
"oversized": 0
}
}
],
"max_points": 55
}
]
}
],
"description": "How well is the repo equipped to be developed and maintained with AI coding agents? An independent, experimental badge — weight 0.0, so it is surfaced on its own and does not affect the overall health score."
}
],
"metrics_version": "1.13.0"
},
"warnings": [
"Star history unavailable: GitHub GraphQL error: Resource not accessible by personal access token"
],
"report_type": "repository",
"generated_at": "2026-07-31T09:18:19.630362Z",
"schema_version": "0.27.0",
"badge_url": "https://raw.githubusercontent.com/inspect-software/badges/main/v1/j/jcgay/parallel-git-repo.svg",
"full_name": "jcgay/parallel-git-repo",
"license_state": "standard",
"license_spdx": "MIT"
}