@obsfx/trekker 1.4.0 → 1.4.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 +3 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -24,6 +24,8 @@ My concerns about the future and security of that project led me here. Trekker i
|
|
|
24
24
|
|
|
25
25
|
What you get:
|
|
26
26
|
- Task and epic tracking with dependencies
|
|
27
|
+
- Full-text search across tasks, epics, subtasks, and comments
|
|
28
|
+
- Unified list view with filtering by type, status, priority, and custom sorting
|
|
27
29
|
- Optional kanban board UI available as a [separate package](https://github.com/obsfx/trekker-dashboard)
|
|
28
30
|
- No special directory required. The .trekker folder stays local to your project.
|
|
29
31
|
- No hook integrations. Just task management.
|
|
@@ -196,7 +198,7 @@ See [trekker-claude-code](https://github.com/obsfx/trekker-claude-code) for more
|
|
|
196
198
|
|
|
197
199
|
## TOON Output
|
|
198
200
|
|
|
199
|
-
Add the `--toon` flag to any command for structured output in [TOON format](https://github.com/
|
|
201
|
+
Add the `--toon` flag to any command for structured output in [TOON format](https://github.com/toon-format/toon). TOON is a token-efficient serialization format designed for AI agents, using fewer tokens than JSON while remaining machine-readable:
|
|
200
202
|
|
|
201
203
|
```bash
|
|
202
204
|
trekker --toon task list
|
package/dist/index.js
CHANGED
|
@@ -3443,7 +3443,7 @@ function formatItem(item) {
|
|
|
3443
3443
|
// package.json
|
|
3444
3444
|
var package_default = {
|
|
3445
3445
|
name: "@obsfx/trekker",
|
|
3446
|
-
version: "1.4.
|
|
3446
|
+
version: "1.4.1",
|
|
3447
3447
|
description: "A CLI-based issue tracker built for AI coding agents. Stores tasks, epics, and dependencies in a local SQLite database.",
|
|
3448
3448
|
type: "module",
|
|
3449
3449
|
main: "dist/index.js",
|
package/package.json
CHANGED