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
25 changes: 25 additions & 0 deletions wisdm-2.5.0/metadata.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
<?xml version="1.0" encoding="utf-8"?>
<package
name="wisdm"
version="2.5.0"
description="Workbench for Integrated Species Distribution Modeling"
url="https://apexrms.github.io/wisdm/"
location="https://github.com/ApexRMS/wisdm/releases/download/2.5.0/wisdm-2-5-0.ssimpkg">
Comment on lines +1 to +7
Copy link

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:

# First, let's locate and read the actual metadata.xml file
find . -name "metadata.xml" -type f 2>/dev/null | head -20

Repository: syncrosim/packages.v3

Length of output: 774


🏁 Script executed:

# Verify the GitHub release URL
curl -sI "https://github.com/ApexRMS/wisdm/releases/download/2.5.0/wisdm-2-5-0.ssimpkg" 2>&1 | head -20

Repository: syncrosim/packages.v3

Length of output: 760


🏁 Script executed:

# Also check for the file path mentioned in the review
if [ -f "wisdm-2.5.0/metadata.xml" ]; then
  cat "wisdm-2.5.0/metadata.xml"
else
  echo "File not found at wisdm-2.5.0/metadata.xml"
fi

Repository: syncrosim/packages.v3

Length of output: 1291


Package location URL is inaccessible (404 Not Found).

The GitHub release URL returns an HTTP 404 error, indicating the package file does not exist at the specified location. This must be resolved before the metadata can be used. The URL points to: https://github.com/ApexRMS/wisdm/releases/download/2.5.0/wisdm-2-5-0.ssimpkg

The XML structure itself is well-formed with consistent version numbering (2.5.0), and the onlineLibrary references are properly configured with S3 URLs. However, the broken package location URL prevents installation.

🤖 Prompt for AI Agents
In `@wisdm-2.5.0/metadata.xml` around lines 1 - 7, The package location URL in the
<package> element (attributes name="wisdm" version="2.5.0" location="...") is
returning 404; update the location attribute to a valid, reachable release asset
URL (or re-upload the wisdm-2-5-0.ssimpkg to that GitHub release) so the file at
the URL resolves with HTTP 200, then verify the URL and version
(version="2.5.0") match the actual release asset name and encoding;
alternatively replace the location with a working hosted URL (e.g., the correct
GitHub release asset path or an S3 URL) and confirm the package installs.


<onlineLibrary
name="wisdm-example"
displayName="WISDM Example"
description="Example library for modeling Brewer's Sparrow distribution in the Wyoming Basins, USA"
libraryLocation="https://s3.us-west-2.amazonaws.com/apexrms.com.syncrosim.templates/wisdm/v2.5.0/wisdm-example.ssimbak"
imageLocation="https://s3.us-west-2.amazonaws.com/apexrms.com.syncrosim.templates/wisdm/v2.5.0/wisdm-example.png">
</onlineLibrary>

<onlineLibrary
name="wisdm-maxent-example"
displayName="WISDM - Maxent Example"
description="Example library for modeling Brewer's and Vesper's Sparrow distributions in the Wyoming Basins, USA"
libraryLocation="https://s3.us-west-2.amazonaws.com/apexrms.com.syncrosim.templates/wisdm/v2.5.0/wisdm-maxent-example.ssimbak"
imageLocation="https://s3.us-west-2.amazonaws.com/apexrms.com.syncrosim.templates/wisdm/v2.5.0/wisdm-maxent-example.png">
</onlineLibrary>

</package>