agentsclimarketplace

Wbg oss review

Skill worldbank/open-source-kit/.github/skills/wbg-oss-review

Reusable GitHub Actions workflow and Copilot skill for World Bank open source compliance.

Install
npx -y skills add worldbank/open-source-kit --skill wbg-oss-review

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 4 stars4 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

What its author says it does

Copied from the file, not written here

Audits and prepares a GitHub repository for World Bank Group (WBG) open source publication. Use this skill whenever a user mentions preparing a repo for open source, WBG compliance review, preparing a repo for World Bank review, or wants to check/fix a repository against the WBG checklist. Also trigger when a user says their repo needs the WB license (MIT or Apache 2.0 with the matching IGO rider), citation file, code of conduct, contributing guide, or any combination of World Bank open source requirements. Even if they just say "prepare my repo for open source", "review my repo", or "audit my repo for WBG", use this skill.

SKILL.md

7.3 KB, as published. Nobody here has run it

WBG Open Source Publication — Repo Preparer

This skill helps users audit and prepare a GitHub repository for World Bank Group open source publication. It is designed as a self-service tool — linked from the intranet public repository review request form — so that teams can independently identify and fix compliance gaps before submitting their repo for OSPO review.

You will scan the repo, identify gaps against the official checklist, generate a clear status report, and help create or fix any missing files.

Reference Files

  • ./references/checklist.md — Full detail on each requirement, including required text verbatim and template links
  • ./references/templates.md — Starter templates for README sections, CITATION.cff, and the license notice

Workflow

Step 1: Understand the target repo

Ask the user which directory to audit (or confirm if a path is already clear from context). Then scan:

  • Root file listing (check for README.md, LICENSE, CITATION.cff, CODE_OF_CONDUCT.md, CONTRIBUTING.md, .env*, *.bib)
  • Contents of README.md (if it exists)
  • Any existing LICENSE file — determine whether the project uses MIT or Apache License, Version 2.0 (see references/checklist.md Requirement 3). Verify the README license notice and IGO rider file match that choice (WB-IGO-RIDER.md with MIT; WB-IGO-RIDER-APACHE.md with Apache).
  • .gitignore or .env.example patterns
  • A quick search for potential secrets and hard-coded values

Do this scanning in parallel where possible to move fast.

Step 2: Generate the audit report

Produce a structured checklist report with status icons for each requirement. Use this format:

## WBG Open Source Publication — Audit Report

### ✅ / ⚠️ / ❌  [Requirement Name]
**Status**: Pass / Needs Work / Missing
**Finding**: [what you found]
**Action needed**: [what to do, if anything]

Work through all 10 requirements (see reference below). Be specific — don't just say "README is missing a section", say which section and what content would satisfy it.

Step 3: Offer to fix things

After the report, ask the user: "Would you like me to create or update any of these files?" Then do what they ask, one file at a time. Use the templates in references/templates.md as your starting point, but always personalize with real project details (name, description, contact info, etc.) gathered from the repo or by asking the user.

When creating files, prefer to update existing files rather than overwrite them wholesale — especially README.md.

Next steps

After all fixes are applied, let the user know:

  1. Commit and push the changes to a branch and open a pull request.
  2. Submit for OSPO review via the intranet public repository review request form. The OSPO will review the repo and, once approved, change its visibility to public.
  3. Manual items to address before or during review:
    • Set the GitHub repo About section: description, website, topics (Requirement 2)
    • Set up a documentation site — GitHub Pages, Jupyter Book, etc. (Requirement 5)

The 10 Checklist Requirements

Read references/checklist.md for the full detail on each requirement. Here's the quick summary:

#RequirementKey Check
1README.mdProject name, description (2-3 sentences), screenshot if applicable, Getting Started, docs link, contact (@worldbank.org), license notice
2Repository DetailsDescription, website/docs link, relevant topics set in GitHub repo settings
3LicenseMIT or Apache-2.0, each with the matching WB IGO Rider file; README must use the matching verbatim notice from Requirement 1g (MIT vs Apache text differs)
5DocumentationWeb-based docs (GitHub Pages, Jupyter Book, etc.) accessible to non-technical audiences
6CITATION.cffCitation file using CFF format for reproducible research
7Code of ConductCODE_OF_CONDUCT.md present or linked
8Contributing GuideCONTRIBUTING.md present using WB template
9ExclusionsNo original data, no secrets/API keys, avoid hard-coded variables
10Bibliography (optional)BibTeX .bib file in docs/

Note: item 4 is not in the checklist — items go 1, 2, 3, 5, 6, 7, 8, 9, 10.

License choice (MIT vs Apache)

Repos may use either MIT or Apache License, Version 2.0 as the base license, each paired with the correct rider:

Base licenseIGO rider (canonical)
MIT LicenseWB-IGO-RIDER.md
Apache License, Version 2.0WB-IGO-RIDER-APACHE.md

Do not mix: an Apache LICENSE must not ship with the MIT-only rider (and vice versa). The README bottom notice must be the verbatim block for that same pair — see references/checklist.md §1g.

When helping the user choose: Apache is common for larger ecosystems (patent grant, NOTICE file patterns); MIT is minimal and widely used. If the repo already has one license on disk, align the rider and README to that unless the user explicitly wants to relicense.


Scanning for Exclusion Violations (Requirement 9)

This is the trickiest requirement because violations may be hard to spot.

Secrets/API keys: Search for common patterns:

  • Files named .env, secrets.yaml, credentials.json, config.py containing keys
  • Strings matching patterns like sk-, AKIA, Bearer , password =, api_key =
  • Check .gitignore — secrets files should be listed there

Hard-coded variables: Look for:

  • Literal IP addresses, database connection strings
  • Hard-coded file paths (e.g., /home/username/..., C:\Users\...)
  • Hard-coded URLs that should be configuration

Data files: Look for:

  • Large files or directories named data/, datasets/, raw/
  • .csv, .xlsx, .shp, .geojson, .parquet, .db files committed to the repo
  • If found, flag them — data should live in the World Bank Data Catalog, SharePoint, or similar

Report findings with specific file paths so the user can act on them.


Tone and Communication

  • Be direct and actionable. Users are World Bank staff preparing their own repositories for open source publication.
  • When something is ambiguous (e.g., "does this README have a description?"), use your judgment and explain your reasoning.
  • Don't be preachy about open source best practices beyond what's in the checklist.
  • For items 7 and 8 (Code of Conduct, Contributing Guide), the WB provides official templates — users should use those exact files, not write their own.

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.