access-request-intake
Collect a complete system-access request from the user and file it via the IT service desk. Use when someone asks to request, grant, or set up…
Decode an encoded message using the bundled cipher scripts. Use when handed a hex-encoded or otherwise scrambled blob and asked for its plaintext; run the scripts rather than reasoning about the bytes by hand.
$ npx -y skills add archestra-ai/archestra --skill cipher-decoder --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/cipher-decoderContext preview
The summary Claude sees to decide when to auto-load this skill.
Decode an encoded message using the bundled cipher scripts. Use when handed a hex-encoded or otherwise scrambled blob and asked for its plaintext; run the scripts rather than reasoning about the bytes by hand.
name: cipher-decoder description: Decode an encoded message using the bundled cipher scripts. Use when handed a hex-encoded or otherwise scrambled blob and asked for its plaintext; run the scripts rather than reasoning about the bytes by hand.
These ciphers are bespoke — a scheme cannot be recovered from the ciphertext alone — so always decode with the bundled scripts rather than guessing the bytes by hand.
`scripts/` holds decoders for several schemes (each script's header says which one it handles), and the per-scheme key constants live in the params file (`parameters.txt`), one row per scheme. The scripts do not hard-code those constants — pass them on the command line.
A blob decodes cleanly under exactly one scheme: the right script and row print readable text, while every other combination runs without error but prints garbage. If you don't already know the scheme, work through the rows and keep the output that reads as plain language. The hex decoder runs as:
perl /skills/cipher-decoder/scripts/decode.pl --mult <m> --add <a> <hex-ciphertext>
The decoder prints the plaintext to stdout (no trailing newline).
Enterprise AI Platform with guardrails, MCP registry, gateway & orchestrator
Repo: archestra-ai/archestra
Collect a complete system-access request from the user and file it via the IT service desk. Use when someone asks to request, grant, or set up…
Provides the Q3 sales ledger workbook for reporting tasks. Use when a task asks you to compute bonuses or totals over the sales ledger; the data lives only in…