PkgRadar

Package evidence

@elizaos/[email protected]

Credential file access: matched "AWS_ACCESS_KEY"

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 promoting

Mixed 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"}'
Publishershawticus
Artifact bytes514,403
Previous versionnone
Published2026-01-21T22:21:31.481Z
SHA-256e4662846f6ea9178bf65f800aec52b221cb24bd4b5a7a086f8d7144147e1d5af

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

review
Last checked
reviewRisk
28Score
2.0.0-alpha.1Version
Status history (1 event)
  1. newavailable · risk review · score 28 · status changed

Evidence

Static findings

5 static · 0 from release diff · showing high-signal first.

SeverityKindPathDetailPoints
mediumCredential file accesspackage/python/elizaos_plugin_s3_storage/plugin.pymatched "AWS_ACCESS_KEY"10
Show all 5 findings (low-signal and informational)
SeverityKindPathDetailPoints
mediumCredential file accesspackage/python/elizaos_plugin_s3_storage/plugin.pymatched "AWS_ACCESS_KEY"10
lowCredential file accesspackage/typescript/dist/cjs/index.node.cjsmatched "AWS_ACCESS_KEY"5
lowCredential file accesspackage/typescript/dist/node/index.node.jsmatched "AWS_ACCESS_KEY"5
lowCredential file accesspackage/python/elizaos_plugin_s3_storage/client.pymatched "aws_access_key"5
lowCredential file accesspackage/package.jsonmatched "AWS_ACCESS_KEY"3

Manifest

Package metadata

Scripts16
  • buildbun run build:ts && bun run build:rust && bun run build:python
  • build: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.ts
  • cleanrm -rf typescript/dist python/dist rust/target .turbo node_modules
  • devcd typescript && bun --hot build.ts
  • lintbunx @biomejs/biome check --write ./typescript
  • lint:checkbunx @biomejs/biome check ./typescript
  • lint: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:python
  • test: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