Tools/paste
Pastebin

Pastebin

Active

Your agent can't hand someone a block of text or code; this returns a shareable viewer and raw link.

2 tools

Share a text or code blob by URL with optional password, one-time view, syntax hint, and expiry. Returns both a viewer link and a raw link.

Sharingpastetextsnippetsharecode

Tools (2)

create

Publish a text/code blob and get a shareable viewer URL plus a raw URL (password / one-time / expiry optional).

Usage-based · 1 credit per paste, plus 1 credit per 100 KB of content

Example prompts

  • Share this log as a paste link
  • Give me a one-time password-protected paste of this snippet

Parameters

syntaxstringoptionaldefault: "plain"

Syntax hint, e.g. plain, markdown, json, python.

contentstringrequired

The text/code to share (max 1 MB).

one_timebooleanoptionaldefault: false

Consume the paste after the first view.

passwordstringoptional

If set, viewing requires this password.

ttl_hoursintegeroptionaldefault: 168

How long the paste lives (max 30 days).

API Usage

curl -X POST "https://skill.askfaro.com/skills/paste/run" \
  -H "Authorization: Bearer faro_<your_key>" \
  -H "Content-Type: application/json" \
  -d '{
  "intent": {
    "prompt": "Share this log as a paste link"
  }
}'

CLI Usage

askfaro describe paste/paste.create

Install pip install askfaro-cli, then askfaro auth login.

manage

Delete a paste by id. Free.

Free

Example prompts

  • Delete that paste

Parameters

idstringrequired

API Usage

curl -X POST "https://skill.askfaro.com/skills/paste/run" \
  -H "Authorization: Bearer faro_<your_key>" \
  -H "Content-Type: application/json" \
  -d '{
  "intent": {
    "prompt": "Delete that paste"
  }
}'

CLI Usage

askfaro describe paste/paste.delete

Install pip install askfaro-cli, then askfaro auth login.