CASDA-MCP: Skill for Cursor

.cursor/skills/casda-stage-and-download/SKILL.md

casda-stage-and-download is a skill for Cursor from jbwod/CASDA-MCP. It costs 43 tokens per session (614 once invoked), scanned A, original, BSD-3-Clause.

A workflow for staging and downloading selected files from CASDA, an astronomy data archive, after access and job status are checked.

In plain words
What is it for?
Use it to stage full files, cutouts, or spectra, check job progress, download ready results, and verify their size or checksum.
Why use it?
It adds safeguards around authenticated archive processing, background jobs, local download locations, and file verification.

Skill for Cursor

Written for Cursor: installed under .cursor/.

This is jbwod/CASDA-MCP's own configuration. It tells Cursor how to work on CASDA-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 CASDA-MCP configures →

Reuse

Borrowing it

Nothing to install: this file belongs to jbwod/CASDA-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/jbwod/CASDA-MCP/master/.cursor/skills/casda-stage-and-download/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/jbwod/CASDA-MCP

Made for: Cursor.

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 casda-stage-and-download

README.md
[![agentmods](https://agentmods.dev/badge/skills/jbwod/casda-mcp/casda-stage-and-download/github.svg)](https://agentmods.dev/skills/jbwod/casda-mcp/casda-stage-and-download)
Your own site
<a href="https://agentmods.dev/skills/jbwod/casda-mcp/casda-stage-and-download"><img src="https://agentmods.dev/badge/skills/jbwod/casda-mcp/casda-stage-and-download/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 casda-stage-and-download

Your own site · 80×15
<a href="https://agentmods.dev/skills/jbwod/casda-mcp/casda-stage-and-download"><img src="https://agentmods.dev/badge/skills/jbwod/casda-mcp/casda-stage-and-download.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 43 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 614 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.00043 $0.00614
Opus 5 $0.00022 $0.00307
Sonnet 5 $0.00009 $0.00123
Haiku 4.5 $0.00004 $0.00061

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

Security

Grade A, and why

casda-stage-and-download 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 12d 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.

.cursor/skills/casda-stage-and-download/SKILL.md · 47 lines

How it starts

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

CASDA stage and download

Prerequisites

  • OPAL credentials configured (CASDA_USERNAME, CASDA_PASSWORD).
  • CASDA_ENABLE_STAGING=true for WEB full-file, Pawsey, cutout, and spectrum jobs; CASDA_ENABLE_DOWNLOADS=true and an absolute CASDA_DOWNLOAD_DIR for downloads.
  • Inspect sizes and access state with casda_get_product (optionally casda_get_datalink) before submitting jobs.

Full-file workflow (WEB download)

  1. Call casda_stage_products with explicit product_ids and a stable idempotency_key when retrying the same selection.
  2. Later call casda_get_staging_status or casda_get_data_job once with the returned request_id. Do not assume background polling.
  3. Download only when the status shows products ready for download.
  4. Call casda_download_product for one product at a time, or casda_download_job_results for selected job results. Prefer checksum verification. Paths must stay under CASDA_DOWNLOAD_DIR.
  5. Check returned byte length and checksum fields; optionally casda_verify_file.

Pawsey staging

  1. Call casda_stage_pawsey with the same staging flag/credentials when the user wants Pawsey network pull (DataLink pawsey_async_service).
  2. Surface every human_gate_warnings entry: Pawsey HPC account required; licence/account confirmation is a human DAP action; this MCP never auto-accepts terms; results are Pawsey-network restricted.
  3. Monitor with casda_get_data_job. Do not claim WEB download parity for Pawsey jobs.

Cutout and spectrum jobs

  1. Call casda_create_cutout with CIRCLE / POLYGON / BAND / CHANNEL / POL / COORD as supplied, or casda_create_spectrum for integrated spectra.
  2. Monitor with casda_get_data_job and inspect casda_get_data_job_results when needed.
  3. Abort or delete only with explicit user intent (casda_abort_data_job / casda_delete_data_job).
  4. Download ready results with casda_download_product or casda_download_job_results.

Safety

  • Never auto-retry job create/start after a network failure without user intent and a clear idempotency policy.
  • Do not overwrite existing destinations unless the administrator enabled overwrite.
  • Do not scrape the DAP cutout UI or invent SODA endpoints outside DataLink descriptors.

Read the full file on GitHub · 47 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. 12d ago First seen · 47 lines · 43 tokens per session scan A d157ab7114e9

Subscribe to this mod's changes

casda-stage-and-download is a skill published in the GitHub repository jbwod/CASDA-MCP (0 stars, last pushed 1mo ago), licensed BSD-3-Clause. It adds 43 tokens to every session and 614 once invoked, about $0.0002 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 skills, from other repositories

paper-search

Search, download, and read academic papers from 20+ sources (arXiv, PubMed, Semantic Scholar, CrossRef, etc). Use when the user asks to find papers, search for research, look up academic literature, download a paper PDF, or extract text from a paper.

openags/paper-search-mcp · 62 tokens

onescience-research-workflow

A research-workflow planning skill for OneScience, a system that coordinates scientific computing tasks. It creates detailed plans for fields such as weather, biology, materials, and fluid simulations, including steps, dependencies, resources, checks, and fallback paths.

onescience-ai/OneSkills · 70 tokens

onescience-modelscope-publish

A tool for preparing a reproduced research model for ModelScope, a platform for sharing machine-learning models. It organizes files into the platform’s expected directory structure and creates upload guidance.

onescience-ai/OneSkills · 81 tokens

onescience-cli

A skill for running OneScience command-line commands on remote SSH or SLURM systems. SSH is a way to use another computer remotely, while SLURM schedules jobs on shared computing clusters.

onescience-ai/OneSkills · 97 tokens

onescience-data-analyzer

A data-analysis skill for OneScience, a research-focused AI platform. It accepts task details from the conversation or from handoff files, then carries out analysis, charts, and report generation.

onescience-ai/OneSkills · 73 tokens

onescience-infer

A workflow tool for running scientific machine-learning models. It helps prepare inputs, load models or saved checkpoints, run predictions, check the results, create visualizations, and compare them with a baseline.

onescience-ai/OneSkills · 153 tokens