-
Notifications
You must be signed in to change notification settings - Fork 2.3k
docs: add AdaL CLI installation instructions to README #1992
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -139,6 +139,25 @@ Add this to your Opencode configuration file. See [Opencode MCP docs](https://op | |||||
|
|
||||||
| </details> | ||||||
|
|
||||||
| <details> | ||||||
| <summary><b>Install in AdaL CLI</b></summary> | ||||||
|
|
||||||
| Run these commands directly within your AdaL session. See [AdaL CLI MCP docs](https://github.com/SylphAI-Inc/AdaL) for more info. | ||||||
|
||||||
| Run these commands directly within your AdaL session. See [AdaL CLI MCP docs](https://github.com/SylphAI-Inc/AdaL) for more info. | |
| Run one of the following commands directly within your AdaL session. See [AdaL CLI MCP docs](https://github.com/SylphAI-Inc/AdaL) for more info. |
Outdated
Copilot
AI
Feb 24, 2026
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The header format "CONTEXT7_API_KEY:YOUR_API_KEY" uses a colon without a space, which is inconsistent with other sections. In the Claude Code section (line 99), it uses "CONTEXT7_API_KEY: YOUR_API_KEY" with a space after the colon. Please use consistent header formatting across all sections.
| /mcp add context7 --transport http --url https://mcp.context7.com/mcp --header "CONTEXT7_API_KEY:YOUR_API_KEY" | |
| /mcp add context7 --transport http --url https://mcp.context7.com/mcp --header "CONTEXT7_API_KEY: YOUR_API_KEY" |
Outdated
Copilot
AI
Feb 24, 2026
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The documentation claims that --adal is a valid targeting option for ctx7 setup, but this flag is not implemented in the CLI code. The SetupAgent type in packages/cli/src/setup/agents.ts:5 only includes "claude", "cursor", and "opencode". The setup command in packages/cli/src/commands/setup.ts does not have an --adal option. Either remove the --adal reference from this line or implement the functionality in the CLI first.
| Authenticates via OAuth, generates an API key, and configures the MCP server and rule for your agents. Use `--cursor`, `--claude`, `--opencode`, or `--adal` to target a specific agent. | |
| Authenticates via OAuth, generates an API key, and configures the MCP server and rule for your agents. Use `--cursor`, `--claude`, or `--opencode` to target a specific agent. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The documentation link points to the general AdaL GitHub repository (https://github.com/SylphAI-Inc/AdaL) rather than specific MCP documentation. This is inconsistent with other sections which link to specific MCP documentation pages. For example, Claude Code links to https://code.claude.com/docs/en/mcp and Opencode links to https://opencode.ai/docs/mcp-servers. Please verify that AdaL has MCP-specific documentation and update the link accordingly, or use a more specific anchor within the repository.