Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion index.json
Original file line number Diff line number Diff line change
Expand Up @@ -357,6 +357,7 @@
"@kudo-dev/plugin-kudo": "github:Kudo-Archi/plugin-kudo",
"@mascotai/plugin-connections": "github:mascotai/plugin-connections",
"@mazzz/plugin-elizaos-compchembridge": "github:Mazzz-zzz/plugin-elizaos-compchembridge",
"@moltraffle/elizaos-plugin": "github:Hizarcu/elizaos-plugin-moltraffle",
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🔴 Critical

🧩 Analysis chain

🏁 Script executed:

#!/bin/bash
# Verify GitHub repository exists and npm package is published

echo "=== Checking GitHub repository ==="
gh repo view Hizarcu/elizaos-plugin-moltraffle --json name,description,url,createdAt,pushedAt,isArchived,visibility

echo -e "\n=== Checking npm package ==="
npm view `@moltraffle/elizaos-plugin` name version description repository homepage

echo -e "\n=== Checking for security advisories ==="
npm audit --package-lock-only --registry=https://registry.npmjs.org `@moltraffle/elizaos-plugin` 2>&1 || echo "Note: Full audit requires package installation"

Repository: elizaos-plugins/registry

Length of output: 580


🏁 Script executed:

#!/bin/bash
# Check if the referenced repository exists and clarify the discrepancy

echo "=== Checking if referenced GitHub repo exists (via curl) ==="
curl -s -I https://github.com/Hizarcu/elizaos-plugin-moltraffle 2>&1 | head -1

echo -e "\n=== Checking npm package registry info in detail ==="
npm view `@moltraffle/elizaos-plugin` --json 2>&1 | python3 << 'PYTHON'
import json, sys
try:
    data = json.load(sys.stdin)
    print(f"Package: {data.get('name')}")
    print(f"Version: {data.get('version')}")
    repo = data.get('repository', {})
    if isinstance(repo, dict):
        print(f"Repository URL: {repo.get('url')}")
    else:
        print(f"Repository: {repo}")
except Exception as e:
    print(f"Error: {e}")
PYTHON

echo -e "\n=== Verifying against index.json entry ==="
echo "index.json references: github:Hizarcu/elizaos-plugin-moltraffle"
echo "npm registry lists repo: (see above)"

Repository: elizaos-plugins/registry

Length of output: 389


🏁 Script executed:

#!/bin/bash
# Verify the actual entry in index.json
echo "=== Content around line 360 in index.json ==="
sed -n '355,365p' index.json

echo -e "\n=== Also check for any other moltraffle or Hizarcu entries ==="
grep -n "moltraffle\|Hizarcu" index.json

Repository: elizaos-plugins/registry

Length of output: 1059


Resolve repository URL mismatch before merging.

The entry format and alphabetical ordering are correct, but there is a critical discrepancy: index.json references github:Hizarcu/elizaos-plugin-moltraffle, however the published npm package (@moltraffle/[email protected]) lists its repository as https://github.com/Hizarcu/moltraffle-mainnet.git.

These are two different repositories. Confirm which repository is the authoritative source for this plugin and update the index.json entry accordingly to match the npm package metadata.

🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In `@index.json` at line 360, The index.json entry for
"@moltraffle/elizaos-plugin" points to
"github:Hizarcu/elizaos-plugin-moltraffle" but the published package metadata
shows repository "https://github.com/Hizarcu/moltraffle-mainnet.git"; confirm
which repo is authoritative (check the npm package
`@moltraffle/elizaos-plugin`@0.1.1 and the upstream GitHub org), then update the
value for the "@moltraffle/elizaos-plugin" entry to the correct repository
identifier/URL to match the npm package metadata (or change the npm metadata if
the GitHub repo is correct), ensuring the string in index.json equals the
confirmed repository.

"@nuggetslife/plugin-nuggets": "github:NuggetsLtd/eliza-plugin-nuggets",
"@onbonsai/plugin-bonsai": "github:onbonsai/plugin-bonsai",
"@proofgate/eliza-plugin": "github:ProofGate/proofgate-eliza-plugin",
Expand All @@ -370,4 +371,4 @@
"plugin-moltbazaar": "github:10inchdev/plugin-moltbazaar",
"plugin-octav": "github:wpoulin/plugin-octav",
"plugin-otaku-x402": "github:otaku-x402/elizaos-plugin-otaku-x402"
}
}