Use this skill when the user wants to encrypt or decrypt files using XOR cipher.
Scanned 9/6/2026
Install to Claude Code
npx -y skills add javimosch/supercli --skill quickstart --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Quickstart?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/javimosch-quickstart-057d2678)More formats (shields.io, HTML) on the badges page.
---
name: fxor
description: Use this skill when the user wants to encrypt or decrypt files using XOR cipher.
---
# fxor Plugin
File encryption CLI using XOR cipher for simple symmetric encryption/decryption.
## Commands
### File Encryption
- `fxor file encrypt` — Encrypt files using XOR cipher with a key
## Usage Examples
- "Encrypt this file with XOR"
- "XOR encrypt this data"
- "Decrypt this XOR-encrypted file"
## Installation
```bash
cargo install fxor
```
## Examples
```bash
fxor encrypt -k mykey -i secret.txt -o secret.enc
fxor decrypt -k mykey -i secret.enc -o secret.txt
fxor encrypt -k mykey secret.txt
```
## Key Features
- XOR cipher encryption/decryption
- Key-based operation
- Stream processing
- Fast Rust implementation
- Simple and lightweight
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!