Release and Version History¶
x.y.z (Backlog)¶
Features and Improvements
Minor Improvements
Bugfixes
Miscellaneous
0.1.3 (2025-12-28)¶
Features and Improvements
Add automatic index rebuild on database errors in CLI layer
- All CLI commands now gracefully handle missing/corrupted database scenarios:
SQLite file doesn’t exist
.tixdirectory doesn’t existDatabase tables don’t exist (empty SQLite file)
Index out of sync with filesystem
Commands automatically rebuild index and retry once on
OperationalError
Architecture
Move all error recovery logic from
tix.pytocli.py(separation of concerns)Remove auto-rebuild from
Tix.get_story()andTix.get_task()methodsTixAPI is now pure - errors propagate to caller for explicit handlingCLI provides user-friendly auto-recovery via
_with_auto_rebuildwrapperAll 13 CLI commands wrapped with consistent error handling pattern
0.1.2 (2025-12-27)¶
Features and Improvements
Add
--statusfilter tosearch_storiesandsearch_tasksCLI commandsSupport comma-separated status values for filtering (e.g.,
--status "TODO,IN_PROGRESS")Add
--limitparameter to story and task query methodsAdd title encoding/decoding module (
title_codec) for robust folder name handlingTitle validation: only letters (a-z, A-Z), digits (0-9), and spaces allowed
Automatic title normalization: spaces → hyphens for folder names, hyphens → spaces for display
CLI Stability Improvements
Improve CLI error handling with human-friendly error messages
Fix status parameter parsing to handle both string and tuple inputs from fire
Support custom root directory via
--rootparameter for all CLI commandsBetter fault tolerance when folder titles are manually edited by humans
Graceful handling of invalid characters in folder names (decoded as spaces)
Documentation
Improve CLI docstrings with detailed parameter descriptions
Document output formats for
get_story,get_taskcommandsClarify search behavior: token-based matching (ANY token match)
Add examples for status filtering in docstrings
Testing
Add comprehensive CLI integration tests covering edge cases
Test recovery scenarios: deleted directories, corrupted database, manual edits
Add title codec tests with round-trip encoding/decoding verification
0.1.1 (2025-12-27)¶
Features and Improvements
Initial release of
shai_tix- file-based task management for AI agentsDual storage architecture: filesystem (source of truth) + SQLite index (cache)
Two-level hierarchy: Story (feature/epic) → Task (atomic work unit)
Human-readable markdown files with git-friendly storage
CLI interface (
shai-tix) designed for AI agent interaction
Core Functionality
Story CRUD operations:
create_story,get_story,update_story,delete_storyTask CRUD operations:
create_task,get_task,update_task,delete_taskSearch by title, date range, and ID range:
search_stories,search_tasksList operations:
list_stories,list_tasks,list_tasks_by_storyIndex management:
rebuild_index_dbfor syncing SQLite with filesystem
Storage Format
Stories stored in
.tix/stories/story-{date}-{id}-{title}/directoriesTasks stored under parent story in
tasks/task-{date}-{id}-{title}/directoriesEach entity has
metadata.json,description.md, and optionalreport.md