skyfi-mcp: Skill for Claude Code

.agents/skills/find-skills/SKILL.md

find-skills is a skill for Claude Code, Codex from seeincodes/skyfi-mcp. It costs 0 tokens per session (574 once invoked), scanned A, original, MIT.

A set of project instructions for building SkyFi MCP Server, which gives AI agents access to SkyFi satellite imagery. It covers a TypeScript server, a Python demo agent, documentation, tests, and deployment code in a monorepo—a repository containing multiple related projects.

In plain words
What is it for?
Use it when developing, documenting, testing, or deploying this SkyFi satellite-imagery integration.
Why use it?
It gives developers a shared structure and technical decisions for implementing and testing the server.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: installed under .agents/ (shared by several agents).

This is seeincodes/skyfi-mcp's own configuration. It tells Claude Code and Codex how to work on skyfi-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 skyfi-mcp configures →

Reuse

Borrowing it

Nothing to install: this file belongs to seeincodes/skyfi-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/seeincodes/skyfi-mcp/main/.agents/skills/find-skills/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/seeincodes/skyfi-mcp

Made for: Claude Code, Codex.

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 find-skills

README.md
[![agentmods](https://agentmods.dev/badge/skills/seeincodes/skyfi-mcp/find-skills/github.svg)](https://agentmods.dev/skills/seeincodes/skyfi-mcp/find-skills)
Your own site
<a href="https://agentmods.dev/skills/seeincodes/skyfi-mcp/find-skills"><img src="https://agentmods.dev/badge/skills/seeincodes/skyfi-mcp/find-skills/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for find-skills

Your own site · 80×15
<a href="https://agentmods.dev/skills/seeincodes/skyfi-mcp/find-skills"><img src="https://agentmods.dev/badge/skills/seeincodes/skyfi-mcp/find-skills.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 0 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 574 The whole file, excluding the scripts and references it only reads on demand.
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.00000 $0.00574
Opus 5 $0.00000 $0.00287
Sonnet 5 $0.00000 $0.00115
Haiku 4.5 $0.00000 $0.00057

Measured 10d ago against content hash 8232a8f3ab7e, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

find-skills 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 10d 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.

.agents/skills/find-skills/SKILL.md · 48 lines

How it starts

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

Skill: find-skills

Context

SkyFi MCP Server — a production-grade MCP server wrapping SkyFi's satellite imagery platform for AI agent access.

Codebase

  • Target: TypeScript MCP server + Python demo agent
  • Structure: Monorepo with src/ (server), examples/demo-agent/ (Python), docs/ (documentation), tests/, infra/

Stack

  • TypeScript 5.x / Node.js 20 LTS / Cloudflare Workers
  • @modelcontextprotocol/sdk (MCP protocol)
  • Hono 4.x (HTTP framework, Workers-native)
  • Zod 3.x (validation + JSON Schema derivation)
  • Vitest (testing)
  • tsup (bundling)
  • Nominatim/OSM (geocoding)
  • Cloudflare Workers KV (ephemeral stores: idempotency, rate limits, quotes)
  • Prometheus + Grafana (self-hosted observability)
  • Python + Google ADK (demo agent)

Key Files

  • skyfi-mcp-prd.md — Original detailed PRD from SkyFi
  • docs/PRD.md — Condensed product requirements
  • docs/TASK_LIST.md — Phased implementation tasks with checklists
  • docs/TECH_STACK.md — Technology decisions, architecture diagram, env vars, schema
  • docs/USER_FLOW.md — User journey, API request/response examples
  • docs/MEMO.md — Architecture decisions with rationale and rejected alternatives
  • docs/ERROR_FIX_LOG.md — Error tracking log with category prefixes
  • docs/skill-lifecycle.yml — Skill lifecycle configuration

Processing Strategy

Request → Auth (header/config) → Abuse Protection → Input Validation → Simulation Engine → Pre-Auth Policy → Idempotency Store → Tool Handler → SkyFi API/Nominatim → Response Envelope → Transport (STDIO/HTTP+SSE)

Known Patterns

  • Two-step confirmation: quote_* → user confirms → execute_* (server-side enforced)
  • Standard response envelope on ALL tools: { status, tool, version, simulated, data, meta, warnings }
  • Simulation mode: simulate: true flag or SKYFI_SIMULATE=true env var
  • Idempotency keys required on all execute_* tools (24h TTL)
  • AOI area guardrails enforced before any API call
  • Credentials never stored server-side (stateless design)
  • Tool descriptions are product copy, not boilerplate (LLM-facing, preconditions documented)

Read the full file on GitHub · 48 lines

Files

What ships with it

2 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. 10d ago First seen · 48 lines · 0 tokens per session scan A 8232a8f3ab7e

Subscribe to this mod's changes

find-skills is a skill published in the GitHub repository seeincodes/skyfi-mcp (0 stars, last pushed 5mo ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 574 tokens. 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 skills, from other repositories

arcgis-to-portaljs

Migrate a whole ArcGIS Hub site into a PortalJS Arc portal end-to-end. Harvests the Hub /data.json (DCAT-US) inventory, exports every FeatureService layer through the ArcGIS REST query API with resultOffset paging, converts each to the serverless dual tier (PMTiles render + GeoParquet query) with tabular items to…

datopian/portaljs · 134 tokens

story-html-publisher

Final step of the AI Storybook pipeline. Consolidates the scenes, images, and per-scene audio into ONE self-contained HTML storybook — a swipe/tap player with every image and audio clip embedded as base64 so the single file works offline and can be shared as-is. Reads {slug}scenes.json, {slug}images.json, and…

hassancs91/claude-image-generation · 207 tokens

arcgis-pro-automation

Automate controlled local ArcGIS Pro and ArcPy workflows through arcgis-mcp-bridge: inspect .aprx projects and file geodatabases, run geoprocessing, projection, raster, network, spatial-statistics, editing, symbology, and layout export with path and mutation guards. Use when the user explicitly names ArcGIS Pro…

muend/geoai-skills · 159 tokens

review-typescript

TypeScript setup review (shared presets in packages/typescript-config, per-app tsconfigs, TS 7 readiness) against current official best practices. USE WHEN: user runs /review-typescript or explicitly asks for this review. DO NOT USE WHEN: reviewing app code, other dev dependencies, or implementing features.

louisbrulenaudet/monorepo-template · 66 tokens

NorthwoodsRhetoric

Output transformer — pipes any AI response through the deployed Northwoods Pack rhetoric module before showing it. Strips emoji-headed sections, splits long sentences on coordinating conjunctions, strips code blocks for chat context, collapses excessive blank lines. Preserves adult vocabulary. USE WHEN any AI response…

NorthwoodsSentinel/northwoods-pack · 107 tokens

review-claude-code

Claude Code setup review (settings.json, permissions, rules, hooks, agents, memory, worktrees) against current official best practices. USE WHEN: user runs /review-claude-code or explicitly asks for this review. DO NOT USE WHEN: reviewing app code, other dev dependencies, or implementing features.

louisbrulenaudet/monorepo-template · 68 tokens