Skip to content

Commit 92cdd0a

Browse files
GiggleLiuclaude
andauthored
Update references, docs, and check-issue skill (#188)
* update refs * update documents * update module overview * remove collaborate.md — content moved to issue #187 The collaboration workflow draft has been reviewed and filed as GitHub issue #187 for further refinement and discussion. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * update * update review-implementation * update skills * run-issue * fix-pr: check all review comment sources, prioritize user comments - Step 1a now prints counts for each source and labels them clearly - Triage table separates user comments (priority 2) from Copilot (priority 3) - Added "User comments always take priority" instruction - Deleted stale plan file per reviewer request Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> --------- Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
1 parent a88812b commit 92cdd0a

24 files changed

Lines changed: 1935 additions & 177 deletions

File tree

.claude/CLAUDE.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ Rust library for NP-hard problem reductions. Implements computational problems w
1212
- [write-model-in-paper](skills/write-model-in-paper/SKILL.md) -- Write or improve a problem-def entry in the Typst paper. Covers formal definition, background, example with visualization, and algorithm list.
1313
- [write-rule-in-paper](skills/write-rule-in-paper/SKILL.md) -- Write or improve a reduction-rule entry in the Typst paper. Covers complexity citation, self-contained proof, detailed example, and verification.
1414
- [release](skills/release/SKILL.md) -- Create a new crate release. Determines version bump from diff, verifies tests/clippy, then runs `make release`.
15+
- [check-issue](skills/check-issue/SKILL.md) -- Quality gate for `[Rule]` and `[Model]` issues. Checks usefulness, non-triviality, correctness of literature, and writing quality. Posts structured report and adds failure labels.
1516
- [meta-power](skills/meta-power/SKILL.md) -- Batch-resolve all open `[Model]` and `[Rule]` issues autonomously: plan, implement, review, fix CI, merge — in dependency order (models first).
1617

1718
## Commands
@@ -39,6 +40,7 @@ make cli # Build the pred CLI tool (release mode)
3940
make cli-demo # Run closed-loop CLI demo (exercises all commands)
4041
make mcp-test # Run MCP server tests (unit + integration)
4142
make run-plan # Execute a plan with Claude autorun
43+
make run-issue N=42 # Run issue-to-pr --execute for a GitHub issue
4244
make copilot-review # Request Copilot code review on current PR
4345
make release V=x.y.z # Tag and push a new release (CI publishes to crates.io)
4446
```

.claude/skills/add-model/SKILL.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ Invoke the `/write-model-in-paper` skill to write the problem-def entry in `docs
147147
make test clippy # Must pass
148148
```
149149

150-
Then run the [review-implementation](../review-implementation/SKILL.md) skill to verify all structural and semantic checks pass.
150+
If running standalone (not inside `make run-plan`), invoke [review-implementation](../review-implementation/SKILL.md) to verify all structural and semantic checks pass. When running inside a plan, the outer orchestrator handles the review.
151151

152152
## Naming Conventions
153153

.claude/skills/add-rule/SKILL.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ cargo run --example export_schemas # Update problem schemas
139139
make test clippy # Must pass
140140
```
141141

142-
Then run the [review-implementation](../review-implementation/SKILL.md) skill to verify all structural and semantic checks pass.
142+
If running standalone (not inside `make run-plan`), invoke [review-implementation](../review-implementation/SKILL.md) to verify all structural and semantic checks pass. When running inside a plan, the outer orchestrator handles the review.
143143

144144
## Solver Rules
145145

0 commit comments

Comments
 (0)