Problem
The ohno create command does not have a --story option, making it impossible to assign a task to a story via the CLI.
Current options:
Usage: ohno create [options] <title>
Options:
-t, --type <type> Task type (feature, bug, chore, spike, test)
--description <desc> Task description
-e, --estimate <hours> Estimated hours
-h, --help display help for command
Expected Behavior
The CLI should support:
ohno create "My task" --story story-abc123
Similar to how ohno story create supports --epic <epic-id>.
Workaround
Currently the only way to assign tasks to stories is:
- Use the MCP tool
create_task with story_id parameter
- Directly update the database:
sqlite3 .ohno/tasks.db "UPDATE tasks SET story_id = 'story-xxx' WHERE id = 'task-xxx'"
Suggested Implementation
Add -s, --story <story-id> option to the create command.
Problem
The
ohno createcommand does not have a--storyoption, making it impossible to assign a task to a story via the CLI.Current options:
Expected Behavior
The CLI should support:
ohno create "My task" --story story-abc123Similar to how
ohno story createsupports--epic <epic-id>.Workaround
Currently the only way to assign tasks to stories is:
create_taskwithstory_idparametersqlite3 .ohno/tasks.db "UPDATE tasks SET story_id = 'story-xxx' WHERE id = 'task-xxx'"Suggested Implementation
Add
-s, --story <story-id>option to thecreatecommand.