list_group_packages
Display all packages within a specific Arch Linux package group such as 'base-devel' or 'gnome' to review available software components.
Instructions
List all packages in a specific group. Only works on Arch Linux.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| group_name | Yes | Name of the package group (e.g., 'base-devel', 'gnome') |
Input Schema (JSON Schema)
{
"properties": {
"group_name": {
"description": "Name of the package group (e.g., 'base-devel', 'gnome')",
"type": "string"
}
},
"required": [
"group_name"
],
"type": "object"
}