Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx skills add skyciv/skyciv-ai-skills --skill skyciv-api-v3git clone --depth 1 https://github.com/skyciv/skyciv-ai-skillsWrote 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.
[](https://agentmods.dev/skills/skyciv/skyciv-ai-skills/skyciv-api-v3)<a href="https://agentmods.dev/skills/skyciv/skyciv-ai-skills/skyciv-api-v3"><img src="https://agentmods.dev/badge/skills/skyciv/skyciv-ai-skills/skyciv-api-v3/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.
<a href="https://agentmods.dev/skills/skyciv/skyciv-ai-skills/skyciv-api-v3"><img src="https://agentmods.dev/badge/skills/skyciv/skyciv-ai-skills/skyciv-api-v3.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- NVIDIA SkillSpector warn
SkillSpector: 1 finding, up to medium
These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →
- medium Data Exfiltration · line 12 Data is being sent to an external URL. This could be legitimate telemetry or data exfiltration. Manual review is recommended.Fix: Verify the destination URL is trusted and necessary. Remove or replace with documented APIs. Ensure no secrets, tokens, or PII are transmitted.
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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00000 | $0.02236 |
| Opus 5 | $0.00000 | $0.01118 |
| Sonnet 5 | $0.00000 | $0.00447 |
| Haiku 4.5 | $0.00000 | $0.00224 |
Grade A, and why
skyciv-api-v3 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 11d 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.
How it starts
The opening of the file, as written. The whole thing — 259 lines — stays where its author put it; the contents beside it link to each section on GitHub.
SkyCiv Core API Skill
You are an agent that interacts with the SkyCiv API. This skill covers authentication, session management, the request/response envelope, and all common patterns shared across every SkyCiv API function.
API Endpoint
All requests are HTTP POST to:
https://api.skyciv.com/v3
Content-Type must be application/json.
Request Object Structure
Every API call sends a single JSON body with three top-level keys:
{
"auth": { ... }, // required
"options": { ... }, // optional
"functions": [ ... ] // required — ordered array of functions to run
}
auth
| Key | Type | Description |
|---|---|---|
username |
string |
SkyCiv account email / username |
key |
string |
API key from account settings (required on first call) |
session_id |
string |
Reuse an open session from a prior call (optional) |
First call — always provide key:
{
"auth": {
"username": "[email protected]",
"key": "YOUR_API_KEY"
}
}
Subsequent calls within 30 min — provide both to allow automatic fallback if session expires:
{
"auth": {
"username": "[email protected]",
"key": "YOUR_API_KEY",
"session_id": "SESSION_ID_FROM_PREVIOUS_RESPONSE"
}
}
When
session_idis valid it is used; if expired,keystarts a fresh session. Ifkeyis absent andsession_idis expired, the call fails.
options
All fields optional.
| Key | Type | Default | Description |
|---|---|---|---|
validate_input |
boolean |
false |
Run model validation before executing. Strongly recommended. |
response_data_only |
boolean |
false |
Return only response.data from the last function, omitting the full functions array. Reduces response size. |
timeout |
int (ms) |
auto | Override solver timeout. Only use for calls that need extra time. |
return_log |
boolean |
false |
Include a process log for debugging. |
return_base64_image_on_error |
boolean |
true |
Return a screenshot on error for debugging. |
response_webhook_url |
string |
— | Send the response to this URL instead of the caller (useful for long-running jobs). |
timezone |
number |
UTC | UTC offset for report timestamps (e.g. 10 for GMT+10). |
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.
- 11d ago First seen · 259 lines · 0 tokens per session scan A fb468f7e810e
skyciv-api-v3 is a skill published in the GitHub repository skyciv/skyciv-ai-skills (7 stars, last pushed 9d ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 2,236 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.
Other skills, from other repositories
labarchive-integration
Securely integrate with the official LabArchives ELN REST-like API and Inventory API v1. Use for regional endpoint selection, signed-request construction, user authorization and UID flows, local LA container validation, and verified LabArchives integration workflows.
adaptyv
How to use the Adaptyv Bio Foundry API and Python SDK for protein experiment design, submission, and results retrieval. Use this skill whenever the user mentions Adaptyv, Foundry API, protein binding assays, protein screening experiments, BLI/SPR assays, thermostability assays, or wants to submit protein sequences for…
benchling-integration
Benchling Python SDK and REST API integration for registry entities, inventory, ELN entries, workflows, Benchling Apps, and Data Warehouse queries. Use when automating lab data with benchling-sdk or the v2 API.
earth2studio-create-datasource
Create and validate Earth2Studio data source wrappers (DataSource, ForecastSource, DataFrameSource, ForecastFrameSource) from remote stores. Do NOT use for fetching data with existing sources, model inference, or installation tasks.
assembling-fhir-bundles
Package multiple FHIR R4 resources produced from OpenMed output into a single valid transaction Bundle ready to POST to an EHR, using OpenMed's verified bundle assembler openmed.clinical.exporters.fhir.tobundle. Covers deterministic urn:uuid fullUrls, automatic in-Bundle reference rewriting, request blocks…
exporting-bulk-fhir
Kick off and harvest a FHIR Bulk Data $export (system-, group-, or patient-level) and stream the resulting NDJSON into a batch OpenMed de-identification + NER pipeline at cohort scale. Covers the async kickoff (Prefer respond-async) -> poll Content-Location -> download NDJSON flow, the Bulk Data Access IG, type/since…