# Pastebin

> Skill `paste` on Faro. 2 sub-skills.

Share any block of text or code at a shareable link in seconds. Pastes support optional syntax highlighting, password protection, one-time access (the link self-destructs after one view), and automatic expiry. Ideal for sharing logs, code snippets, config files, or any text you want to pass along without attachments.

**Category:** Sharing  
**Tags:** paste, text, snippet, share, code  
**Use when:** You need to share a block of text or code at a link.  
**Not for:** Sharing a binary file (use the file share) or a small value by key (use the key-value store).  
**Returns:** information

## How to run
Skills run through one gateway with your Faro token. Hand it an `intent` in plain language; Faro routes to the right sub-skill, runs it, and bills per call. Raw tools are internal plumbing and are not directly callable.

```
POST https://skill.askfaro.com/skills/paste/run
Authorization: Bearer faro_<your_key>
Content-Type: application/json

{"intent":{"prompt":"Create a paste with this Python script and give me the link."}}
```

Or from the CLI:

```bash
pip install askfaro-cli && askfaro auth login
askfaro run paste "Create a paste with this Python script and give me the link."
```

Full run reference: https://askfaro.com/llms/run.md — Agent recipe: https://askfaro.com/llms/skill.md

## Example requests

- Create a paste with this Python script and give me the link.
- Delete the paste I just created.

## Sub-skills

### Create a paste

Stores a text snippet at a link and returns the link.

**Cost:** ~1 credits / paste — 1 credit per paste, plus 1 credit per 100 kilobytes of content.

**Details:** https://askfaro.com/llms/skills/paste/create.md

---

### Delete a paste

Deletes a previously created paste.

**Cost:** Free

**Details:** https://askfaro.com/llms/skills/paste/delete.md

---

---
On the web: https://askfaro.com/search/paste