Declarative Configuration 
Gunshi allows you to configure your commands declaratively, making your CLI code more organized and maintainable. This approach separates the command definition from its execution logic.
Basic Declarative Structure 
A declaratively configured command in Gunshi typically has this structure:
js
const command = {
  // Command metadata
  name: 'command-name',
  description: 'Command description',
  // Command options
  options: {
    // Option definitions
  },
  // Command examples
  examples: 'Example usage',
  // Command execution function
  run: ctx => {
    // Command implementation
  }
}Complete Example 
Here's a complete example of a command with declarative configuration:
js
import { cli } from 'gunshi'
// Define a command with declarative configuration
const command = {
  // Command metadata
  name: 'greet',
  description: 'A greeting command with declarative configuration',
  // Command options with descriptions
  options: {
    name: {
      type: 'string',
      short: 'n',
      description: 'Name to greet'
    },
    greeting: {
      type: 'string',
      short: 'g',
      default: 'Hello',
      description: 'Greeting to use (default: "Hello")'
    },
    times: {
      type: 'number',
      short: 't',
      default: 1,
      description: 'Number of times to repeat the greeting (default: 1)'
    }
  },
  // Command examples
  examples:
    '# Examples\n$ node index.js --name World\n$ node index.js -n World -g "Hey there" -t 3',
  // Command execution function
  run: ctx => {
    const { name = 'World', greeting, times } = ctx.values
    // Repeat the greeting the specified number of times
    for (let i = 0; i < times; i++) {
      console.log(`${greeting}, ${name}!`)
    }
  }
}
// Run the command with the declarative configuration
await cli(process.argv.slice(2), command, {
  name: 'declarative-example',
  version: '1.0.0',
  description: 'Example of declarative command configuration'
})Command Configuration Options 
Command Metadata 
name: The name of the commanddescription: A description of what the command does
Command Options 
Each option can have the following properties:
type: The data type ('string', 'number', 'boolean')short: A single-character alias for the optiondescription: A description of what the option doesdefault: Default value if the option is not providedrequired: Set totrueif the option is required
Examples 
The examples property provides example commands showing how to use the CLI.
Command Execution 
The run function receives a command context object (ctx) with:
options: The command options configurationvalues: The resolved option values_: The raw arguments is passed fromclifunctionpositionals: Positional argumentsname: The command namedescription: The command descriptionenv: The command environment
CLI Configuration 
When calling the cli function, you can provide additional configuration:
js
await cli(process.argv.slice(2), command, {
  name: 'app-name',
  version: '1.0.0',
  description: 'Application description'
  // Additional configuration options
})Benefits of Declarative Configuration 
Using declarative configuration offers several advantages:
- Separation of concerns: Command definition is separate from implementation
 - Self-documentation: The structure clearly documents the command's capabilities
 - Maintainability: Easier to understand and modify
 - Consistency: Enforces a consistent structure across commands
 
