pipefy-attachments

pipefy-attachments is a skill for Claude Code, Codex from pipefy/ai-toolkit. It costs 66 tokens per session (2,541 once invoked), scanned A, original, Apache-2.0.

A file-upload guide for adding one local file or web-hosted file to a Pipefy card or table record attachment field.

In plain words
What is it for?
It helps attach files using a file path, an HTTPS URL, or Pipefy's temporary upload link process.
Why use it?
It explains which upload method works when the server can or cannot read the file, including large files and sandbox-created files.

Skill for Claude CodeCodex

Part of the pipefy plugin — 18 skills, 2 commands, 1 MCP server shipped together

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/pipefy/ai-toolkit/pipefy-attachments
Any agent
npx skills add pipefy/ai-toolkit --skill pipefy-attachments
Clone the repo
git clone --depth 1 https://github.com/pipefy/ai-toolkit

Made for: Claude Code, Codex.

Or install pipefy, the plugin that ships this one along with the rest of its 18 skills, 2 commands, 1 MCP server.

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 pipefy-attachments

README.md
[![agentmods](https://agentmods.dev/badge/skills/pipefy/ai-toolkit/pipefy-attachments.svg)](https://agentmods.dev/skills/pipefy/ai-toolkit/pipefy-attachments)
Your own site
<a href="https://agentmods.dev/skills/pipefy/ai-toolkit/pipefy-attachments"><img src="https://agentmods.dev/badge/skills/pipefy/ai-toolkit/pipefy-attachments.svg" alt="Measured on agentmods" height="20"></a>
Per session 66 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,541 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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 $0.00066 $0.02541
Opus 5 $0.00033 $0.01270
Sonnet 5 $0.00013 $0.00508
Haiku 4.5 $0.00007 $0.00254

Measured 4d ago against content hash bcb85ecdb3cd, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

pipefy-attachments scanned grade A with 0 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 4d 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.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/attachments/pipefy-attachments/SKILL.md · 226 lines

How it starts

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

Attachments

Upload one file at a time to a card or table-record attachment field. The upload goes through Pipefy's presigned URL flow (request URL, S3 PUT, then field update). 3 MCP tools, 2 CLI commands.


When to use

  • The user says "attach this file to card X" or "upload to the documents field on record Y".
  • Pick the source by where the bytes actually are (see Trust model):
    • The file is on a disk the MCP server can read → file_path.
    • The file is reachable at an HTTPS URL → file_url.
    • The server can't read the file (a local file on the hosted profile), or it's larger than the 100 MiB in-tool cap → the presigned handshake (create_attachment_presigned_url; see "Uploading a file the server can't read" below), where the client does the upload.
    • The agent generated bytes in a sandbox the server cannot read → write them to a path the server can read and use file_path, or host them at a URL and use file_url.

Do not use this skill for:

  • Reading or listing existing attachments. There is no list/download tool in this skill scope. Cards and table records expose their attachments through the regular card/record fetch tools.
  • Bulk uploads. One file per call; iterate at the agent layer.

Prerequisites

  • A Pipefy organization_id. Find it via get_organization or get_pipe.
  • A target card_id or table_record_id.
  • The attachment field's slug (the human-readable id like document_upload, not the field's uuid). Find it on the card or table record fetch tools.
  • Exactly one file source: a file_path the MCP server can read, or a file_url the server can download.

Tools needed

Tool (MCP) CLI equivalent Read-only
upload_attachment_to_card pipefy attachment upload --card <id> No
upload_attachment_to_table_record pipefy attachment upload --record <id> No
create_attachment_presigned_url pipefy attachment presign No

Read the full file on GitHub · 226 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. 4d ago First seen · 226 lines · 66 tokens per session scan A bcb85ecdb3cd

Subscribe to this mod's changes

pipefy-attachments is a skill published in the GitHub repository pipefy/ai-toolkit (45 stars, last pushed today), licensed Apache-2.0. It adds 66 tokens to every session and 2,541 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

notebooklm

Install, authenticate, troubleshoot, and operate Gemini Notebook through the notebooklm-py CLI or typed async Python API. Use for notebook and source management, grounded chat and research, and artifact generation or download when the user mentions Gemini Notebook, notebooklm-py, the notebooklm CLI, or its Python API.…

teng-lin/notebooklm-py · 79 tokens

frontmcp-development

Use when building any FrontMCP server component other than a tool (for tools, use create-tool). Covers @Resource static resources and parameterized URI templates; @Prompt reusable prompts (RAG, multi-turn); @Provider singleton dependency-injection providers (database pools, API clients); @Agent autonomous LLM agents…

agentfront/frontmcp · 196 tokens

frontmcp-deployment

Use when deploying, building for production, packaging, or shipping a FrontMCP server. Covers build targets (node, cli SEA binary, browser, embeddable SDK, mcpb archive for Claude Desktop, serverless) and deploying to Vercel (with Vercel KV), AWS Lambda (API Gateway, SAM, CDK), Cloudflare Workers (KV, D1, Durable…

agentfront/frontmcp · 210 tokens

servicenow-import-attachment-batch

ServiceNow data-ingest, file, and batched-REST surface — push rows through Import Sets (single & bulk), upload/get/delete record attachments, and bundle many REST calls into one batch request via the servicenow-api MCP server. Use when the agent must load external data through a transform-mapped import set, attach or…

Knuckles-Team/servicenow-api · 144 tokens

wjx-survey-ppt

将问卷星问卷的回收数据自动生成为可演示的 PPT 报告。Use when the user mentions: 问卷报告/问卷PPT/问卷分析报告/调查报告/满意度报告/NPS报告/把问卷做成PPT/导出PPT/生成幻灯片 — or asks to convert a survey result into a slide deck. 与 wjx-cli-use 配合:先用 wjx-cli 拉取问卷结构与答卷数据,再调 ppt-master-survey 渲染引擎生成 .pptx 文件,全程不需要用户手动导出数据。.

wjxcom/wjx-ai-kit · 140 tokens

wjx-cli-use

Guide for using wjx-cli (Wenjuanxing CLI) to create surveys, query responses, and analyze data. Use when the user mentions: 问卷, 调查, 收集, 表单, 投票, 考试, 测评, 满意度, NPS, 问卷星, wjx, survey, questionnaire, or wants to create surveys, view responses, export data, analyze NPS/CSAT, or manage contacts, departments, and sub-accounts.

wjxcom/wjx-ai-kit · 108 tokens