Configuration
View and manage CLI configuration.
Commands
- sekuire config show — Display all configuration
- sekuire config get — Get specific value
- sekuire config set — Set configuration value
show
Display current CLI configuration.
bash
sekuire config showExample
Terminalbash
$ sekuire config show
⚙️ Sekuire Configuration:
📁 Authentication Config:
Location: /Users/dev/.sekuire/auth.json
Auth Method: API Key
Default Workspace: ws_abc123
📁 Project Config:
Location: ./sekuire.yml
Name: my-agent
Version: 0.1.0
Model: gpt-4get
Get a specific configuration value.
bash
sekuire config get <KEY>Available Keys
| Key | Description |
|---|---|
auth.method | Authentication method (api-key, token, none) |
device.fingerprint | Device fingerprint hash |
device.name | Device name |
device.os | Operating system |
workspace.id | Default workspace ID |
Examples
Get default workspacebash
$ sekuire config get workspace.id
ws_abc123Get auth methodbash
$ sekuire config get auth.method
api-keyGet device infobash
$ sekuire config get device.name
MacBook-Proset
Set a configuration value.
bash
sekuire config set <KEY> <VALUE>Writable Keys
| Key | Description |
|---|---|
workspace.id | Default workspace ID |
Example
Terminalbash
$ sekuire config set workspace.id ws_new_workspace
✅ Default workspace set to ws_new_workspaceConfiguration Files
Global Config
Located at ~/.sekuire/:
| File | Purpose |
|---|---|
auth.json | API key, workspace, device info |
secret.key | Private key (project-level) |
public.key | Public key (project-level) |
Project Config
Located in project root:
| File | Purpose |
|---|---|
sekuire.yml | Agent manifest (name, version, capabilities) |
.sekuire/ | Project-specific keys |