Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion plugins/kbagent/.claude-plugin/plugin.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "kbagent",
"version": "0.8.0",
"version": "0.9.0",
"description": "AI-friendly interface to Keboola Connection projects — explore configs, jobs, lineage, call MCP tools, manage dev branches, and debug SQL in workspaces",
"author": {
"name": "Keboola",
Expand Down
2 changes: 1 addition & 1 deletion src/keboola_agent_cli/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""Keboola Agent CLI - AI-friendly interface to Keboola projects."""

__version__ = "0.8.0"
__version__ = "0.9.0"
15 changes: 15 additions & 0 deletions src/keboola_agent_cli/commands/context.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,9 @@
--project can be repeated to query multiple projects.
--component-type: extractor, writer, transformation, application
--component-id: specific component (e.g. keboola.ex-db-snowflake)
Output includes: last_modified, last_modified_by, last_change_description,
and folder (from KBC.configuration.folderName metadata -- useful for
distinguishing active vs archived transformations).
Examples:
kbagent --json config list
kbagent --json config list --project prod
Expand Down Expand Up @@ -198,6 +201,10 @@
--yes / -y Skip confirmation prompt.
--token-description Description prefix for created tokens (default: kbagent-cli).

Token names include owner identity resolved from the manage token:
"kbagent-cli [john.doe@company.com]" -- so multiple users on the same
project have uniquely identifiable tokens in the Keboola UI.

Examples:
kbagent org setup --org-id 123 --url https://connection.keboola.com --dry-run
kbagent --json org setup --org-id 123 --url https://connection.keboola.com
Expand Down Expand Up @@ -629,6 +636,14 @@
kbagent --json sync pull --project prod
# ... edit, push, then merge via PR + Keboola UI

18. Claude Code plugin -- teach Claude how to use kbagent automatically:
Install the kbagent skill as a Claude Code plugin:
claude install-plugin https://github.com/padak/keboola_agent_cli
After installation, Claude Code will automatically know when and how
to use kbagent commands (the skill triggers on Keboola-related tasks).
The plugin provides a decision table mapping goals to commands and
references for common workflows (workspace debugging, branch lifecycle).

## Exit Codes

0 Success
Expand Down
Loading