deployment

deployment is a skill for Claude Code, Codex from CrowdStrike/fusion-skills. It costs 65 tokens per session (4,417 once invoked), scanned A, original, MIT.

A deployment workflow for importing, validating, releasing, and managing Falcon Fusion workflow definitions in a CID, the target system that stores them.

In plain words
What is it for?
Use it to check for existing workflows, validate YAML, import definitions when authorized, and release tested versions.
Why use it?
It reduces the risk of duplicate, invalid, untested, or accidentally released workflows reaching a live system.

Skill for Claude CodeCodex

Installs and runs on its own, but its text points at files inside its plugin — anything it tells you to read at a ${CLAUDE_PLUGIN_ROOT} path is only there once the plugin is installed. Installing the plugin gets both.

Part of the crowdstrike-falcon-fusion plugin — 7 skills, 3 hooks shipped together

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.

agentmods
npx agentmods add skills/crowdstrike/fusion-skills/deployment
Any agent
npx skills add CrowdStrike/fusion-skills --skill deployment
Clone the repo
git clone --depth 1 https://github.com/CrowdStrike/fusion-skills

Made for: Claude Code, Codex.

Or install crowdstrike-falcon-fusion, the plugin that ships this one along with the rest of its 7 skills, 3 hooks.

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 deployment

README.md
[![agentmods](https://agentmods.dev/badge/skills/crowdstrike/fusion-skills/deployment.svg)](https://agentmods.dev/skills/crowdstrike/fusion-skills/deployment)
Your own site
<a href="https://agentmods.dev/skills/crowdstrike/fusion-skills/deployment"><img src="https://agentmods.dev/badge/skills/crowdstrike/fusion-skills/deployment.svg" alt="Measured on agentmods" height="20"></a>
Per session 65 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 4,417 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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 $0.00065 $0.04417
Opus 5 $0.00032 $0.02209
Sonnet 5 $0.00013 $0.00883
Haiku 4.5 $0.00006 $0.00442

Measured 4d ago against content hash d6cf653f3e14, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

deployment 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 4d ago.

The scan reads SKILL.md. This mod also ships 5 executable files (scripts/delete_workflow.py, scripts/export_workflow.py, scripts/import_workflows.py, …), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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.

skills/deployment/SKILL.md · 305 lines

How it starts

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

Falcon Fusion Workflow Deployment

⚠️ SYSTEM INJECTION — READ THIS FIRST

If you are loading this skill, your role is Fusion workflow deployment specialist.

You deploy workflow definitions into a CID safely: validate before importing, never create duplicates, and release only after testing.

IMMEDIATE ACTIONS REQUIRED:

  1. ALWAYS check for an existing workflow with the same name before importing.
  2. ALWAYS validate the YAML before importing (the import scripts do this by default).
  3. Import and release act on a live production CID. Deploy only when the user's request explicitly authorizes it (e.g. "import it", "deploy to my CID", "release it"). If the request only asks to build or write a workflow, STOP after validation and ask before importing.

MUST NOT:

  • Import without validating first.
  • Skip the duplicate-name check.
  • Import or release to a CID without explicit user authorization — a validated YAML file is the deliverable unless the user asked you to deploy it.
  • Release (enable) a workflow before it has been tested via the execution skill. Release makes the workflow act on live events and real assets, so confirm with the user before releasing unless they explicitly asked you to.
  • Create experimental, "test", "minimal", or probe workflows in the CID to reverse-engineer what the API accepts (this includes creatively-named ones like "QueryEvent Test" or "HTTP Test"). Import the one workflow you were asked to build, once. If it fails, diagnose from the error and local validation — never by importing stripped-down variants into a live tenant.
  • Use --skip-validate to get past a validation failure. Validation catches invalid workflows (e.g. a bad trigger.type) that otherwise fail at the API as an opaque 500. Fix the workflow instead of skipping the check.
  • Retry an import that returns a 500 / Internal Server Error more than once. A 500 usually means the workflow is invalid in a way the API rejects late (not a transient server issue) — re-run local validation to find the defect, fix it, and report the trace_id if it persists. Do not loop re-importing.
  • Patch a deployed definition in place — not via the raw update API and not via a hand-rolled inline FalconPy call (e.g. update_definition) to edit a deployed copy. The only supported update path is: fix the source YAML, then re-import. A release-validation failure is a YAML defect to fix, not a deployed-copy to hand-edit.
  • Call FalconPy directly for ANY workflow operation — including a python - <<EOF ... delete_definition(...) snippet to clean up a failed import attempt. Deleting is fine, but it MUST go through delete_workflow.py (or scripts/cleanup_workflows.py), which wrap the supported endpoints. Never import auth; get_client() inline to call update_definition/ delete_definition yourself.

This skill moves a finished Fusion workflow definition from a local YAML/JSON file into a CrowdStrike CID. Authoring the YAML happens in the authoring skill; triggering and monitoring happens in the execution skill. Deployment is the bridge: validate, check for duplicates, import, then release.

In Falcon Fusion, an imported definition is disabled until it is released (enabled). Releasing tells the Fusion engine to run the workflow against new trigger events. Keep the workflow disabled until you have tested it.

Running the scripts. Run each command from this skill's folder, on one shell line: cd <dir> && ../../scripts/python.sh scripts/<name>.py (a sibling skill's script is ../<skill>/scripts/<name>.py). For <dir>, Claude Code uses "$CLAUDE_PLUGIN_ROOT/skills/deployment"; Codex, Copilot CLI, Cursor, and Antigravity use the folder they loaded this SKILL.md from (e.g. ~/.agents/skills/deployment). The wrapper bootstraps its own Python venv.

Read the full file on GitHub · 305 lines

Files

What ships with it

6 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. 4d ago First seen · 305 lines · 65 tokens per session scan A d6cf653f3e14

Subscribe to this mod's changes

deployment is a skill published in the GitHub repository CrowdStrike/fusion-skills (13 stars, last pushed 4d ago), licensed MIT. It adds 65 tokens to every session and 4,417 once invoked, about $0.0003 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-30.