@obsfx/trekker 1.10.0 → 1.10.1
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 +19 -5
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -106,7 +106,7 @@ trekker quickstart # Show full documentation
|
|
|
106
106
|
|
|
107
107
|
```bash
|
|
108
108
|
trekker epic create -t <title> [-d <desc>] [-p <0-5>] [-s <status>]
|
|
109
|
-
trekker epic list [--status <status>]
|
|
109
|
+
trekker epic list [--status <status>] [--limit <n>] [--page <n>]
|
|
110
110
|
trekker epic show <epic-id>
|
|
111
111
|
trekker epic update <epic-id> [options]
|
|
112
112
|
trekker epic complete <epic-id> # Complete epic and archive all tasks/subtasks
|
|
@@ -117,7 +117,7 @@ trekker epic delete <epic-id>
|
|
|
117
117
|
|
|
118
118
|
```bash
|
|
119
119
|
trekker task create -t <title> [-d <desc>] [-p <0-5>] [-s <status>] [--tags <tags>] [-e <epic-id>]
|
|
120
|
-
trekker task list [--status <status>] [--epic <epic-id>]
|
|
120
|
+
trekker task list [--status <status>] [--epic <epic-id>] [--limit <n>] [--page <n>]
|
|
121
121
|
trekker task show <task-id>
|
|
122
122
|
trekker task update <task-id> [options]
|
|
123
123
|
trekker task delete <task-id>
|
|
@@ -127,7 +127,7 @@ trekker task delete <task-id>
|
|
|
127
127
|
|
|
128
128
|
```bash
|
|
129
129
|
trekker subtask create <parent-id> -t <title> [-d <desc>] [-p <0-5>] [-s <status>]
|
|
130
|
-
trekker subtask list <parent-id>
|
|
130
|
+
trekker subtask list <parent-id> [--limit <n>] [--page <n>]
|
|
131
131
|
trekker subtask update <subtask-id> [options]
|
|
132
132
|
trekker subtask delete <subtask-id>
|
|
133
133
|
```
|
|
@@ -136,7 +136,7 @@ trekker subtask delete <subtask-id>
|
|
|
136
136
|
|
|
137
137
|
```bash
|
|
138
138
|
trekker comment add <task-id> -a <author> -c <content>
|
|
139
|
-
trekker comment list <task-id>
|
|
139
|
+
trekker comment list <task-id> [--limit <n>] [--page <n>]
|
|
140
140
|
trekker comment update <comment-id> -c <content>
|
|
141
141
|
trekker comment delete <comment-id>
|
|
142
142
|
```
|
|
@@ -154,7 +154,7 @@ trekker dep list <task-id>
|
|
|
154
154
|
Show tasks that are ready to work on — unblocked and in `todo` status. For each ready task, shows downstream dependents that will be unblocked once it is completed:
|
|
155
155
|
|
|
156
156
|
```bash
|
|
157
|
-
trekker ready
|
|
157
|
+
trekker ready [--limit <n>] [--page <n>]
|
|
158
158
|
```
|
|
159
159
|
|
|
160
160
|
Example output:
|
|
@@ -273,6 +273,20 @@ Epics: `todo`, `in_progress`, `completed`, `archived`
|
|
|
273
273
|
- Tasks: `TREK-1`, `TREK-2`
|
|
274
274
|
- Comments: `CMT-1`, `CMT-2`
|
|
275
275
|
|
|
276
|
+
All list commands default to 50 items per page, sorted by newest first. Use `--limit` and `--page` to paginate through large result sets.
|
|
277
|
+
|
|
278
|
+
## Development
|
|
279
|
+
|
|
280
|
+
```bash
|
|
281
|
+
bun install # Install dependencies
|
|
282
|
+
bun run dev # Run CLI from source
|
|
283
|
+
bun run dev <command> # Run a specific command
|
|
284
|
+
bun test # Run all tests
|
|
285
|
+
bun run lint # ESLint check
|
|
286
|
+
bun run format:check # Prettier check
|
|
287
|
+
bun run check # Both lint and format
|
|
288
|
+
```
|
|
289
|
+
|
|
276
290
|
## Data Storage
|
|
277
291
|
|
|
278
292
|
Trekker creates a `.trekker` directory in your project root containing `trekker.db`. Add `.trekker` to your `.gitignore` if you do not want to track it in version control.
|
package/dist/index.js
CHANGED
|
@@ -3654,7 +3654,7 @@ Page ${result.page} of ${totalPages}`);
|
|
|
3654
3654
|
// package.json
|
|
3655
3655
|
var package_default = {
|
|
3656
3656
|
name: "@obsfx/trekker",
|
|
3657
|
-
version: "1.10.
|
|
3657
|
+
version: "1.10.1",
|
|
3658
3658
|
description: "A CLI-based issue tracker built for AI coding agents. Stores tasks, epics, and dependencies in a local SQLite database.",
|
|
3659
3659
|
type: "module",
|
|
3660
3660
|
main: "dist/index.js",
|
package/package.json
CHANGED