Kubiya LogoKubiya Developer Docs

Knowledge Commands

Managing Knowledge Sources using the Kubiya CLI.

Knowledge Commands (kubiya knowledge)

Manage the knowledge sources that provide context to your AI Teammates.

Manage Knowledge Sources

# List all configured knowledge sources
kubiya knowledge list
 
# Add a new knowledge source from a file or directory
# The content will be processed and indexed.
kubiya knowledge add --name "Service Architecture Docs" --content ./docs/architecture/
kubiya knowledge add --name "Runbook Procedures" --content ./runbooks/prod.md
 
# Get details about a specific knowledge source
kubiya knowledge get "Service Architecture Docs"
 
# Update an existing knowledge source
# This typically involves reprocessing the content.
kubiya knowledge update "Service Architecture Docs" --content ./updated-docs/architecture/
 
# Delete a knowledge source
kubiya knowledge delete "Service Architecture Docs"

On this page