pipefy-pipes-and-cards

pipefy-pipes-and-cards is a skill for Claude Code from pipefy/ai-toolkit. It costs 74 tokens per session (4,087 once invoked), scanned A, original, Apache-2.0.

A toolkit for managing Pipefy processes and the cards, stages, fields, labels, comments, and files inside them.

In plain words
What is it for?
Use it to inspect or create processes, organize stages, manage cards and fields, add comments or attachments, and safely update or delete items.
Why use it?
It removes the need to handle each part of a Pipefy workflow manually or through separate low-level operations.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

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

Good fit Use it to inspect or create processes, organize stages, manage cards and fields, add comments or attachments, and safely update or delete items.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/pipefy/ai-toolkit/pipefy-pipes-and-cards
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.

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

Made for: Claude Code.

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-pipes-and-cards

README.md
[![agentmods](https://agentmods.dev/badge/skills/pipefy/ai-toolkit/pipefy-pipes-and-cards/github.svg)](https://agentmods.dev/skills/pipefy/ai-toolkit/pipefy-pipes-and-cards)
Your own site
<a href="https://agentmods.dev/skills/pipefy/ai-toolkit/pipefy-pipes-and-cards"><img src="https://agentmods.dev/badge/skills/pipefy/ai-toolkit/pipefy-pipes-and-cards/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for pipefy-pipes-and-cards

Your own site · 80×15
<a href="https://agentmods.dev/skills/pipefy/ai-toolkit/pipefy-pipes-and-cards"><img src="https://agentmods.dev/badge/skills/pipefy/ai-toolkit/pipefy-pipes-and-cards.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 74 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 4,087 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
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.1 $0.00074 $0.04087
Opus 5 $0.00037 $0.02044
Sonnet 5 $0.00015 $0.00817
Haiku 4.5 $0.00007 $0.00409

Measured 12d ago against content hash 2c76c1db9edf, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

pipefy-pipes-and-cards 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 12d 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/pipes-and-cards/pipefy-pipes-and-cards/SKILL.md · 249 lines

How it starts

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

Pipes & Cards

Read, create, update, and delete pipes, phases, phase fields, labels, cards, attachments, and field conditions. 40 MCP tools.


Cross-cutting patterns

  • Field types are not validated locally — use introspect_type (e.g., on CreatePhaseFieldInput) for allowed values.
  • Most write tools support debug=true on errors (returns GraphQL codes + correlation_id).
  • extra_input merges extra API keys (camelCase); keys that duplicate primary arguments are ignored.
  • Phase connections are UI-only. Creating or reordering phases does not wire Phase Connections / allowed_phases. Configure edges in the Pipefy UI; use get_phase_allowed_move_targets before moves. The API cannot add transition edges.
  • Verify-after-write. After create/update, re-read with the matching get tool (get_pipe, get_card, get_phase_fields, etc.) before reporting success. Do not treat the write response alone as proof.
  • Destructive MCP deletes are two-step: the preview includes confirmation_token; echo it with confirm=true on the second call. CLI uses --yes.

Pipe operations

Tool (MCP) CLI Read-only Purpose
get_pipe pipefy pipe get <id> Yes Fetch pipe metadata including phases and fields.
search_pipes pipefy pipe list Yes Search by name pattern.
create_pipe pipefy pipe create No Create a new pipe in the org.
update_pipe pipefy pipe update <id> No Rename or change pipe settings.
delete_pipe pipefy pipe delete <id> No Two-step destructive.
clone_pipe pipefy pipe clone <id> No Clone an existing pipe.
get_pipe_members pipefy member list --pipe <id> Yes List members of a pipe.

Steps — create a pipe with phases

  1. Create the pipe:

    MCP: create_pipe name="Customer Onboarding" organization_id=123

    CLI: pipefy pipe create --name "Customer Onboarding" --org 123

  2. Add phases — call create_phase for each phase (see Phase section below). Omit index to append after existing workflow phases, or pass a 1-based index to insert among phases returned by get_pipe. Prefer 1 or higher; index: 0 creates a phase that does not appear in get_pipe's phases list. index only controls order — it does not wire Phase Connections / allowed_phases (configure those in the Pipefy UI; use get_phase_allowed_move_targets before moves).

Read the full file on GitHub · 249 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. 12d ago First seen · 249 lines · 74 tokens per session scan A 2c76c1db9edf

Subscribe to this mod's changes

pipefy-pipes-and-cards is a skill published in the GitHub repository pipefy/ai-toolkit (46 stars, last pushed today), licensed Apache-2.0. It adds 74 tokens to every session and 4,087 once invoked, about $0.0004 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

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

wjx-survey-ppt

Instructions for turning Wenjuanxing questionnaire responses into a presentation report. Wenjuanxing, also called 问卷星, is a platform for creating surveys and collecting answers.

wjxcom/wjx-ai-kit · 140 tokens

wjx-mcp-use

A guide for using Wenjuanxing, a Chinese online questionnaire platform, through connected tools. It covers creating and editing surveys, reading responses, analyzing data, managing contacts, and generating sign-in links.

wjxcom/wjx-ai-kit · 113 tokens

qrgenid

A Windows-only tool that reads an Excel workbook and creates batches of QR codes. Each QR code contains a URL, with its ID shown as text below it, and the results include an updated workbook and image files.

wjxcom/wjx-ai-kit · 60 tokens

metagit-projects

Ongoing workspace and project management for OpenClaw and Hermes agents. Use when starting work, organizing repos, or before creating a new project folder so existing metagit projects are reused instead of duplicated.

metagit-ai/metagit-cli · 45 tokens

metagit-rewrite-campaign

Orchestrate a reference-implementation rewrite across source and target repos using campaigns, parity registry conventions, objectives, and subagent handoffs.

metagit-ai/metagit-cli · 35 tokens