PuzzleTide Printable Puzzles
Use this skill when the user wants printable puzzle worksheets — PDF activity sheets for classrooms, kids, parties, newsletters, or activity books. Produces...
catorch
@catorch
What This Skill Does
Generates printable puzzle worksheets (word search, crossword, sudoku) as PDFs with solution pages using the local PuzzleTide CLI. Supports custom themes, difficulty levels, and packet creation with varying seeds.
Replaces manually designing puzzle worksheets or using online generators that require accounts or network access.
When to Use It
- Create a word search worksheet for a classroom holiday activity
- Generate a crossword puzzle for a unit review or study guide
- Produce multiple sudoku sheets with varying difficulty for a puzzle book
- Make a themed word search for a party newsletter or activity book
- Export a puzzle as an SVG vector image for embedding in a document
Install
$ openclaw skills install @catorch/puzzletide-printable-puzzlesPuzzleTide Printable Puzzles
Produce print-ready puzzle PDFs with the local PuzzleTide CLI. Every PDF
includes the puzzle page(s) and a solution page (omit it with
--no-solution-page). Use --paper a4 outside North America.
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).
One-off worksheets
ptide wordsearch generate --theme seasonal/winter-holidays --pdf christmas.pdf --title "Christmas Word Search"
ptide crossword generate --file words.json --pdf review.pdf --title "Unit 4 Review"
ptide sudoku generate --difficulty easy --pdf sudoku.pdf --paper a4
Packets (multiple sheets)
Vary --seed to make each sheet different, and give each file a name:
for i in 1 2 3 4 5; do
ptide sudoku generate --difficulty medium --seed "$i" --pdf "sudoku-$i.pdf" --title "Sudoku #$i"
done
Picking a theme
ptide words categories # animals, geography, holidays, sports, ...
ptide words themes --search halloween # find theme ids
Tips
- For kids:
ptide wordsearch generate --difficulty easykeeps words forward-only. --svg <file>produces a vector image instead, useful for embedding in documents.- SVG/PDF titles come from
--title; the default is the theme title. - Merge or rearrange pages with the user's preferred PDF tool if needed.
Links
- More worksheets: printable puzzles at puzzletide.com
- Play online: word search · crossword · sudoku
- Source and docs: GitHub · npm · CLI reference
Safety
- Everything runs locally; no account, API key, or network access.
- Do not install packages without asking the user first.
Top skills in this category
microsoft-excel
@byungkyuMicrosoft Excel API integration with managed OAuth. Read and write Excel workbooks, worksheets, ranges, tables, and charts stored in OneDrive. Use this skill when users want to read or modify Excel spreadsheets, manage worksheet data, work with tables, or access cell values. For other third party apps, use the api-gateway skill (https://clawhub.ai/byungkyu/api-gateway). Calls run through the `maton` CLI with OAuth login; default to read and list calls, and confirm every write or new connection with the user.
LinkedIn API integration with managed OAuth. Share posts, manage profile, and access LinkedIn features. Use this skill when users want to share content on LinkedIn, get profile/organization information, or interact with LinkedIn's platform. Advertising features (campaigns, ad accounts) require additional OAuth scopes — verify granted scopes before use. For other third party apps, use the api-gateway skill (https://clawhub.ai/byungkyu/api-gateway). Requires network access and valid Maton API key. Calls run through the `maton` CLI with OAuth login; default to read and list calls, and confirm every write or new connection with the user.
google-analytics
@byungkyuGoogle Analytics API integration with managed OAuth. This skill includes two separate APIs: the Admin API (write-capable — can create, update, and delete accounts, properties, and data streams) and the Data API (read-only — runs reports on sessions, users, page views, and conversions). Prefer the Data API connection for reporting-only tasks. Use the Admin API only when administrative changes are explicitly needed. All Admin API write operations require explicit user approval with specific resource identifiers before execution. For other third party apps, use the api-gateway skill (https://clawhub.ai/byungkyu/api-gateway). Calls run through the `maton` CLI with OAuth login; default to read and list calls, and confirm every write or new connection with the user.
Trello
@byungkyuTrello API integration with managed OAuth. Manage boards, lists, cards, members, and labels. Use this skill when users want to interact with Trello for project management. For other third party apps, use the api-gateway skill (https://clawhub.ai/byungkyu/api-gateway). Calls run through the `maton` CLI with OAuth login; default to read and list calls, and confirm every write or new connection with the user.
Writing Assistant
@urrrichYou are a Writing Team Lead managing specialized writers via MCP tools. Please ANALYZE the writing task and then:1. if exist references, create a detailed co...