alissa-tools-github-reviewloop 0.3.0__tar.gz → 0.4.0__tar.gz
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.
- {alissa_tools_github_reviewloop-0.3.0/src/main/alissa_tools_github_reviewloop.egg-info → alissa_tools_github_reviewloop-0.4.0}/PKG-INFO +1 -1
- {alissa_tools_github_reviewloop-0.3.0 → alissa_tools_github_reviewloop-0.4.0}/src/main/alissa/tools/github/reviewloop/loop.py +16 -0
- alissa_tools_github_reviewloop-0.4.0/src/main/alissa/tools/github/reviewloop/version +1 -0
- {alissa_tools_github_reviewloop-0.3.0 → alissa_tools_github_reviewloop-0.4.0/src/main/alissa_tools_github_reviewloop.egg-info}/PKG-INFO +1 -1
- alissa_tools_github_reviewloop-0.3.0/src/main/alissa/tools/github/reviewloop/version +0 -1
- {alissa_tools_github_reviewloop-0.3.0 → alissa_tools_github_reviewloop-0.4.0}/MANIFEST.in +0 -0
- {alissa_tools_github_reviewloop-0.3.0 → alissa_tools_github_reviewloop-0.4.0}/README.md +0 -0
- {alissa_tools_github_reviewloop-0.3.0 → alissa_tools_github_reviewloop-0.4.0}/requirements.txt +0 -0
- {alissa_tools_github_reviewloop-0.3.0 → alissa_tools_github_reviewloop-0.4.0}/setup.cfg +0 -0
- {alissa_tools_github_reviewloop-0.3.0 → alissa_tools_github_reviewloop-0.4.0}/setup.py +0 -0
- {alissa_tools_github_reviewloop-0.3.0 → alissa_tools_github_reviewloop-0.4.0}/src/main/alissa/tools/github/reviewloop/__init__.py +0 -0
- {alissa_tools_github_reviewloop-0.3.0 → alissa_tools_github_reviewloop-0.4.0}/src/main/alissa/tools/github/reviewloop/__main__.py +0 -0
- {alissa_tools_github_reviewloop-0.3.0 → alissa_tools_github_reviewloop-0.4.0}/src/main/alissa/tools/github/reviewloop/alissa.py +0 -0
- {alissa_tools_github_reviewloop-0.3.0 → alissa_tools_github_reviewloop-0.4.0}/src/main/alissa/tools/github/reviewloop/config.py +0 -0
- {alissa_tools_github_reviewloop-0.3.0 → alissa_tools_github_reviewloop-0.4.0}/src/main/alissa/tools/github/reviewloop/ghclient.py +0 -0
- {alissa_tools_github_reviewloop-0.3.0 → alissa_tools_github_reviewloop-0.4.0}/src/main/alissa/tools/github/reviewloop/proc.py +0 -0
- {alissa_tools_github_reviewloop-0.3.0 → alissa_tools_github_reviewloop-0.4.0}/src/main/alissa/tools/github/reviewloop/prreview.py +0 -0
- {alissa_tools_github_reviewloop-0.3.0 → alissa_tools_github_reviewloop-0.4.0}/src/main/alissa/tools/github/reviewloop/state.py +0 -0
- {alissa_tools_github_reviewloop-0.3.0 → alissa_tools_github_reviewloop-0.4.0}/src/main/alissa/tools/github/reviewloop/version.py +0 -0
- {alissa_tools_github_reviewloop-0.3.0 → alissa_tools_github_reviewloop-0.4.0}/src/main/alissa_tools_github_reviewloop.egg-info/SOURCES.txt +0 -0
- {alissa_tools_github_reviewloop-0.3.0 → alissa_tools_github_reviewloop-0.4.0}/src/main/alissa_tools_github_reviewloop.egg-info/dependency_links.txt +0 -0
- {alissa_tools_github_reviewloop-0.3.0 → alissa_tools_github_reviewloop-0.4.0}/src/main/alissa_tools_github_reviewloop.egg-info/entry_points.txt +0 -0
- {alissa_tools_github_reviewloop-0.3.0 → alissa_tools_github_reviewloop-0.4.0}/src/main/alissa_tools_github_reviewloop.egg-info/top_level.txt +0 -0
|
@@ -29,12 +29,27 @@ log = logging.getLogger(__name__)
|
|
|
29
29
|
# (skill failure mode: "reviewer session stalls"). The round is re-enqueued.
|
|
30
30
|
STALE_ROUND_SECONDS = 90 * 60
|
|
31
31
|
|
|
32
|
+
# The closing contract is spelled out in both directives (not just the skill)
|
|
33
|
+
# because it is the reviewer's most-skipped step: on re-review, sessions produce
|
|
34
|
+
# findings but never register the review on the PR, or stop without a verdict.
|
|
35
|
+
_CLOSE_THE_ROUND = (
|
|
36
|
+
"CLOSE THE ROUND — both are mandatory or the round does not count: "
|
|
37
|
+
"(1) SUBMIT your review so it lands as one registered review record ON the "
|
|
38
|
+
"PR (gh pr review / the reviews API) and confirm it with "
|
|
39
|
+
"`gh api repos/<org>/<repo>/pulls/<n>/reviews` — findings left only in your "
|
|
40
|
+
"session do not exist; (2) end with a decisive verdict — approve OR "
|
|
41
|
+
"request_changes, never neither, never comment-only. You are read-only: "
|
|
42
|
+
"never commit or fix, even a one-character typo — a needed fix IS "
|
|
43
|
+
"request_changes. "
|
|
44
|
+
)
|
|
45
|
+
|
|
32
46
|
ROUND_1_DIRECTIVE = (
|
|
33
47
|
"You are a PR REVIEWER, not an implementer. {assignment} "
|
|
34
48
|
"Load the alissa-code-review skill and follow procedures/review-a-pr.md: "
|
|
35
49
|
"hydrate the task and the PR it names, review per the rubric, post "
|
|
36
50
|
"severity-tagged comments via gh pr review, record the verdict evidence, "
|
|
37
51
|
"move the task to pending_validation. "
|
|
52
|
+
+ _CLOSE_THE_ROUND +
|
|
38
53
|
"NEVER push commits, merge, or change PR state. "
|
|
39
54
|
"Do NOT create further ali-* sessions."
|
|
40
55
|
)
|
|
@@ -46,6 +61,7 @@ ROUND_K_DIRECTIVE = (
|
|
|
46
61
|
"including its round-k section: verify the triage of every prior finding, "
|
|
47
62
|
"verify the fixes, sweep the new diff with the full rubric, record a "
|
|
48
63
|
"round-{round} verdict envelope, move the task to pending_validation. "
|
|
64
|
+
+ _CLOSE_THE_ROUND +
|
|
49
65
|
"NEVER push commits, merge, or change PR state. "
|
|
50
66
|
"Do NOT create further ali-* sessions."
|
|
51
67
|
)
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
0.4.0
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
0.3.0
|
|
File without changes
|
|
File without changes
|
{alissa_tools_github_reviewloop-0.3.0 → alissa_tools_github_reviewloop-0.4.0}/requirements.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|