feat: Sample Tag Editor — view and edit AKAI sample tags in web UI #8
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Feature: Sample Tag Editor
As a sample library organiser
I want to view and edit AKAI sample tags through the web UI
So that I can categorise and filter samples within a disk image without the akaiutil CLI
Acceptance Criteria
Scenario: View tags on a partition
Scenario: Tag a sample
Scenario: Clear all tags from a partition
Implementation
lstags(list),settagi <file-idx> <tag-idx>(tag),clrtagi <file-idx> <tag-idx>(untag),inittags(init)GET /api/volume/tags?iso=<path>&volume=<name>,POST /api/file/tag,POST /api/file/untagKarpathy Principle
Read-only view first (lstags is read-only). Write operations behind confirmation dialogs. Simple, safe, incremental.