ClawKit Logo
ClawKitReliability Toolkit
Back to Registry
Official Verified

get-today-connections

Fetch today's NYT Connections puzzle answers and hints. Trigger this skill when the user asks for "today's Connections answers", "today's connections hints", "NYT Connections today", or similar questions.

skill-install — Terminal

Install via CLI (Recommended)

clawhub install openclaw/skills/skills/1eif/get-today-connections
Or

Get Today's NYT Connections Answers

Purpose

Quickly retrieve the full answers and hints for today's NYT Connections puzzle without opening a browser.

Steps

  1. Use the WebFetch tool to request the following URL:

    https://connections-answers.com/api/today
    

    Prompt: "Extract the full JSON response as-is"

  2. Parse the returned JSON, which has the following structure:

    {
      "puzzleDate": "YYYY-MM-DD",
      "title": "Connections April 9 2026 Answers",
      "url": "https://connections-answers.com/blog/connections-april-9-2026-answers",
      "categories": [
        {
          "color": "yellow",
          "order": 0,
          "name": "Category Name",
          "hint": "A one-line hint",
          "words": ["WORD1", "WORD2", "WORD3", "WORD4"]
        }
      ],
      "hintContent": "...",
      "answerContent": "..."
    }
    
  3. Display the results to the user in the following format:

    Today's NYT Connections — {puzzleDate}

    ColorCategoryHintAnswers
    🟨 Yellow{name}{hint}WORD1, WORD2, WORD3, WORD4
    🟩 Green{name}{hint}WORD1, WORD2, WORD3, WORD4
    🟦 Blue{name}{hint}WORD1, WORD2, WORD3, WORD4
    🟪 Purple{name}{hint}WORD1, WORD2, WORD3, WORD4

    Full breakdown: {url}

Notes

  • If the user only wants hints and not answers, show only the hint column and hide the words column
  • order: 0 (yellow) = easiest, order: 3 (purple) = hardest
  • hintContent / answerContent are full Markdown articles; output them directly if the user wants a detailed breakdown
  • For past puzzles, direct the user to https://connections-answers.com/blog to browse the archive

Metadata

Author@1eif
Stars4473
Views0
Updated2026-05-01
View Author Profile
AI Skill Finder

Not sure this is the right skill?

Describe what you want to build — we'll match you to the best skill from 16,000+ options.

Find the right skill
Add to Configuration

Paste this into your clawhub.json to enable this plugin.

{
  "plugins": {
    "official-1eif-get-today-connections": {
      "enabled": true,
      "auto_update": true
    }
  }
}
Safety NoteClawKit audits metadata but not runtime behavior. Use with caution.