Merged
Conversation
…ad, file-info, file-delete, file-tag, load-file, unload-table) Add 8 new CLI commands for direct Storage Files API access: - file-list: list files with tag filtering (AND logic) - file-upload: upload with tags and --permanent flag - file-download: download by file ID or by tags (latest matching) - file-info: show file metadata without downloading - file-delete: batch delete with dry-run support - file-tag: add/remove tags in a single operation - load-file: import an already-uploaded file into a table - unload-table: export table to Storage File with optional download Closes #134
Azure manifest entries use azure://host/container/blob URLs. The previous code didn't handle Azure provider in _CloudDownloader, causing UnsupportedProtocol errors on sliced file downloads. Fix: replace azure:// with https:// and append SAS token from absCredentials.
- Add rich_help_panel to group storage commands into Buckets/Tables/Files sections in `kbagent storage --help` output - Add Storage Files section to AGENT_CONTEXT (kbagent context) with all 8 new file commands documented - Regenerate SKILL.md via make skill-gen (74 commands)
- Rename file-list -> files (matches buckets, tables) - Rename file-info -> file-detail (matches bucket-detail, table-detail) - Group commands with rich_help_panel: Buckets, Tables, Files - Sort commands consistently: list, detail, create, upload/download, tag, delete - Update permissions, context, CLAUDE.md, tests, SKILL.md
Add references/storage-files-workflow.md with step-by-step workflows: upload with tags, list/filter by tags, download by ID or tag, tag management, load-file into table, unload-table to file. Includes typical patterns for CI/CD artifacts and data exchange.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
--permanentflagImplementation
list_files,upload_file,delete_file,tag_file,untag_file+ extendedprepare_file_uploadwith tags/permanent paramsStorageServicewith standard project resolution and error handlingTest plan
make check(lint + format + tests) - all 1517 tests passfile-upload+file-list+file-download+file-tag+load-file+unload-table+file-deleteagainst all 3 providers (AWS, GCP, Azure)Closes #134