-
Notifications
You must be signed in to change notification settings - Fork 0
chore: bring repo into compliance with AGENTS.md #17
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1 @@ | ||
| npm run verify | ||
| compose-agentsmd --compose || true | ||
| git add AGENTS.md || true | ||
| task-tracker check; npm run verify; compose-agentsmd --compose || true; git add AGENTS.md || true | ||
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| {"id":"rqZQhpxO","description":"Bring the repo into compliance with AGENTS.md (task-tracker setup, husky consolidation)","stage":"done","createdAt":"2026-03-10T06:00:12.192Z","updatedAt":"2026-03-10T06:02:31.536Z"} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
task-tracker checkis invoked directly in the pre-commit hook, but@metyatech/task-trackeris not a dependency in package.json/package-lock. On a clean machine this hook will fail unless the developer has a global install, which contradicts the repo rule that lifecycle hooks must succeed without global tool assumptions. Consider adding task-tracker as a devDependency and invoking it via the package manager executor (e.g.,npm exec) so the hook is self-contained.