trackerctl 0.1.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/LICENSE +21 -0
- package/README.md +222 -0
- package/bin/tracker.mjs +20 -0
- package/dist/tracker.js +1665 -0
- package/package.json +44 -0
- package/tracker.config.example.json +21 -0
package/package.json
ADDED
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "trackerctl",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Multi-backend issue-tracking CLI for humans and AI agents — claim races, dependencies, hierarchy, local FTS search, project memory. GitLab adapter first.",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"author": "refo",
|
|
7
|
+
"repository": {
|
|
8
|
+
"type": "git",
|
|
9
|
+
"url": "git+https://github.com/refo/tracker.git"
|
|
10
|
+
},
|
|
11
|
+
"type": "module",
|
|
12
|
+
"bin": {
|
|
13
|
+
"tracker": "bin/tracker.mjs"
|
|
14
|
+
},
|
|
15
|
+
"files": ["bin", "dist", "tracker.config.example.json", "README.md", "LICENSE"],
|
|
16
|
+
"engines": {
|
|
17
|
+
"bun": ">=1.1.0"
|
|
18
|
+
},
|
|
19
|
+
"keywords": [
|
|
20
|
+
"issue-tracker",
|
|
21
|
+
"gitlab",
|
|
22
|
+
"cli",
|
|
23
|
+
"agents",
|
|
24
|
+
"work-items",
|
|
25
|
+
"kanban",
|
|
26
|
+
"claim",
|
|
27
|
+
"dependencies"
|
|
28
|
+
],
|
|
29
|
+
"scripts": {
|
|
30
|
+
"tracker": "bun src/cli/index.ts",
|
|
31
|
+
"build": "bun build src/cli/index.ts --target=bun --outfile=dist/tracker.js",
|
|
32
|
+
"smoke": "bun scripts/smoke.ts",
|
|
33
|
+
"test": "bun test",
|
|
34
|
+
"typecheck": "tsc --noEmit",
|
|
35
|
+
"lint": "biome check .",
|
|
36
|
+
"gate": "bun run typecheck && bun run lint && bun test",
|
|
37
|
+
"prepublishOnly": "bun run gate && bun run build"
|
|
38
|
+
},
|
|
39
|
+
"devDependencies": {
|
|
40
|
+
"@biomejs/biome": "^1.9.4",
|
|
41
|
+
"@types/bun": "^1.2.0",
|
|
42
|
+
"typescript": "^5.7.0"
|
|
43
|
+
}
|
|
44
|
+
}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
{
|
|
2
|
+
"provider": "gitlab",
|
|
3
|
+
"gitlab": {
|
|
4
|
+
"base_url": "https://gitlab.example.com",
|
|
5
|
+
"project": "group/project",
|
|
6
|
+
"token_env": ["TRACKER_GITLAB_TOKEN", "GITLAB_PERSONAL_ACCESS_TOKEN"],
|
|
7
|
+
"native_blocking": true
|
|
8
|
+
},
|
|
9
|
+
"labels": {
|
|
10
|
+
"in_progress": "status::in-progress"
|
|
11
|
+
},
|
|
12
|
+
"memory": {
|
|
13
|
+
"enabled": true,
|
|
14
|
+
"title": "📌 Project Memory",
|
|
15
|
+
"label": "meta::memory"
|
|
16
|
+
},
|
|
17
|
+
"cache": {
|
|
18
|
+
"path": ".tracker/cache.sqlite",
|
|
19
|
+
"stale_minutes": 15
|
|
20
|
+
}
|
|
21
|
+
}
|