Get Today Connections

v0.1.0

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",...

0· 129·0 current·0 all-time

Install

OpenClaw Prompt Flow

Install with OpenClaw

Best for remote or guided setup. Copy the exact prompt, then paste it into OpenClaw for 1eif/get-today-connections.

Previewing Install & Setup.
Prompt PreviewInstall & Setup
Install the skill "Get Today Connections" (1eif/get-today-connections) from ClawHub.
Skill page: https://clawhub.ai/1eif/get-today-connections
Keep the work scoped to this skill only.
After install, inspect the skill metadata and help me finish setup.
Use only the metadata you can verify from ClawHub; do not invent missing requirements.
Ask before making any broader environment changes.

Command Line

CLI Commands

Use the direct CLI path if you want to install manually and keep every step visible.

OpenClaw CLI

Bare skill slug

openclaw skills install get-today-connections

ClawHub CLI

Package manager switcher

npx clawhub@latest install get-today-connections
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
high confidence
Purpose & Capability
The skill's name/description (fetch today's NYT Connections answers and hints) matches the runtime instructions (call a single API endpoint and present the JSON). No unrelated env vars, binaries, or config paths are requested.
Instruction Scope
Instructions only call one external URL (https://connections-answers.com/api/today), parse the returned JSON, and format output. This is within the stated purpose, but it relies entirely on a third‑party API (not the official NYT) so correctness and legality (spoilers/copyright) depend on that external service and its data.
Install Mechanism
No install spec and no code files — instruction-only skill, so nothing is written to disk and no external packages are pulled.
Credentials
The skill requests no environment variables, credentials, or config paths. There is no disproportionate access requested.
Persistence & Privilege
always is false and the skill does not request persistent system changes or elevated privileges. Autonomous invocation is allowed by default but not unusual; no extra privilege is requested.
Assessment
This skill appears coherent and low-risk technically, but consider these practical points before installing: (1) It fetches answers from a third‑party site (connections-answers.com), not the official NYT source — verify you trust that domain and that its content is allowed to be redistributed. (2) The endpoint and JSON schema are hardcoded; if the third‑party changes its API the skill will break or may return unexpected content. (3) The skill will cause the agent to make an outbound network request whenever invoked — if you’re concerned about data leaving your environment, avoid installing or restrict invocation. (4) If you care about copyright or avoiding spoilers for others, check NYT terms and use the skill accordingly. (5) If you want stronger assurances, ask the author for the endpoint's provenance or replace the endpoint with an official source before using.

Like a lobster shell, security has layers — review code before you run it.

latestvk978fema4bczd3gy6x6zk9jbt584g9v4
129downloads
0stars
1versions
Updated 2w ago
v0.1.0
MIT-0

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

Comments

Loading comments...