cybrix-deploy

cybrix-deploy is a skill for Claude Code from cybrixcc/cybrix-skills. It costs 323 tokens per session (2,838 once invoked), scanned D, original, MIT.

A deployment skill that publishes the current project at a live HTTPS web address through Cybrix. HTTPS is the encrypted form of a web connection.

In plain words
What is it for?
Use it when putting the current project online, hosting it, publishing it, or obtaining a shareable URL.
Why use it?
It handles the checks and steps needed to make a project publicly reachable, including detecting whether it is static or server-based and checking for a deployment token.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter. Also seen: mentions Claude Code.

Runs only inside its plugin — its command needs a path that Claude Code sets for a plugin’s own hooks and for nothing else. Install the plugin, not this.

Part of the cybrix-deploy plugin — 1 skill shipped together

Good fit Use it when putting the current project online, hosting it, publishing it, or obtaining a shareable URL.

Compare 6 skills from other repositories ↓
Install

Getting it into your agent

This one installs as part of its plugin. Adding the marketplace and installing the plugin brings it with everything else the plugin ships.

Claude Code
/plugin marketplace add cybrixcc/cybrix-skills
Claude Code
/plugin install cybrix-deploy

Made for: Claude Code.

Or install cybrix-deploy, the plugin that ships this one along with the rest of its 1 skill.

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 cybrix-deploy

README.md
[![agentmods](https://agentmods.dev/badge/skills/cybrixcc/cybrix-skills/cybrix-deploy.svg)](https://agentmods.dev/skills/cybrixcc/cybrix-skills/cybrix-deploy)
Your own site
<a href="https://agentmods.dev/skills/cybrixcc/cybrix-skills/cybrix-deploy"><img src="https://agentmods.dev/badge/skills/cybrixcc/cybrix-skills/cybrix-deploy.svg" alt="Measured on agentmods" height="20"></a>
Per session 323 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,838 The whole file, excluding the scripts and references it only reads on demand.
Security scan D 2 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.00323 $0.02838
Opus 5 $0.00161 $0.01419
Sonnet 5 $0.00065 $0.00568
Haiku 4.5 $0.00032 $0.00284

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

Security

Grade D, and why

cybrix-deploy scanned grade D with 2 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 7d 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.

Tells the agent never to refusehighAnti-refusal

Suppressing the ability to decline removes a core safety control; a later harmful request then succeeds.

Warn the user, don't refuse.

Unrestricted tool accessmediumExcessive agency

A wildcard tool grant or "run any command" leaves no least-privilege boundary at all.

chat, use it immediately — do not require them to re-run any command.
plugins/cybrix-deploy/skills/cybrix-deploy/SKILL.md · 266 lines

How it starts

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

cybrix-deploy

Prerequisites

Before deploying, ensure the user has an API token. Check in this order:

  1. CYBRIX_DEPLOY_TOKEN — set automatically by Claude Code from userConfig keychain (no action needed).
  2. Environment variable CYBRIX_TOKEN.
  3. File ~/.config/cybrix/token.
  4. File .cybrix/token in the project (gitignored).

If none exist, instruct the user exactly like this:

No Cybrix token found. Get one free at https://app.cybrix.cc/dashboard (Step 3 — "Save your API token" → Generate).

Once you have it, you can either:

  • Paste it here and I'll use it for this deploy (easiest)
  • Run export CYBRIX_TOKEN=<token> in your terminal to set it for this session
  • Run echo <token> > ~/.config/cybrix/token to save it permanently

Then wait for the user to provide the token. If they paste it directly in chat, use it immediately — do not require them to re-run any command. The project is ready to deploy once the token is available.

Deployment workflow

Step 1 — Detect project type (heuristic)

Do not rely on a framework whitelist. Instead, look for signals and classify the project as static, server, or unknown.

Static signals (proceed with deploy):

  • package.json has a build script AND output lands in dist/, out/, build/, public/, _site/, or .output/public/
  • next.config.{js,ts,mjs} with output: 'export' or output: 'static'
  • astro.config.{js,ts,mjs} present (default mode is static)
  • vite.config.{js,ts} without SSR plugins
  • _config.yml (Jekyll), config.toml or hugo.toml (Hugo), .eleventy.js / eleventy.config.js (Eleventy), zola.toml (Zola)
  • Only HTML/CSS/JS files at root, no server entry point

Server signals (refuse — see below):

  • Dockerfile or docker-compose.yml (unless it only copies a static dist/)
  • main.go, server.go, or any *.go containing net/http or ListenAndServe
  • main.py, app.py, server.py with uvicorn, gunicorn, flask, fastapi imports, or a if __name__ == '__main__' block calling app.run / serve / asyncio.run
  • main.rs or server.rs with actix, axum, rocket, warp, or tokio::main
  • package.json with a start script that runs node/tsx/bun on a server file (NOT next start in a static-export config)
  • Gemfile with puma, unicorn, rails, or sinatra
  • pom.xml or build.gradle with spring-boot
  • .csproj with ASP.NET

Read the full file on GitHub · 266 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. 7d ago First seen · 266 lines · 323 tokens per session scan D ff84ac1f7ed9

Subscribe to this mod's changes

cybrix-deploy is a skill published in the GitHub repository cybrixcc/cybrix-skills (79 stars, last pushed 4mo ago), licensed MIT. It adds 323 tokens to every session and 2,838 once invoked, about $0.0016 per session on Opus 5. A static security scan graded it D with 2 findings (tells the agent never to refuse, unrestricted tool access). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.