-
Notifications
You must be signed in to change notification settings - Fork 4
Open
Description
Description
Several markdown documentation files contain incorrect or outdated information:
AI_BEST_PRACTICES.md
-
References wrong exception class — Line 13 uses
Illuminate\Http\Client\RequestExceptionbut the CLI uses Saloon, which throwsSaloon\Exceptions\Request\RequestException. The Illuminate class does not even exist in the vendor directory. -
References non-existent class — References
CloudClientthroughout, but the actual class isApp\Client\Connector. -
Wrong error handling pattern — Shows
$e->response->status()and$e->response->json()which is the Laravel HTTP client pattern. Saloon uses$e->getResponse()->status()and$e->getResponse()->json().
COMMANDS_SUMMARY.md
- Missing commands — Only lists a subset of the 87+ available commands
- Missing options — Many commands have options not documented
- Missing
application:createandapplication:delete— Key CRUD operations omitted
README.md
- Missing
application:deletefrom the Applications table environment:variablesdescription is misleading — Says "Replace env vars from a file" but the command supports append, set, and replace actions
Suggested fix
- Update AI_BEST_PRACTICES.md to use
Saloon\Exceptions\Request\RequestExceptionandConnectorclass - Either update COMMANDS_SUMMARY.md to be comprehensive or delete it (README already has a complete command reference)
- Fix the two README inaccuracies
Environment
- Cloud CLI: v0.1.14
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels