Scan Report
10 /100
openai-agent-sdk
Build multi-agent AI systems with OpenAI Agents SDK. Create, orchestrate, and manage AI agents with tools, handoffs, guardrails, and tracing.
This skill is a pure documentation package for the OpenAI Agents SDK containing only example code and templates — no malicious behavior, no runtime code, and no exfiltration mechanisms.
Safe to install
Safe to use. The skill declares no filesystem, network, shell, or credential access. Users should be aware that `eval()` in the example calculator tool is intentionally exposed for demonstration purposes only.
Findings 2 items
| Severity | Finding | Location |
|---|---|---|
| Low | API key placeholder strings in documentation | SKILL.md:174 |
| Low | eval() usage in example calculator tool | examples/tools_example.py:30 |
| Resource | Declared | Inferred | Status | Evidence |
|---|---|---|---|---|
| Filesystem | NONE | NONE | — | No file read/write operations in any file |
| Network | NONE | NONE | — | No HTTP requests or network calls; external URLs are only in documentation links |
| Shell | NONE | NONE | — | No subprocess, os.system, or shell execution calls |
| Environment | NONE | NONE | — | No os.environ access or credential enumeration |
| Skill Invoke | NONE | NONE | — | No cross-skill invocation code |
| Clipboard | NONE | NONE | — | No clipboard access |
| Browser | NONE | NONE | — | No browser automation |
| Database | NONE | NONE | — | No database connections |
2 High 3 findings
High API Key 疑似硬编码凭证
API_KEY="sk-your-api-key-here" SKILL.md:174 High API Key 疑似硬编码凭证
api_key="your-anthropic-key" SKILL.md:279 Medium External URL 外部 URL
https://openai.github.io/openai-agents-python/ README.md:54 File Tree
7 files · 22.2 KB · 962 lines Markdown 2f · 664L
Python 5f · 298L
├─
▾
examples
│ ├─
basic_agent.py
Python
│ ├─
handoffs_example.py
Python
│ └─
tools_example.py
Python
├─
▾
templates
│ ├─
agent_template.py
Python
│ └─
multi_agent_template.py
Python
├─
README.md
Markdown
└─
SKILL.md
Markdown
Dependencies 1 items
| Package | Version | Source | Known Vulns | Notes |
|---|---|---|---|---|
openai-agents | >=0.1.0 | pip | No | No pinned upper bound; should pin to a specific version in production |
Security Positives
✓ No filesystem access or file operations of any kind
✓ No network requests, IP connections, or data exfiltration
✓ No shell execution, subprocess, or command injection vectors
✓ No credential harvesting or environment variable enumeration
✓ No hidden functionality — all code is either documented examples or templates
✓ No suspicious encoding patterns (base64, hex, rot13)
✓ No download-and-execute patterns (curl|bash, wget|sh)
✓ No .env files, SSH keys, or sensitive path access
✓ Skill declares no permissions — aligns with actual implementation
✓ All external URLs are legitimate documentation links to openai.github.io and github.com