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 agentmods add skills/crowdstrike/fusion-skills/deploymentnpx skills add CrowdStrike/fusion-skills --skill deploymentgit clone --depth 1 https://github.com/CrowdStrike/fusion-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/crowdstrike/fusion-skills/deployment)<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>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 | $0.00065 | $0.04417 |
| Opus 5 | $0.00032 | $0.02209 |
| Sonnet 5 | $0.00013 | $0.00883 |
| Haiku 4.5 | $0.00006 | $0.00442 |
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.
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 — 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:
- ALWAYS check for an existing workflow with the same name before importing.
- ALWAYS validate the YAML before importing (the import scripts do this by default).
- 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-validateto get past a validation failure. Validation catches invalid workflows (e.g. a badtrigger.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_idif 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 throughdelete_workflow.py(orscripts/cleanup_workflows.py), which wrap the supported endpoints. Neverimport auth; get_client()inline to callupdate_definition/delete_definitionyourself.
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.
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.
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.
- 4d ago First seen · 305 lines · 65 tokens per session scan A d6cf653f3e14
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.
Other skills, from other repositories
ci-cd-workflows
Guide for GitHub Actions workflows, test orchestration, parallel testing, adapter builds, releases, and CI/CD configuration. Use when working with .github/workflows/, versions.json, or troubleshooting CI issues.
github-release-management
Comprehensive GitHub release orchestration with AI swarm coordination for automated versioning, testing, deployment, and rollback management.
ci-cd
Create and debug GitHub Actions CI/CD pipelines: workflow authoring, matrix builds, caching, secrets, deployment steps.
github-release-management
GitHub release orchestration — automated versioning, testing, deployment, and rollback. Use when cutting a release, tagging a version, drafting release notes, or coordinating a deploy/rollback workflow.
ci-cd-pipeline
Create and optimize CI/CD pipelines with GitHub Actions, automated testing, deployment, and release workflows. Use when setting up continuous integration, deployment automation, or improving build pipelines.
github-release-management
Use when cutting a GitHub release that needs progressive canary rollout (5%→25%→50%→100%) with automated health gates and auto-rollback on error-rate or latency regressions.