Table of Contents generated with DocToc
<Project Name> — issue-tracker configurationThe project's general-issue tracker configuration — where issues live, how to authenticate, and how to query. Consumed by the issue-* skill family (issue-triage, issue-reassess, issue-reproducer, issue-fix-workflow).
This file is distinct from the tracker_repo field in project.md, which declares the security tracker used by the security-issue-* skill family. Many projects use different trackers for the two: e.g., a private GitHub repo for security and a public JIRA project for general issues. Adopters that use the same tracker for both can point both at the same location.
| Key | Value |
|---|---|
url | TODO: tracker base URL. JIRA example: https://issues.apache.org/jira. GitHub Issues example: https://github.com/<owner>/<repo> |
project_key | TODO: project identifier within the tracker. JIRA example: FOO (one-word uppercase). GitHub Issues example: owner/repo. |
tracker_type | TODO: one of jira, github-issues, bugzilla, gitlab-issues, or custom. |
issue_url_template | TODO: URL pattern for an individual issue. JIRA example: https://issues.apache.org/jira/browse/<KEY>. GitHub Issues example: https://github.com/<owner>/<repo>/issues/<N>. |
Skills resolve <issue-tracker> to url and <issue-tracker-project> to project_key.
TODO: describe how the skills should authenticate.
anonymous_read: true if so; skills can do the classification phase without credentials.~/.config/<tracker>-token or an env vargh CLI auth status| Key | Value |
|---|---|
anonymous_read | TODO: true or false |
auth_method | TODO: e.g. gh-cli, jira-api-token, pat |
auth_env_var | TODO: env-var name carrying the token, if applicable |
TODO: the project's canonical queries for the triage / reassess pools. Skills use these as defaults; users can override per-invocation.
For JIRA-based projects, queries are JQL:
# TODO: triage pool — newly-filed, unsorted issues project = <project_key> AND resolution = Unresolved AND status = Open # TODO: reassess pool — silent wishlists and EOL issues project = <project_key> AND resolution = Unresolved AND fixVersion in unreleasedVersions() AND status = Open # TODO: reopened pool — issues that were closed and reopened project = <project_key> AND status changed FROM "Closed" TO "Open"
For GitHub-Issues-based projects, queries are gh search issues syntax:
# TODO: triage pool is:open is:issue label:"needs triage" repo:<owner>/<repo> # TODO: reassess pool is:open is:issue label:"good first issue" repo:<owner>/<repo>
Adopters who use other trackers (Bugzilla, GitLab, custom) substitute the appropriate query language.
TODO: capture quirks the skills should know about.
worklog), skills must know to escalate.customfield_NNNNN). Document any the skills need to read.project.md — the manifest; declares upstream_default_branch and the security tracker_repo (distinct from this file's general-issue tracker).reassess-pool-defaults.md — pool definitions consumed by issue-reassess, extending the default queries above.runtime-invocation.md — how issue-reproducer runs the extracted code.