@obsfx/trekker 1.2.2 → 1.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +48 -0
- package/dist/index.js +1386 -12
- package/package.json +2 -1
package/README.md
CHANGED
|
@@ -83,6 +83,7 @@ trekker epic create -t <title> [-d <desc>] [-p <0-5>] [-s <status>]
|
|
|
83
83
|
trekker epic list [--status <status>]
|
|
84
84
|
trekker epic show <epic-id>
|
|
85
85
|
trekker epic update <epic-id> [options]
|
|
86
|
+
trekker epic complete <epic-id> # Complete epic and archive all tasks/subtasks
|
|
86
87
|
trekker epic delete <epic-id>
|
|
87
88
|
```
|
|
88
89
|
|
|
@@ -122,6 +123,53 @@ trekker dep remove <task-id> <depends-on-id>
|
|
|
122
123
|
trekker dep list <task-id>
|
|
123
124
|
```
|
|
124
125
|
|
|
126
|
+
### Search
|
|
127
|
+
|
|
128
|
+
Full-text search across epics, tasks, subtasks, and comments using FTS5:
|
|
129
|
+
|
|
130
|
+
```bash
|
|
131
|
+
trekker search <query> [--type <types>] [--status <status>] [--limit <n>] [--page <n>]
|
|
132
|
+
```
|
|
133
|
+
|
|
134
|
+
Examples:
|
|
135
|
+
```bash
|
|
136
|
+
trekker search "authentication" # Search all entities
|
|
137
|
+
trekker search "bug fix" --type task,subtask # Search only tasks and subtasks
|
|
138
|
+
trekker search "login" --type comment --status completed # Search comments in completed items
|
|
139
|
+
```
|
|
140
|
+
|
|
141
|
+
### History
|
|
142
|
+
|
|
143
|
+
View audit log of all changes (creates, updates, deletes):
|
|
144
|
+
|
|
145
|
+
```bash
|
|
146
|
+
trekker history [--entity <id>] [--type <types>] [--action <actions>] [--since <date>] [--until <date>]
|
|
147
|
+
```
|
|
148
|
+
|
|
149
|
+
Examples:
|
|
150
|
+
```bash
|
|
151
|
+
trekker history # All events
|
|
152
|
+
trekker history --entity TREK-1 # Events for specific entity
|
|
153
|
+
trekker history --type task --action update # Only task updates
|
|
154
|
+
trekker history --since 2025-01-01 --limit 20 # Events after date
|
|
155
|
+
```
|
|
156
|
+
|
|
157
|
+
### List
|
|
158
|
+
|
|
159
|
+
Unified view of all epics, tasks, and subtasks:
|
|
160
|
+
|
|
161
|
+
```bash
|
|
162
|
+
trekker list [--type <types>] [--status <statuses>] [--priority <levels>] [--sort <fields>]
|
|
163
|
+
```
|
|
164
|
+
|
|
165
|
+
Examples:
|
|
166
|
+
```bash
|
|
167
|
+
trekker list # All items, newest first
|
|
168
|
+
trekker list --type task --status in_progress # Active tasks only
|
|
169
|
+
trekker list --priority 0,1 --sort priority:asc # Critical/high priority first
|
|
170
|
+
trekker list --sort title:asc,created:desc # Sort by title, then by date
|
|
171
|
+
```
|
|
172
|
+
|
|
125
173
|
### Web Interface
|
|
126
174
|
|
|
127
175
|
For a visual kanban board, install the separate dashboard package:
|