Add AdaL CLI as a supported platform - #617
Open
chindris-mihai-alexandru wants to merge 3 commits into
Open
Conversation
- Add adal to install.sh platforms table (~/.adal/skills, per-skill) - Add adal to install.ps1 platforms table (~/.adal/skills, per-skill) - Add AdaL section to README.md with install instructions - Add AdaL to platform compatibility table - Add AdaL to supported platforms list - Add AdaL tip in install.sh and install.ps1 cmd_install functions - Update all 7 translated READMEs (es-ES, ja-JP, ko-KR, ru-RU, tr-TR, zh-CN, zh-TW)
Author
|
This PR adds AdaL CLI as a supported platform. See also issue #616 for the feature request discussion. |
There was a problem hiding this comment.
Pull request overview
Adds AdaL CLI as a first-class supported platform by extending the cross-platform installers and updating the main + translated READMEs so users can install and discover skills in ~/.adal/skills/.
Changes:
- Added
adalto the platform tables ininstall.shandinstall.ps1(per-skill symlink style targeting~/.adal/skills/). - Documented AdaL CLI in
README.md(one-line install list, supported platform values, dedicated AdaL section, compatibility table row). - Updated all 7 translated READMEs to include AdaL in the platform compatibility tables.
Reviewed changes
Copilot reviewed 10 out of 10 changed files in this pull request and generated 2 comments.
Show a summary per file
| File | Description |
|---|---|
| README.md | Documents AdaL CLI installation and adds it to platform lists/tables. |
| install.sh | Adds adal platform mapping and prints an AdaL-specific post-install tip. |
| install.ps1 | Adds adal platform mapping and prints an AdaL-specific post-install tip. |
| READMEs/README.zh-TW.md | Adds AdaL CLI row to the platform compatibility table. |
| READMEs/README.zh-CN.md | Adds AdaL CLI row to the platform compatibility table. |
| READMEs/README.tr-TR.md | Adds AdaL CLI row to the platform compatibility table. |
| READMEs/README.ru-RU.md | Adds AdaL CLI row to the platform compatibility table. |
| READMEs/README.ko-KR.md | Adds AdaL CLI row to the platform compatibility table. |
| READMEs/README.ja-JP.md | Adds AdaL CLI row to the platform compatibility table. |
| READMEs/README.es-ES.md | Adds AdaL CLI row to the platform compatibility table. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Comment on lines
+236
to
+238
| if [[ "$id" == "adal" ]]; then | ||
| printf '\n Tip: AdaL uses /plugin commands — install with /plugin marketplace add Egonex-AI/Understand-Anything and /plugin install understand-anything, or use the install.sh script above.\n' | ||
| fi |
Comment on lines
+249
to
+251
| if ($Id -eq 'adal') { | ||
| Write-Host "`n Tip: AdaL uses /plugin commands — install with /plugin marketplace add Egonex-AI/Understand-Anything and /plugin install understand-anything, or use the install.ps1 above." | ||
| } |
- Replace hardcoded LAYER_ORDER with dynamic derivation from graph.layers array position (index 0 = top, index N = bottom) - Eliminates DRY violation and silent failure for unknown layer IDs - Fix stale comment: '(sorted)' → '(architectural order)' - Add 8 tests for aggregateLayerEdges and computePortals (14 total)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Adds AdaL CLI (https://adalagent.ai/) as a supported platform to the install scripts and README.
Changes:
AdaL CLI uses the same /plugin command system as Claude Code and reads skills from ~/.adal/skills/ (personal) or .adal/skills/ (project-level). The per-skill symlink style is compatible with AdaL's skill discovery mechanism.