Skip to content
ai-supply.store
खोजेंश्रेणियाँलीडरबोर्डसमुदायAgent APIFAQ
साइन इनमुफ़्त साइन अप
catalog / Gaming & Simulation / Melting Pot — Multi-Agent RL Test Suite
△EvalGaming & SimulationFree

Melting Pot — Multi-Agent RL Test Suite

Google DeepMind's suite of 50+ multi-agent social RL scenarios testing cooperation, competition, and generalization.

@ai-supply
इंस्टॉल15k
⟳ upstream v2.4.0 · updated 1y ago
↗ सोर्स रिपॉज़िटरी
← More Gaming & SimulationGaming & Simulation leaderboard →How we grade security →Source ↗
! Grade B · 88/100 · ReviewSecurity assessment
✓No compromise signals8capabilities surfaced1known CVE7of 20 OWASP controls clear
External endpoints declaredExternal endpoints declaredExternal endpoints declaredExternal endpoints declared
scanned 18d ago·osv · gitleaks · opengrep · picklescan + heuristics·full breakdown in the Security tab ↓

Melting Pot — Multi-Agent RL Test Suite

Melting Pot is a Google DeepMind research suite with 50+ multi-agent social scenarios designed to evaluate generalization in MARL — can an agent trained in one social context transfer to novel partners and situations? Scenarios cover cooperation dilemmas, competitive games, resource harvesting, and commons management.

Key features

  • 50+ scenarios across cooperation, competition, mixed motives, and signaling
  • Population-based evaluation protocol for measuring generalization (not just peak performance)
  • Built on DeepMind Lab2D for grid-world environments
  • Reference baseline agents (MEME, A3C) and evaluation metrics included
  • Python API compatible with RLlib, ACME, and custom training loops

Quick start

pip install dm-meltingpot
import meltingpot

env = meltingpot.substrate.build("commons_harvest__open",
                                  roles=["default"] * 5)
step = env.reset()
for _ in range(500):
    actions = [env.action_space[i].sample() for i in range(5)]
    step = env.step(actions)
env.close()
npx ai-supply add meltingpot-multiagent-rl

Curated mirror of the open-source Melting Pot (Apache-2.0). Get it from the source.

Rating rank
#1
of 13 in Gaming & Simulation
Install rank
#11
of 13 in Gaming & Simulation
Security score
88/100 · B
review
Security rank
#7
of 13 in Gaming & Simulation
Installs
15k
cat avg 86k
This listing vs category average
Installs
this
cat avg
Security (of 100)
this
cat avg
Adoption trend
See the Gaming & Simulation leaderboard →
! Security: Review · 8888/100 · grade Bscanned 18d ago
✓ no compromise signals9 risk-surface · 7/20 OWASP controls flagged

Compromise signals — malicious or tampered code (leaked secrets, backdoors, a dropped executable) — reduce the score, and known dependency CVEs carry a bounded penalty (they warrant review but never QUARANTINE — update the dependency to clear). Other dangerous-by-capability traits are risk surface, expected for some capabilities. Every finding is mapped to its OWASP control below.

Control card · high confidence (static)
framework: pytestcovers: secrets-leak
stringtest_trainingtest_action_space_sizetest_reset_number_agentstest_steptest_render_modes_metadatatest_render_rgb_arraytest_step_without_errortest_has_valid_substratetest_model_existstest_substrate_matches_modeltest_no_duplicatestest_models_used_by_botstest_has_descriptiontest_has_tagstest_name_starts_with_substrate_nametest_has_focal_playerstest_has_matching_sizestest_has_valid_rolestest_has_valid_botstest_bots_compatibletest_no_missing_role_assigmentstest_no_unused_role_assignmentstest_all_substrates_used_by_scenarios

Findings mapped to the OWASP Top 10 for LLM Applications (2025) and the OWASP Machine Learning Security Top 10. Expand any flagged control for the exact findings — compromise reduces the score; expected/risk-surface do not, except a known CVE, which carries a small bounded penalty (high/critical → Review).

OWASP Top 10 for LLM Applications
⚠LLM02Sensitive Information Disclosurehigh
Secrets, credentials or PII shipped inside the artifact.
•IBAN-like number present — contains a string matching the IBAN format · google-deepmind-meltingpot-cfedcdf/meltingpot/configs/substrates/allelopathic_harvest.py (CWE-359)expected
•Email addresses present — contains email-like strings · google-deepmind-meltingpot-cfedcdf/setup.pyexpected
⚠LLM03Supply Chainhigh
Vulnerable/compromised dependencies, models or archives in the artifact.
•Dependency manifest — 1345 pip requirements declared · google-deepmind-meltingpot-cfedcdf/requirements.txtrisk surface
•Vulnerable dependencies — 60 known vulnerabilities in: black@24.10.0, cryptography@44.0.2, idna@3.10, jaraco-context@6.0.1, keras@3.9.2, markdown@3.8, pip@25.0.1, protobuf@5.29.4 (CWE-1395)known CVE · -12 pts
⚠LLM08Vector and Embedding Weaknesseshigh
PII or plaintext source leakage in embedding/vector exports.
Embedding inversion/poisoning is largely runtime; static check covers PII in vector exports.
•IBAN-like number present — contains a string matching the IBAN format · google-deepmind-meltingpot-cfedcdf/meltingpot/configs/substrates/allelopathic_harvest.py (CWE-359)expected
•Email addresses present — contains email-like strings · google-deepmind-meltingpot-cfedcdf/setup.pyexpected
⚠LLM10Unbounded Consumptionmedium
Unbounded loops/recursion causing DoS or runaway cost.
Enforced at runtime by the gateway (rate limits + spend caps + size caps); static check flags unbounded loops.
•Potentially unbounded loop — an infinite loop (while True / while(1) / for(;;)) may cause runaway consumption · google-deepmind-meltingpot-cfedcdf/meltingpot/human_players/level_playing_utils.py (CWE-835)risk surface
⚠LLM06Excessive Agencylow
Over-broad tool/permission surface or unrestricted egress.
•External endpoints declared — 2 distinct host(s) · google-deepmind-meltingpot-cfedcdf/.devcontainer/Dockerfilerisk surface
•External endpoints declared — 1 distinct host(s) · google-deepmind-meltingpot-cfedcdf/.devcontainer/devcontainer.jsonrisk surface
•External endpoints declared — 3 distinct host(s) · google-deepmind-meltingpot-cfedcdf/.github/workflows/pypi-publish.ymlrisk surface
•External endpoints declared — 4 distinct host(s) · google-deepmind-meltingpot-cfedcdf/CHANGELOG.mdrisk surface
•External endpoints declared — 8 distinct host(s) · google-deepmind-meltingpot-cfedcdf/README.mdrisk surface
§LLM09MisinformationGovernance
Artifacts designed to produce false/deceptive output.
Detectable only by runtime behavioral evaluation; addressed via responsible-use attestation.
✓LLM01Prompt InjectionPassed
✓LLM04Data and Model PoisoningPassed
Backdoors/poisoning in training data or serialized models.
Behavioral poisoning needs model execution; static check covers unsafe serialization + dataset skew only.
✓LLM05Improper Output HandlingPassed
✓LLM07System Prompt LeakagePassed
OWASP Machine Learning Security Top 10
⚠ML02Data Poisoninghigh
Poisoned training datasets with triggers or anomalous distributions.
Static check covers trigger phrasing, PII and label skew; full poisoning detection is runtime.
•IBAN-like number present — contains a string matching the IBAN format · google-deepmind-meltingpot-cfedcdf/meltingpot/configs/substrates/allelopathic_harvest.py (CWE-359)expected
•Email addresses present — contains email-like strings · google-deepmind-meltingpot-cfedcdf/setup.pyexpected
⚠ML06AI Supply Chainhigh
Compromised PyPI/npm packages, typosquats, unsafe serialized models.
•Dependency manifest — 1345 pip requirements declared · google-deepmind-meltingpot-cfedcdf/requirements.txtrisk surface
•Vulnerable dependencies — 60 known vulnerabilities in: black@24.10.0, cryptography@44.0.2, idna@3.10, jaraco-context@6.0.1, keras@3.9.2, markdown@3.8, pip@25.0.1, protobuf@5.29.4 (CWE-1395)known CVE · -12 pts
§ML01Input Manipulation (Adversarial)Governance
Models vulnerable to adversarial perturbations.
Requires runtime robustness evaluation; addressed via publisher robustness attestation.
§ML03Model InversionGovernance
Training data reconstructable from a model's outputs.
Runtime/evaluation property; addressed via model-card data-provenance + DP attestation.
§ML04Membership InferenceGovernance
Determining whether a record was in the training set.
Runtime/evaluation property; addressed via overfitting disclosure + DP attestation.
§ML08Model SkewingGovernance
Models trained on skewed data producing biased output.
Requires fairness evaluation; addressed via model-card bias/limitations disclosure.
◷ML09Output IntegrityRuntime-enforced
Middleware tampering with model outputs in transit.
Gateway enforces TLS + response integrity; static check flags output-rewriting code.
✓ML05Model TheftPassed
Unlicensed re-distribution / license-incompatible derivatives.
Static check verifies license declaration; extraction throttling is runtime.
✓ML07Transfer Learning AttackPassed
Backdoored base models / LoRA adapters propagating to derivatives.
Backdoor detection needs behavioral probing; static check covers unsafe serialization + provenance.
✓ML10Model Poisoning (Weights)Passed
Tampered model weight files; integrity must be verifiable.
Static check enforces safe formats + records a content hash for downstream verification.
Other findings (7) · hygiene / uncategorized
•Unrecognized file type — '.?' is not on the allowlist · google-deepmind-meltingpot-cfedcdf/.devcontainer/Dockerfilerisk surface
•Unrecognized file type — '.gitignore' is not on the allowlist · google-deepmind-meltingpot-cfedcdf/.gitignorerisk surface
•Unrecognized file type — '.pylintrc' is not on the allowlist · google-deepmind-meltingpot-cfedcdf/.pylintrcrisk surface
•Unrecognized file type — '.python-version' is not on the allowlist · google-deepmind-meltingpot-cfedcdf/.python-versionrisk surface
•Unrecognized file type — '.bib' is not on the allowlist · google-deepmind-meltingpot-cfedcdf/CITATION.bibrisk surface
•Unrecognized file type — '.in' is not on the allowlist · google-deepmind-meltingpot-cfedcdf/examples/requirements.inrisk surface
•Unrecognized file type — '.lua' is not on the allowlist · google-deepmind-meltingpot-cfedcdf/examples/tutorial/harvest/levels/harvest/init.luarisk surface
✔ verified source · pinned google-deepmind-meltingpot-cfedcdf
Check against a policy

The same gate an agent runs before installing (POST /api/v1/trust/meltingpot-multiagent-rl/check). Click a policy:

Consume Melting Pot — Multi-Agent RL Test Suite programmatically. Authenticate with an API key or session — see Authorize an agent.

# Agents: CHECK BEFORE YOU INSTALL (no auth) — score, grade, level, capability manifest
curl https://ai-supply.store/api/v1/trust/meltingpot-multiagent-rl

# Gate against your org policy (returns { pass, violations })
curl -X POST https://ai-supply.store/api/v1/trust/meltingpot-multiagent-rl/check \
  -H "Content-Type: application/json" \
  -d '{"minGrade":"B","denyPermissions":["shell"],"denyUnknownEgress":true}'

# CLI
npx ai-supply add meltingpot-multiagent-rl

# REST (install → download)
curl -X POST https://ai-supply.store/api/v1/listings/meltingpot-multiagent-rl/install \
  -H "Authorization: Bearer $AIM_KEY"

# MCP tool
install_listing({ "slug": "meltingpot-multiagent-rl" })
OpenAPI spec →
vlatest
! Security: Review · 881mo ago

Curated mirror — latest upstream source. See the repository for tagged releases.

Sign in and install this listing to leave a review.

More from @ai-supply

View profile →
◉Agent
MetaGPT
Multi-agent framework that assigns GPT roles (PM, engineer, QA) to solve complex software tasks end-to-end.
↓ 1.0M
⇄Connector
vLLM
High-throughput, memory-efficient LLM inference engine with PagedAttention and continuous batching.
↓ 892k
⇄Connector
Meilisearch
Lightning-fast open-source search engine with typo-tolerance, semantic hybrid search, and sub-50ms response times.
↓ 811k
△Eval
Weights & Biases (wandb)
ML experiment tracking and visualization — log metrics, hyperparameters, models, and media in real time.
↓ 784k
ai-supply.store

मुफ़्त, सुरक्षा-जाँची गई AI क्षमताएँ — skills, MCPs, plugins, agents, datasets और बहुत कुछ, हर एक ग्रेडेड और ताज़गी-ट्रैक्ड, और इंसानों तथा agents दोनों के लिए बनाई गई।

api · v3.1status · all green
संपर्क करें
support@ai-supply.storesecurity@ai-supply.store
कैटलॉग
  • खोजें
  • श्रेणियाँ
  • लीडरबोर्ड
  • बेंचमार्क
  • सुरक्षा
  • Scan a repo
समुदाय
  • समुदाय
  • FAQ
एजेंट के लिए
  • क्विकस्टार्ट (60s)
  • एजेंट अधिकृत करें
  • Agent API
  • OpenAPI स्पेसिफिकेशन
बिल्डर्स के लिए
  • प्रकाशित करें
  • डैशबोर्ड
खाता
  • खाता बनाएँ
  • साइन इन
  • सेटिंग्स
कानूनी
  • नियम व शर्तें
  • प्रकाशक अनुबंध
  • स्वीकार्य उपयोग नीति
  • गोपनीयता