skylight-mcp: Instructions file for Claude Code

CLAUDE.md

skylight-mcp CLAUDE.md is an instructions file for Claude Code from chrischall/skylight-mcp. It costs 7,913 tokens per session, scanned A, original, MIT.

A set of instructions for working on a server that connects Claude Code to Skylight Calendar, a family calendar and household task system. It documents the server’s commands, authentication, code layout, and API requirements.

In plain words
What is it for?
Use it when developing or reviewing features for Skylight events, lists, chores, rewards, meals, messages, media, devices, accounts, and related settings.
Why use it?
It gives an coding agent the project-specific information needed to change the server safely. It also explains how login tokens are obtained and reused.

Instructions file for Claude Code

Written for Claude Code: the file is CLAUDE.md. Also seen: reads .claude/ paths; mentions CLAUDE.md; mentions Claude Code.

This is chrischall/skylight-mcp's own configuration. It tells Claude Code how to work on skylight-mcp itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything skylight-mcp configures →

Reuse

Borrowing it

Nothing to install: this file belongs to chrischall/skylight-mcp. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/chrischall/skylight-mcp/main/CLAUDE.md
Clone the repo
git clone --depth 1 https://github.com/chrischall/skylight-mcp

Made for: Claude Code.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for skylight-mcp CLAUDE.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/chrischall/skylight-mcp/claude-md.svg)](https://agentmods.dev/instructions/chrischall/skylight-mcp/claude-md)
Your own site
<a href="https://agentmods.dev/instructions/chrischall/skylight-mcp/claude-md"><img src="https://agentmods.dev/badge/instructions/chrischall/skylight-mcp/claude-md.svg" alt="Measured on agentmods" height="20"></a>
Per session 7,913 This file is loaded in full into every session.
When invoked 7,913 The same file — it is already loaded in full.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.07913 $0.07913
Opus 5 $0.03957 $0.03957
Sonnet 5 $0.01583 $0.01583
Haiku 4.5 $0.00791 $0.00791

Measured 2d ago against content hash d77ffe10954b, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-07, from the pricing page.

Security

Grade A, and why

skylight-mcp CLAUDE.md scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 2d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

CLAUDE.md · 187 lines

How it starts

The opening of the file, as written. The whole thing — 187 lines — stays where its author put it; the contents beside it link to each section on GitHub.

CLAUDE.md

This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository.

TL;DR

MCP server for Skylight Calendar — 114 tools across calendar events (read+write), shared lists (read+write), chores and rewards (read+write), task-box items (read+write), meals (read+write), AI auto-creation (meal-plan + activity-idea generators with draft review/approve), messages and albums (read+write), photo/video upload, and frame/device/account settings + calendar + member/category management (read+write, incl. preset and custom-photo avatars).

Every request carries the skylight-api-version: 2026-05-01 header (src/client.ts), matching the official mobile app — without it some features 422 with "API version does not support …".

Auth resolution lives in src/auth.ts. Two credentials are accepted: a SKYLIGHT_REFRESH_TOKEN you already hold (skips the login endpoint entirely), or SKYLIGHT_EMAIL + SKYLIGHT_PASSWORD, which mint one via a headless OAuth2 authorization-code flow (Node-direct). See "Auth resolution" below.

The login is lazy and cached: resolveAuth() hands SkylightClient a bootstrap function rather than tokens, and TokenManager runs it only when the on-disk cache (src/token-store.ts) has nothing usable. A cached live token costs nothing; a cached expired one costs a refresh; only an empty or unusable cache spends a login. This matters because the login endpoint rate-limits (see the refreshFn note below) and a scale-to-zero host makes every start a cold one.

Auth resolution

src/auth.ts prefers a supplied SKYLIGHT_REFRESH_TOKEN and otherwise runs the headless email+password OAuth2 authorization-code flow below; with both set, a stale token falls back to logging in again. (Skylight rejects grant_type=password with unsupported_grant_type; no browser-bridge proxy is needed — no observed bot wall.)

The flow resolveAuth()login() performs all steps against https://app.ourskylight.com:

  1. GET /auth/session/new — scrape the Rails authenticity_token, hold the _skylight_cloud_session cookie.
  2. POST /auth/session (form: authenticity_token, email, password; Origin/Referer = app.ourskylight.com) — 302 to /auth/session/success on success. Login must happen before the OAuth authorize step — hitting authorize first poisons the CSRF/session state.
  3. GET /oauth/authorize?client_id=skylight-mobile&response_type=code&scope=everything&redirect_uri=https://ourskylight.com/welcome&code_challenge=…&code_challenge_method=S256 — 302 to https://ourskylight.com/welcome?code=…. PKCE is mandatory: without code_challenge the server answers HTTP 400 "Code challenge is required." and issues no code (verified live 2026-08-31).
  4. POST /oauth/token (grant_type=authorization_code, client_id=skylight-mobile, scope=everything, code, code_verifier matching step 3's challenge, redirect_uri, skylight_api_client_device_* device params, source=js-mobile) — returns { access_token, refresh_token, expires_in: 86400 (24h, observed 2026-08-31 — it was 604800 when this flow was first captured, so read it from the response, never assume), token_type: Bearer }.

Read the full file on GitHub · 187 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 2d ago Changed · +2 lines · +607 tokens per session d77ffe10954b
  2. 4d ago Changed · +1 lines · +377 tokens per session 5769fe0dcb21
  3. 8d ago First seen · 184 lines · 6,929 tokens per session scan A c53d6943046f

Subscribe to this mod's changes

skylight-mcp CLAUDE.md is an instructions file published in the GitHub repository chrischall/skylight-mcp (8 stars, last pushed 3d ago), licensed MIT. It adds 7,913 tokens to every session, about $0.0396 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other instructions, from other repositories

codex AGENTS.md

AGENTS.md instructions for openai/codex, covering rust/codex-rs, the codex-core crate, code review rules, crate api surface and model visible context.

openai/codex · 5,153 tokens

vscode buildNext.instructions.md

Working notes and architecture documentation for the new esbuild-based build system in build/next. Use when making changes to the new build pipeline (transpile/bundle commands, NLS plugin, source-map handling, resource copying, or self-hosting watch tasks).

microsoft/vscode · 6,785 tokens

next.js AGENTS.md

AGENTS.md instructions for vercel/next.js, covering next.js development guide, codebase structure, monorepo overview, core package: packages/next and other important packages.

vercel/next.js · 7,296 tokens

langchain AGENTS.md

AGENTS.md instructions for langchain-ai/langchain, covering global development guidelines for the langchain monorepo, corridor security analysis, project architecture and context, monorepo structure and development tools & commands.

langchain-ai/langchain · 4,469 tokens

vscode oss-third-party-notices.instructions.md

Instructions for microsoft/vscode, covering vs code oss third-party-notices pipeline, architecture, pipeline flow in ci, applying the notice (cutover) and fallback chain (never fail the build).

microsoft/vscode · 5,001 tokens

spec-kit AGENTS.md

AGENTS.md instructions for github/spec-kit, covering agents.md, about spec kit and specify, quickstart — add a new integration in 5 steps, integration architecture and integrationmanifest — file tracking.

github/spec-kit · 7,104 tokens