Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .claude/CLAUDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ Rust library for NP-hard problem reductions. Implements computational problems w
- [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.
- [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.
- [release](skills/release/SKILL.md) -- Create a new crate release. Determines version bump from diff, verifies tests/clippy, then runs `make release`.
- [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.
- [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).

## Commands
Expand Down Expand Up @@ -39,6 +40,7 @@ make cli # Build the pred CLI tool (release mode)
make cli-demo # Run closed-loop CLI demo (exercises all commands)
make mcp-test # Run MCP server tests (unit + integration)
make run-plan # Execute a plan with Claude autorun
make run-issue N=42 # Run issue-to-pr --execute for a GitHub issue
make copilot-review # Request Copilot code review on current PR
make release V=x.y.z # Tag and push a new release (CI publishes to crates.io)
```
Expand Down
2 changes: 1 addition & 1 deletion .claude/skills/add-model/SKILL.md
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ Invoke the `/write-model-in-paper` skill to write the problem-def entry in `docs
make test clippy # Must pass
```

Then run the [review-implementation](../review-implementation/SKILL.md) skill to verify all structural and semantic checks pass.
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.

## Naming Conventions

Expand Down
2 changes: 1 addition & 1 deletion .claude/skills/add-rule/SKILL.md
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ cargo run --example export_schemas # Update problem schemas
make test clippy # Must pass
```

Then run the [review-implementation](../review-implementation/SKILL.md) skill to verify all structural and semantic checks pass.
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.

## Solver Rules

Expand Down
Loading