Skip to content

config list: missing last edit date and author in output #39

Description

@AndreHeller

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"
}

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions