Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 2 additions & 0 deletions pkgs/callumalpass/mdbase-lsp/pkg.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
packages:
- name: callumalpass/mdbase-lsp@v0.1.9
21 changes: 21 additions & 0 deletions pkgs/callumalpass/mdbase-lsp/registry.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# yaml-language-server: $schema=https://raw.githubusercontent.com/aquaproj/aqua/main/json-schema/registry.json
packages:
- type: github_release
repo_owner: callumalpass
repo_name: mdbase-lsp
version_constraint: "false"
version_overrides:
- version_constraint: "true"
asset: mdbase-lsp-{{.OS}}-{{.Arch}}.{{.Format}}
format: tar.gz
windows_arm_emulation: true
replacements:
amd64: x64
windows: win32
overrides:
- goos: windows
format: zip
supported_envs:
- darwin
- windows
- amd64
Comment on lines +18 to +21

Copy link
Copy Markdown

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
# Description: Check the latest release assets to verify supported platforms

gh api repos/callumalpass/mdbase-lsp/releases/latest --jq '.assets[].name' | sort

Repository: aquaproj/aqua-registry

Length of output: 226


🌐 Web query:

mdbase-lsp releases platforms supported assets

💡 Result:

mdbase-lsp releases: supported platforms + assets

Latest release: v0.1.9 (published 2026-03-03). [1]

Supported platforms (prebuilt binaries)

  • Linux x64 (linux-x64)
  • macOS x64 (Intel) (darwin-x64)
  • macOS arm64 (Apple Silicon) (darwin-arm64)
  • Windows x64 (win32-x64) [2]

Release assets (v0.1.9)

LSP server binaries

  • mdbase-lsp-linux-x64.tar.gz
  • mdbase-lsp-darwin-x64.tar.gz
  • mdbase-lsp-darwin-arm64.tar.gz
  • mdbase-lsp-win32-x64.zip [1]

VS Code extension packages (.vsix)

  • mdbase-linux-x64-0.1.0.vsix
  • mdbase-darwin-x64-0.1.0.vsix
  • mdbase-darwin-arm64-0.1.0.vsix
  • mdbase-win32-x64-0.1.0.vsix [1]

Source archives (auto-generated by GitHub)

  • tarball_url, zipball_url [1]

Sources: [1] [2]


🏁 Script executed:

#!/bin/bash
# Try to fetch releases information directly via HTTPS (public data doesn't require auth)
curl -s https://api.github.com/repos/callumalpass/mdbase-lsp/releases/latest | head -100

Repository: aquaproj/aqua-registry

Length of output: 345


🏁 Script executed:

#!/bin/bash
# Also check if there's local documentation in the registry about this package
find pkgs/callumalpass/mdbase-lsp -type f -name "*.yaml" -o -name "*.md" | xargs cat

Repository: aquaproj/aqua-registry

Length of output: 740


Add linux to supported_envs to match actual upstream releases.

The configuration currently specifies darwin, windows, and amd64, but upstream releases include Linux binaries (mdbase-lsp-linux-x64.tar.gz). Update supported_envs to include linux:

supported_envs:
  - darwin
  - linux
  - windows
  - amd64
🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In `@pkgs/callumalpass/mdbase-lsp/registry.yaml` around lines 18 - 21, The
registry entry's supported_envs list is missing "linux"; update the
supported_envs block in registry.yaml (the supported_envs array) to include
"linux" alongside "darwin", "windows", and "amd64" so it matches upstream
release artifacts (e.g., mdbase-lsp-linux-x64.tar.gz).

19 changes: 19 additions & 0 deletions registry.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading