crowdstrike-api

crowdstrike-api is a skill for Claude Code from Liberty91LTD/cti-skills. It costs 54 tokens per session (2,871 once invoked), scanned A, original, MIT.

Reference material and lookup support for CrowdStrike Falcon Intelligence, a cybersecurity service that collects information about threats, attackers, malware, and vulnerabilities.

In plain words
What is it for?
Use it to look up indicators of compromise, threat actors, intelligence reports, MITRE ATT&CK mappings, malware families, vulnerabilities, and related rule sets.
Why use it?
It gives an agent the details needed to form authenticated requests and interpret threat-intelligence results.

Skill for Claude Code

Written for Claude Code: user-invocable in frontmatter.

Good fit Use it to look up indicators of compromise, threat actors, intelligence reports, MITRE ATT&CK mappings, malware families, vulnerabilities, and related rule sets.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/liberty91ltd/cti-skills/crowdstrike-api
Install

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.

Any agent
npx skills add Liberty91LTD/cti-skills --skill crowdstrike-api
Clone the repo
git clone --depth 1 https://github.com/Liberty91LTD/cti-skills

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 crowdstrike-api

README.md
[![agentmods](https://agentmods.dev/badge/skills/liberty91ltd/cti-skills/crowdstrike-api/github.svg)](https://agentmods.dev/skills/liberty91ltd/cti-skills/crowdstrike-api)
Your own site
<a href="https://agentmods.dev/skills/liberty91ltd/cti-skills/crowdstrike-api"><img src="https://agentmods.dev/badge/skills/liberty91ltd/cti-skills/crowdstrike-api/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 crowdstrike-api

Your own site · 80×15
<a href="https://agentmods.dev/skills/liberty91ltd/cti-skills/crowdstrike-api"><img src="https://agentmods.dev/badge/skills/liberty91ltd/cti-skills/crowdstrike-api.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 54 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,871 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. 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.00054 $0.02871
Opus 5 $0.00027 $0.01435
Sonnet 5 $0.00011 $0.00574
Haiku 4.5 $0.00005 $0.00287

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

Security

Grade A, and why

crowdstrike-api scanned grade A with 1 finding 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 9d 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.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

TOKEN=$(curl -s -X POST "https://api.crowdstrike.com/oauth2/token" \
skills/crowdstrike-api/SKILL.md · 160 lines

How it starts

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

CrowdStrike Falcon Intelligence (Intel) API

This is reference documentation. The agent-invokable lookup skill is /lookup-crowdstrike; the runtime CLI is tools/clis/crowdstrike.py. Read this file when the lookup skill's options are not enough and you need to know which raw endpoint to hit, what fields a response carries, or how to construct an FQL query the CLI does not expose directly.

Source of truth: https://developer.crowdstrike.com/api-reference/collections/intel/

Base URL

OAuth2 base differs by cloud region. The Intel path prefix is /intel/.

Cloud Base URL
US-1 (default) https://api.crowdstrike.com
US-2 https://api.us-2.crowdstrike.com
EU-1 https://api.eu-1.crowdstrike.com
US-GovCloud https://api.laggar.gcw.crowdstrike.com

Override with CROWDSTRIKE_BASE_URL (or --base-url). FalconPy also accepts the short names us-1, us-2, eu-1, usgov1.

Authentication

OAuth2 client-credentials flow:

  1. POST /oauth2/token with form-encoded client_id and client_secret.
  2. Response: {"access_token": "<jwt>", "expires_in": 1799, "token_type": "bearer"}.
  3. All subsequent requests carry Authorization: Bearer <access_token>.

FalconPy performs this exchange and refresh automatically when given client_id= / client_secret=.

# Manual token exchange
TOKEN=$(curl -s -X POST "https://api.crowdstrike.com/oauth2/token" \
  -d "client_id=$CROWDSTRIKE_CLIENT_ID&client_secret=$CROWDSTRIKE_CLIENT_SECRET" | jq -r .access_token)

# Subsequent call
curl -s "https://api.crowdstrike.com/intel/combined/actors/v1?filter=origins.slug%3A%27ru%27&limit=10" \
  -H "Authorization: Bearer $TOKEN"

The API client needs the Intel scopes: Indicators (Falcon Intelligence): Read, Actors (Falcon Intelligence): Read, Reports (Falcon Intelligence): Read, and Rules (Falcon Intelligence): Read for rule-set endpoints. Create it in the Falcon console → Support and resources → API clients and keys. If the env vars are unset, inform the user to run /cti-setup or ./scripts/setup.sh.

Read the full file on GitHub · 160 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. 9d ago First seen · 160 lines · 54 tokens per session scan A 8ed858e47b5f

Subscribe to this mod's changes

crowdstrike-api is a skill published in the GitHub repository Liberty91LTD/cti-skills (17 stars, last pushed 1mo ago), licensed MIT. It adds 54 tokens to every session and 2,871 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.