env_verify
Verify package installation commands to block unsafe operations by checking environment safety before execution.
Instructions
Mandatory before package installation. Blocks unsafe operations.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| command | Yes | Installation command to verify | |
| env_verified | Yes | Has environment been checked? |
Input Schema (JSON Schema)
{
"properties": {
"command": {
"description": "Installation command to verify",
"type": "string"
},
"env_verified": {
"description": "Has environment been checked?",
"type": "boolean"
}
},
"required": [
"command",
"env_verified"
],
"type": "object"
}