View system configuration settings (read-only). Configuration is loaded from your profile and cannot be modified at runtime.
Understanding Configuration
SystemPrompt configuration follows a 5-stage bootstrap sequence:
ProfileBootstrap → SecretsBootstrap → CredentialsBootstrap → Config → AppContext
See the Bootstrap Sequence Playbook for details.
Configuration Overview
View all configuration settings:
{ "command": "admin config show" }
Configuration Domains
Server Configuration
{ "command": "admin config server show" }
Shows:
- Host and port binding
- API URLs (server, internal, external)
- CORS allowed origins
- HTTPS settings
See Server Configuration Playbook for details.
Security Configuration
{ "command": "admin config security show" }
Shows:
- JWT issuer
- Token expiration times
- Allowed audiences
See Security Configuration Playbook for details.
Paths Configuration
{ "command": "admin config paths show" }
Shows:
- System, services, bin paths
- Web path
- Storage and GeoIP paths
See Paths Configuration Playbook for details.
Runtime Configuration
{ "command": "admin config runtime show" }
Shows:
- Environment type
- Log level
- Output format
- Interactive mode settings
See Runtime Configuration Playbook for details.
Rate Limits
{ "command": "admin config rate-limits show" }
{ "command": "admin config rate-limits list" }
Shows:
- Per-endpoint rate limits
- Burst multiplier
- Tier multipliers
See Rate Limits Playbook for details.
Profile Management
Configuration comes from profiles. To manage profiles:
{ "command": "cloud profile list" }
{ "command": "cloud profile show" }
{ "command": "cloud profile show <profile-name>" }
See Cloud Management Playbook for profile commands.
Troubleshooting
Check current settings
{ "command": "admin config show" }
Verify paths exist
{ "command": "admin config paths show" }
Check rate limits
{ "command": "admin config rate-limits show" }
View active profile
{ "command": "admin session show" }
Related Playbooks
| Playbook | Purpose |
|---|---|
| Bootstrap Sequence | 5-stage initialization sequence |
| Profile Configuration | Profile struct and validation |
| Secrets Management | Secrets loading and validation |
| Server Configuration | Server and CORS settings |
| Security Configuration | JWT and authentication |
| Paths Configuration | Directory layout |
| Runtime Configuration | Environment and logging |
| Rate Limits | API throttling |
Quick Reference
| Task | Command |
|---|---|
| Config overview | admin config show |
| Server config | admin config server show |
| Security config | admin config security show |
| Paths config | admin config paths show |
| Runtime config | admin config runtime show |
| Rate limits | admin config rate-limits show |
| List profiles | cloud profile list |
| Show profile | cloud profile show |
| Active session | admin session show |