Trust signals
Why this verdict
PkgRadar discounts a release’s score when public reputation argues against novel malware. The verdict above already reflects these — the panel just explains what was applied.
- Versions published
- 1
- First published
- Jan 2026
- Publisher
- shawticus
Recommended action
Review before promotingMixed signals: the package has indicators worth reading before allowing the update in automated dependency flows.
Block this release in CIcurl · GitHub Actions
Fail the build when this package version is added or upgraded. Replace $PKGRADAR_TOKEN with a Pro / Team API key from your dashboard.
curl -fsS https://pkgradar.com/gate/npm \
-H "Authorization: Bearer $PKGRADAR_TOKEN" \
-H "Content-Type: application/json" \
-d '{"specs":["@elizaos/[email protected]"],"fail_on":"review"}'GitHub Actions step:
- name: PkgRadar gate
run: |
curl -fsS https://pkgradar.com/gate/npm \
-H "Authorization: Bearer ${{ secrets.PKGRADAR_TOKEN }}" \
-H "Content-Type: application/json" \
-d '{"specs":["@elizaos/[email protected]"],"fail_on":"review"}'Why flagged
What the scanner saw
Credential file access: matched "AWS_ACCESS_KEY"
Not observed: package install, lifecycle script execution, or sandbox execution. PkgRadar only inspects on-disk artifacts.
Availability ledger
available
Status history (1 event)
- new → available · risk review · score 28 · status changed
Evidence
Static findings
5 static · 0 from release diff · showing high-signal first.
| Severity | Kind | Path | Detail | Points |
|---|---|---|---|---|
| medium | Credential file access | package/python/elizaos_plugin_s3_storage/plugin.py | matched "AWS_ACCESS_KEY" | 10 |
Show all 5 findings (low-signal and informational)
| Severity | Kind | Path | Detail | Points |
|---|---|---|---|---|
| medium | Credential file access | package/python/elizaos_plugin_s3_storage/plugin.py | matched "AWS_ACCESS_KEY" | 10 |
| low | Credential file access | package/typescript/dist/cjs/index.node.cjs | matched "AWS_ACCESS_KEY" | 5 |
| low | Credential file access | package/typescript/dist/node/index.node.js | matched "AWS_ACCESS_KEY" | 5 |
| low | Credential file access | package/python/elizaos_plugin_s3_storage/client.py | matched "aws_access_key" | 5 |
| low | Credential file access | package/package.json | matched "AWS_ACCESS_KEY" | 3 |
Manifest
Package metadata
Scripts16
buildbun run build:ts && bun run build:rust && bun run build:pythonbuild:pythontest -d python && cd python && (python3 -m build 2>/dev/null || pyproject-build) || echo 'Python build skipped - no python directory'build:rusttest -d rust && cd rust && cargo build --release || echo 'Rust build skipped - no rust directory'build:tscd typescript && bun run build.tscleanrm -rf typescript/dist python/dist rust/target .turbo node_modulesdevcd typescript && bun --hot build.tslintbunx @biomejs/biome check --write ./typescriptlint:checkbunx @biomejs/biome check ./typescriptlint:pythontest -d python && cd python && ruff check --fix . && ruff format . || echo 'Python lint skipped'lint:python:fixtest -d python && cd python && ruff check --fix . && ruff format . || echo 'Python lint fix skipped'lint:rusttest -d rust && cd rust && cargo clippy --all-targets --fix --allow-dirty --allow-staged -- -D warnings && cargo fmt || echo 'Rust lint skipped'testbun run test:ts && bun run test:rust && bun run test:pythontest:pythontest -d python && cd python && pip install -e '.[dev]' --quiet && pytest -p no:anchorpy --asyncio-mode=auto || echo 'Python tests skipped'test:rusttest -d rust && cd rust && cargo test || echo 'Rust tests skipped'test:tscd typescript && vitest run || echo 'TypeScript tests skipped - no tests found'typechecktsc --noEmit -p typescript/tsconfig.json