Problem
kbagent config list returns only config_id, config_name, config_description, component_id, and component_name. It does not include:
- Last edited date (
currentVersion.created)
- Last editor (
currentVersion.creatorToken.description)
This information is available in the Storage API response but is stripped from the kbagent output.
Impact on AI agents
Without edit date and author, an AI agent cannot:
- Identify stale/abandoned configurations
- Attribute ownership of configurations
- Make informed decisions about what is safe to delete or modify
Workaround used
Direct Storage API call:
GET /v2/storage/components/{component_id}/configs
# Response includes:
cfg['currentVersion']['created'] # last edit date
cfg['currentVersion']['creatorToken']['description'] # last editor email
Expected behavior
kbagent config list output should include:
{
"config_id": "1239541872",
"config_name": "USERS_WEEKLY",
"last_modified": "2025-06-18T10:00:00+00:00",
"last_modified_by": "nikita.garbovskii@slevomat.cz"
}
Problem
kbagent config listreturns onlyconfig_id,config_name,config_description,component_id, andcomponent_name. It does not include:currentVersion.created)currentVersion.creatorToken.description)This information is available in the Storage API response but is stripped from the kbagent output.
Impact on AI agents
Without edit date and author, an AI agent cannot:
Workaround used
Direct Storage API call:
Expected behavior
kbagent config listoutput should include:{ "config_id": "1239541872", "config_name": "USERS_WEEKLY", "last_modified": "2025-06-18T10:00:00+00:00", "last_modified_by": "nikita.garbovskii@slevomat.cz" }