Skip to content
ai-supply.store
खोजेंश्रेणियाँलीडरबोर्डसमुदायAgent APIFAQ
साइन इनमुफ़्त साइन अप
catalog / Coding / OpenHands
◉AgentCodingFree

OpenHands

Open-source AI software engineering agent that writes, edits, runs, and tests code autonomously in a sandboxed environment.

@ai-supply
इंस्टॉल499k
⟳ upstream v1.13.0 · updated 7d ago
↗ सोर्स रिपॉज़िटरी
← More CodingCoding leaderboard →How we grade security →Source ↗
! Grade B · 88/100 · ReviewSecurity assessment
✓No compromise signals52capabilities surfaced1known CVE5of 20 OWASP controls clear
External endpoints declaredSuspicious network referencesEgress to a private/loopback hostExternal endpoints declared
scanned 4d ago·osv · gitleaks · opengrep · picklescan + heuristics·full breakdown in the Security tab ↓

OpenHands

OpenHands (formerly OpenDevin) is a platform for AI software engineering agents. It gives an LLM a sandboxed Linux environment with a shell, code editor, browser, and file system — letting the agent autonomously complete entire software tasks from natural language instructions.

Key Features

  • Full environment access: agent runs bash commands, edits files, browses the web, and calls APIs in an isolated Docker sandbox
  • Multi-agent support: orchestrator + specialist agents (CodeAct, browsing, file editing) collaborate on complex tasks
  • Any LLM backend: OpenAI, Anthropic, local Ollama, and any LiteLLM-compatible model
  • SWE-bench leader: consistently top-ranked on the SWE-bench Verified benchmark for autonomous issue resolution
  • GitHub integration: clone repos, open PRs, and comment on issues without leaving the agent loop
  • Extensible skills: community-contributed microagents for specific domains (docs, testing, security)

Quick Start

# Requires Docker
docker pull ghcr.io/all-hands-ai/openhands:main

export WORKSPACE_BASE=$(pwd)/workspace

docker run -it --rm \
  -e SANDBOX_RUNTIME_CONTAINER_IMAGE=docker.all-hands.dev/all-hands-ai/runtime:0.40-nikolaik \
  -e LLM_MODEL="anthropic/claude-sonnet-4-5" \
  -e LLM_API_KEY="$ANTHROPIC_API_KEY" \
  -v $WORKSPACE_BASE:/opt/workspace_base \
  -v /var/run/docker.sock:/var/run/docker.sock \
  -p 3000:3000 \
  ghcr.io/all-hands-ai/openhands:main

Open http://localhost:3000 and describe a coding task.

Install via ai-supply

npx ai-supply add openhands-ai-software-engineer

Curated mirror of the open-source OpenHands (MIT). Get it from the source.

Rating rank
#1
of 27 in Coding
Install rank
#4
of 27 in Coding
Security score
88/100 · B
review
Security rank
#12
of 27 in Coding
Installs
499k
cat avg 157k
This listing vs category average
Installs
this
cat avg
Security (of 100)
this
cat avg
Adoption trend
See the Coding leaderboard →
! Security: Review · 8888/100 · grade Bscanned 4d ago
✓ no compromise signals53 risk-surface · 10/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.

What this capability can do · high confidence (static)
Tools (24)
API_KEYALPHABETAGAMMAOPENAI_API_KEYNEW_NAMEOpenAI_API_KeyNew_Keymock-public-skillanother-public-skillbashtest_functiontyped_functionroot_functionSyntheticweatherdemo-pluginambient-pluginalphabetacity-weatherdenoprdhouse-rules
⚑ filesystem⚑ shell⚑ network⚑ secretsinstall: script:OpenHands-OpenHands-0d15c5e/.openhands/setup.shinstall: postinstall
egress → api.github.com, youtube.com, llm-proxy.app.all-hands.dev, astral.sh, docs.npmjs.com, registry.npmjs.org, z.openhands.dev, host.docker.internal +32

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
⚠LLM05Improper Output Handlingcritical
Code that pipes model/user output into shell, eval, SQL or paths unsafely.
•Suspicious code patterns — pipe-to-shell install · OpenHands-OpenHands-0d15c5e/.github/workflows/ci.yml (CWE-494)risk surface
•Suspicious code patterns — child_process exec · OpenHands-OpenHands-0d15c5e/__tests__/bin/agent-canvas.test.ts (CWE-78)risk surface
•Suspicious code patterns — pipe-to-shell install; child_process exec · OpenHands-OpenHands-0d15c5e/__tests__/scripts/dev-safe.test.ts (CWE-494)risk surface
•Suspicious code patterns — destructive rm -rf / · OpenHands-OpenHands-0d15c5e/docker/Dockerfile (CWE-78)risk surface
•Suspicious code patterns — bash reverse shell (/dev/tcp) · OpenHands-OpenHands-0d15c5e/docker/entrypoint.sh (CWE-78)risk surface
•Suspicious code patterns — pipe-to-shell install; OS command execution · OpenHands-OpenHands-0d15c5e/docs/DefenseClaw.md (CWE-494)risk surface
•Suspicious code patterns — dynamic code execution · OpenHands-OpenHands-0d15c5e/scripts/check-translation-completeness.cjs (CWE-95)risk surface
•Suspicious code patterns — child_process exec; environment/secret exfiltration · OpenHands-OpenHands-0d15c5e/scripts/download-uv.mjs (CWE-78)risk surface
⚠LLM01Prompt Injectionhigh
Adversarial instructions embedded in an artifact that hijack a downstream LLM.
•Prompt-injection phrasing — instruction-subversion language detected · OpenHands-OpenHands-0d15c5e/__tests__/components/conversation-events/chat/event-message-components/skill-item-expanded.test.ts (CWE-77)risk surface
⚠LLM02Sensitive Information Disclosurehigh
Secrets, credentials or PII shipped inside the artifact.
•Embedded credentials — found: API secret key (sk-) · OpenHands-OpenHands-0d15c5e/__tests__/components/features/conversation/conversation-tabs.test.tsx (CWE-798)expected
⚠LLM03Supply Chainhigh
Vulnerable/compromised dependencies, models or archives in the artifact.
•Dependency manifest — 97 npm dependencies declared · OpenHands-OpenHands-0d15c5e/package.jsonrisk surface
•npm install-lifecycle script — postinstall run on install — executes arbitrary code · OpenHands-OpenHands-0d15c5e/package.json (CWE-506)risk surface
•Vulnerable dependencies — 4 known vulnerabilities in: dompurify@3.4.12, electron@42.3.3, extract-zip@2.0.1, nanoid@3.3.17 (CWE-1395)known CVE · -12 pts
⚠LLM06Excessive Agencyhigh
Over-broad tool/permission surface or unrestricted egress.
•External endpoints declared — 1 distinct host(s) · OpenHands-OpenHands-0d15c5e/.agents/skills/release.mdrisk surface
•Egress to a private/loopback host — 127.0.0.1 · OpenHands-OpenHands-0d15c5e/.env.sample (CWE-918)risk surface
•External endpoints declared — 2 distinct host(s) · OpenHands-OpenHands-0d15c5e/.env.samplerisk surface
•External endpoints declared — 3 distinct host(s) · OpenHands-OpenHands-0d15c5e/.github/scripts/tests/test_issue_readiness.pyrisk surface
•External endpoints declared — 4 distinct host(s) · OpenHands-OpenHands-0d15c5e/.github/workflows/ci.ymlrisk surface
•Broad capability surface — 3 high-impact capability categories referenced — verify least-privilege · OpenHands-OpenHands-0d15c5e/.github/workflows/mock-llm-docker-e2e.yml (CWE-272)risk surface
•Broad capability surface — 4 high-impact capability categories referenced — verify least-privilege · OpenHands-OpenHands-0d15c5e/AGENTS.md (CWE-272)risk surface
•External endpoints declared — 7 distinct host(s) · OpenHands-OpenHands-0d15c5e/AGENTS.mdrisk surface
•External endpoints declared — 8 distinct host(s) · OpenHands-OpenHands-0d15c5e/README.mdrisk surface
•External endpoints declared — 14 distinct host(s) · OpenHands-OpenHands-0d15c5e/__tests__/api/agent-server-config.test.tsrisk surface
•External endpoints declared — 5 distinct host(s) · OpenHands-OpenHands-0d15c5e/__tests__/api/automation-service.test.tsrisk surface
•External endpoints declared — 6 distinct host(s) · OpenHands-OpenHands-0d15c5e/__tests__/api/backend-registry/storage.test.tsrisk surface
•Egress to a private/loopback host — 192.168.1.99, 192.168.1.42 · OpenHands-OpenHands-0d15c5e/__tests__/api/cloud/conversation-runtime-info.test.ts (CWE-918)risk surface
•External endpoints declared — 10 distinct host(s) · OpenHands-OpenHands-0d15c5e/__tests__/api/device-flow-client.test.tsrisk surface
•Egress to a private/loopback host — 127.0.0.1, [::1] · OpenHands-OpenHands-0d15c5e/__tests__/build-websocket-url.test.ts (CWE-918)risk surface
•External endpoints declared — 9 distinct host(s) · OpenHands-OpenHands-0d15c5e/__tests__/scripts/dev-safe.test.tsrisk surface
•Broad capability surface — 5 high-impact capability categories referenced — verify least-privilege · OpenHands-OpenHands-0d15c5e/package-lock.json (CWE-272)risk surface
⚠LLM07System Prompt Leakagehigh
Secrets, internal hosts or proprietary logic exposed in shipped prompts.
•Internal host / private infrastructure reference — shipped content references a private IP range or internal-only host · OpenHands-OpenHands-0d15c5e/AGENTS.md (CWE-200)risk surface
•Embedded credentials — found: API secret key (sk-) · OpenHands-OpenHands-0d15c5e/__tests__/components/features/conversation/conversation-tabs.test.tsx (CWE-798)expected
⚠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 · OpenHands-OpenHands-0d15c5e/.github/scripts/check_pr_description.py (CWE-835)risk surface
§LLM09MisinformationGovernance
Artifacts designed to produce false/deceptive output.
Detectable only by runtime behavioral evaluation; addressed via responsible-use attestation.
✓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.
✓LLM08Vector and Embedding WeaknessesPassed
PII or plaintext source leakage in embedding/vector exports.
Embedding inversion/poisoning is largely runtime; static check covers PII in vector exports.
OWASP Machine Learning Security Top 10
⚠ML09Output Integritycritical
Middleware tampering with model outputs in transit.
Gateway enforces TLS + response integrity; static check flags output-rewriting code.
•Suspicious code patterns — pipe-to-shell install · OpenHands-OpenHands-0d15c5e/.github/workflows/ci.yml (CWE-494)risk surface
•Suspicious code patterns — child_process exec · OpenHands-OpenHands-0d15c5e/__tests__/bin/agent-canvas.test.ts (CWE-78)risk surface
•Suspicious code patterns — pipe-to-shell install; child_process exec · OpenHands-OpenHands-0d15c5e/__tests__/scripts/dev-safe.test.ts (CWE-494)risk surface
•Suspicious code patterns — destructive rm -rf / · OpenHands-OpenHands-0d15c5e/docker/Dockerfile (CWE-78)risk surface
•Suspicious code patterns — bash reverse shell (/dev/tcp) · OpenHands-OpenHands-0d15c5e/docker/entrypoint.sh (CWE-78)risk surface
•Suspicious code patterns — pipe-to-shell install; OS command execution · OpenHands-OpenHands-0d15c5e/docs/DefenseClaw.md (CWE-494)risk surface
•Suspicious code patterns — dynamic code execution · OpenHands-OpenHands-0d15c5e/scripts/check-translation-completeness.cjs (CWE-95)risk surface
•Suspicious code patterns — child_process exec; environment/secret exfiltration · OpenHands-OpenHands-0d15c5e/scripts/download-uv.mjs (CWE-78)risk surface
⚠ML02Data Poisoninghigh
Poisoned training datasets with triggers or anomalous distributions.
Static check covers trigger phrasing, PII and label skew; full poisoning detection is runtime.
•Prompt-injection phrasing — instruction-subversion language detected · OpenHands-OpenHands-0d15c5e/__tests__/components/conversation-events/chat/event-message-components/skill-item-expanded.test.ts (CWE-77)risk surface
⚠ML06AI Supply Chainhigh
Compromised PyPI/npm packages, typosquats, unsafe serialized models.
•Dependency manifest — 97 npm dependencies declared · OpenHands-OpenHands-0d15c5e/package.jsonrisk surface
•npm install-lifecycle script — postinstall run on install — executes arbitrary code · OpenHands-OpenHands-0d15c5e/package.json (CWE-506)risk surface
•Vulnerable dependencies — 4 known vulnerabilities in: dompurify@3.4.12, electron@42.3.3, extract-zip@2.0.1, nanoid@3.3.17 (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.
✓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 (34) · hygiene / uncategorized
•Unrecognized file type — '.dockerignore' is not on the allowlist · OpenHands-OpenHands-0d15c5e/.dockerignorerisk surface
•Unrecognized file type — '.sample' is not on the allowlist · OpenHands-OpenHands-0d15c5e/.env.samplerisk surface
•Suspicious network references — raw IP URL (2 URLs) · OpenHands-OpenHands-0d15c5e/.env.samplerisk surface
•Unrecognized file type — '.gitattributes' is not on the allowlist · OpenHands-OpenHands-0d15c5e/.gitattributesrisk surface
•Unrecognized file type — '.mjs' is not on the allowlist · OpenHands-OpenHands-0d15c5e/.github/scripts/post-readiness-comment.mjsrisk surface
•Suspicious network references — raw IP URL (4 URLs) · OpenHands-OpenHands-0d15c5e/.github/workflows/mock-llm-docker-e2e.ymlrisk surface
•Suspicious network references — raw IP URL (3 URLs) · OpenHands-OpenHands-0d15c5e/.github/workflows/mock-llm-e2e.ymlrisk surface
•Unrecognized file type — '.gitignore' is not on the allowlist · OpenHands-OpenHands-0d15c5e/.gitignorerisk surface
•Unrecognized file type — '.?' is not on the allowlist · OpenHands-OpenHands-0d15c5e/.husky/pre-commitrisk surface
•Unrecognized file type — '.npmignore' is not on the allowlist · OpenHands-OpenHands-0d15c5e/.npmignorerisk surface
•Suspicious network references — raw IP URL (27 URLs) · OpenHands-OpenHands-0d15c5e/AGENTS.mdrisk surface
•Suspicious network references — raw IP URL (28 URLs) · OpenHands-OpenHands-0d15c5e/__tests__/api/agent-server-adapter.test.tsrisk surface
•Suspicious network references — raw IP URL (34 URLs) · OpenHands-OpenHands-0d15c5e/__tests__/api/agent-server-config.test.tsrisk surface
•Suspicious network references — raw IP URL (16 URLs) · OpenHands-OpenHands-0d15c5e/__tests__/api/backend-registry/storage.test.tsrisk surface
•Suspicious network references — raw IP URL (5 URLs) · OpenHands-OpenHands-0d15c5e/__tests__/api/conversation-file-upload.test.tsrisk surface
•Suspicious network references — raw IP URL (11 URLs) · OpenHands-OpenHands-0d15c5e/__tests__/api/device-flow-client.test.tsrisk surface
•Suspicious network references — raw IP URL (1 URLs) · OpenHands-OpenHands-0d15c5e/__tests__/api/secrets-service.test.tsrisk surface
•Suspicious network references — raw IP URL (15 URLs) · OpenHands-OpenHands-0d15c5e/__tests__/build-websocket-url.test.tsrisk surface
•Suspicious network references — raw IP URL (23 URLs) · OpenHands-OpenHands-0d15c5e/__tests__/root.test.tsxrisk surface
•Suspicious network references — raw IP URL (38 URLs) · OpenHands-OpenHands-0d15c5e/__tests__/scripts/dev-safe.test.tsrisk surface
•Suspicious network references — raw IP URL (22 URLs) · OpenHands-OpenHands-0d15c5e/__tests__/scripts/dev-with-automation.test.tsrisk surface
•Suspicious network references — raw IP URL (18 URLs) · OpenHands-OpenHands-0d15c5e/__tests__/scripts/runtime-services-info.test.tsrisk surface
•Suspicious network references — raw IP URL (17 URLs) · OpenHands-OpenHands-0d15c5e/__tests__/scripts/static-server.test.tsrisk surface
•Suspicious network references — raw IP URL (26 URLs) · OpenHands-OpenHands-0d15c5e/docker/entrypoint.shrisk surface
•Suspicious network references — raw IP URL (7 URLs) · OpenHands-OpenHands-0d15c5e/docs/SELF_HOSTING.mdrisk surface
•Suspicious network references — raw IP URL (10 URLs) · OpenHands-OpenHands-0d15c5e/electron/main.mjsrisk surface
•Unrecognized file type — '.cjs' is not on the allowlist · OpenHands-OpenHands-0d15c5e/electron/preload.cjsrisk surface
•Unrecognized file type — '.helmignore' is not on the allowlist · OpenHands-OpenHands-0d15c5e/helm/agent-canvas/.helmignorerisk surface
•Unrecognized file type — '.tpl' is not on the allowlist · OpenHands-OpenHands-0d15c5e/helm/agent-canvas/templates/_helpers.tplrisk surface
•Suspicious network references — raw IP URL (8 URLs) · OpenHands-OpenHands-0d15c5e/playwright.mock-llm-docker.config.tsrisk surface
•Unrecognized file type — '.webmanifest' is not on the allowlist · OpenHands-OpenHands-0d15c5e/public/site.webmanifestrisk surface
•Suspicious network references — raw IP URL (30 URLs) · OpenHands-OpenHands-0d15c5e/scripts/dev-static.mjsrisk surface
•Suspicious network references — raw IP URL (12 URLs) · OpenHands-OpenHands-0d15c5e/src/api/mcp-service/mcp-service.api.test.tsrisk surface
•Opaque binary content — non-text payload not statically analyzable · OpenHands-OpenHands-0d15c5e/src/components/features/plugins/plugin-spec-identity.tsrisk surface
✔ verified source · pinned OpenHands-OpenHands-0d15c5e · changed since last scan (-7 pts) · +egress youtube.com
Check against a policy

The same gate an agent runs before installing (POST /api/v1/trust/openhands-ai-software-engineer/check). Click a policy:

Consume OpenHands 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/openhands-ai-software-engineer

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

# CLI
npx ai-supply add openhands-ai-software-engineer

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

# MCP tool
install_listing({ "slug": "openhands-ai-software-engineer" })
OpenAPI spec →
vlatest
! Security: Review · 882mo 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 स्पेसिफिकेशन
बिल्डर्स के लिए
  • प्रकाशित करें
  • डैशबोर्ड
खाता
  • खाता बनाएँ
  • साइन इन
  • सेटिंग्स
कानूनी
  • नियम व शर्तें
  • प्रकाशक अनुबंध
  • स्वीकार्य उपयोग नीति
  • गोपनीयता