ztrack 0.0.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 +11 -0
- package/package.json +9 -0
package/README.md
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
# ztrack
|
|
2
|
+
|
|
3
|
+
**Typecheck and lint your task management.** Done is earned, not declared.
|
|
4
|
+
|
|
5
|
+
A typechecker for your issue tracker: a checked acceptance criterion must cite a
|
|
6
|
+
commit SHA that exists in git, evidence that resolves — or `ztrack check` fails.
|
|
7
|
+
Works with Linear, Jira, and GitHub Issues. Schema defined in Zod.
|
|
8
|
+
|
|
9
|
+
🚧 Launching soon — https://ztrack.dev
|
|
10
|
+
|
|
11
|
+
Apache-2.0
|
package/package.json
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "ztrack",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"description": "Typecheck and lint your task management. Done is earned, not declared.",
|
|
5
|
+
"keywords": ["ai-agents", "task-management", "zod", "typecheck", "lint", "mcp", "verification"],
|
|
6
|
+
"homepage": "https://ztrack.dev",
|
|
7
|
+
"license": "Apache-2.0",
|
|
8
|
+
"publishConfig": { "access": "public" }
|
|
9
|
+
}
|