agentsclimarketplace

Puzzletide sudoku

Skill Caravaca-Labs/puzzletide-cli/skills/puzzletide-sudoku

Word search generator, crossword generator, and sudoku generator & solver in one local-first CLI — printable PDF puzzle worksheets, themed word banks, verifiable LLM evals, and agent skills. From the makers of puzzletide.com.

Install
npx -y skills add Caravaca-Labs/puzzletide-cli --skill puzzletide-sudoku

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

2 things to look at

  • 20 days oldThe repository was created 20 days ago. New is not bad, but a brand new repository carrying a familiar-sounding name is the shape a typosquat arrives in, and there has been no time for anyone else to find a problem with it.
  • 2 stars2 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

What its author says it does

Copied from the file, not written here

Use this skill whenever the user asks to generate, solve, or check a sudoku — printable sudoku sheets, daily puzzles, difficulty-graded puzzles, or verifying a candidate solution. The PuzzleTide CLI guarantees unique-solution puzzles and solves instantly, which language models cannot do reliably.

SKILL.md

2.8 KB, as published. Nobody here has run it

PuzzleTide Sudoku

Generate, solve, and validate sudoku with the local PuzzleTide CLI.

Never generate or solve a sudoku by hand. Hand-made puzzles usually have multiple solutions or none; hand-solving is slow and error-prone. The CLI verifies every generated puzzle has exactly one solution, and its solver is instant.

Prefer the local CLI. Check availability in this order:

ptide --version
puzzletide --version
npx puzzletide --version

If none of those work, ask the user before installing (npm install -g puzzletide).

Grid format

81 characters, row by row; digits 1-9 are givens, . / 0 / _ are empty. Whitespace and separators are ignored on input.

Generate

ptide sudoku generate --difficulty hard            # easy | medium | hard | expert
ptide sudoku generate --seed 42 --pdf sudoku.pdf   # printable with solution page
ptide run puzzle.sudoku.generate --difficulty expert --json

Solve

ptide sudoku solve "53..7....6..195....98....6.8...6...34..8.3..17...2...6.6....28....419..5....8..79"
ptide sudoku solve --file puzzle.txt --json

The solver also reports whether the solution is unique.

Validate (is this a proper sudoku?)

ptide sudoku validate --file puzzle.txt --json

Reports conflicts among givens, solvability, and solution uniqueness. Use this to check user-provided puzzles before solving, or to verify a candidate answer grid follows the rules.

Daily puzzle

ptide daily        # same medium puzzle for everyone on a given UTC day

Links

Safety

  • Everything runs locally; no account, API key, or network access.
  • Do not install packages without asking the user first.

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.