diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml new file mode 100644 index 0000000..0086358 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -0,0 +1 @@ +blank_issues_enabled: true diff --git a/.github/ISSUE_TEMPLATE/issue_with_ai.md b/.github/ISSUE_TEMPLATE/issue_with_ai.md index 20ca4b1..55db773 100644 --- a/.github/ISSUE_TEMPLATE/issue_with_ai.md +++ b/.github/ISSUE_TEMPLATE/issue_with_ai.md @@ -1,4 +1,12 @@ +--- +name: Issue or feature with AI pre-check +about: Use this template to file a bug or feature, optionally using AI pre-check +title: "" +labels: "" +assignees: "" +--- + (Optional) When submitting an Issue, please consider using a "deep research" tool to sanity check your proposal. Then **before** submission, run your draft through a strong model with a prompt such as: > "Please review the AGENTS.md and README.md along with this draft Issue and check that it does not have any gaps — why it might be insufficient, incomplete, lacking a concrete example, duplicating prior issues or PRs, or not be aligned with the project goals or non‑goals." diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 69bf6e0..cd831c9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -39,8 +39,8 @@ jobs: for k in totals: totals[k]+=int(r.get(k,'0')) except Exception: pass - exp_tests=1908 - exp_skipped=713 + exp_tests=3668 + exp_skipped=1424 if totals['tests']!=exp_tests or totals['skipped']!=exp_skipped: print(f"Unexpected test totals: {totals} != expected tests={exp_tests}, skipped={exp_skipped}") sys.exit(1)