zuar-portal-mcp: Agent for Claude Code

.claude/agents/portal-bulk-operator.md

portal-bulk-operator is an agent for Claude Code from patrickdeanfox/zuar-portal-mcp. It costs 87 tokens per session (1,360 once invoked), scanned A, original, MIT.

An agent for applying the same controlled change across many blocks or pages in a portal, such as renaming, restyling, retagging, rebinding, or replacing a design token.

In plain words
What is it for?
It is for bulk portal maintenance, including changing groups of blocks or pages while planning, validating, verifying, and documenting recovery.
Why use it?
Large repeated edits can leave some items partly changed or break their data connections. It uses snapshots, a dry-run plan, per-item checks, and rollback guidance to reduce that risk.

Agent for Claude Code

Written for Claude Code: effort in frontmatter. Also seen: model in frontmatter.

This is patrickdeanfox/zuar-portal-mcp's own configuration. It tells Claude Code how to work on zuar-portal-mcp itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything zuar-portal-mcp configures →

Reuse

Borrowing it

Nothing to install: this file belongs to patrickdeanfox/zuar-portal-mcp. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/patrickdeanfox/zuar-portal-mcp/main/.claude/agents/portal-bulk-operator.md
Clone the repo
git clone --depth 1 https://github.com/patrickdeanfox/zuar-portal-mcp

Made for: Claude Code.

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 portal-bulk-operator

README.md
[![agentmods](https://agentmods.dev/badge/agents/patrickdeanfox/zuar-portal-mcp/portal-bulk-operator/github.svg)](https://agentmods.dev/agents/patrickdeanfox/zuar-portal-mcp/portal-bulk-operator)
Your own site
<a href="https://agentmods.dev/agents/patrickdeanfox/zuar-portal-mcp/portal-bulk-operator"><img src="https://agentmods.dev/badge/agents/patrickdeanfox/zuar-portal-mcp/portal-bulk-operator/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 portal-bulk-operator

Your own site · 80×15
<a href="https://agentmods.dev/agents/patrickdeanfox/zuar-portal-mcp/portal-bulk-operator"><img src="https://agentmods.dev/badge/agents/patrickdeanfox/zuar-portal-mcp/portal-bulk-operator.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 87 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 1,360 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.
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.00087 $0.01360
Opus 5 $0.00044 $0.00680
Sonnet 5 $0.00017 $0.00272
Haiku 4.5 $0.00009 $0.00136

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

Security

Grade A, and why

portal-bulk-operator 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 10d 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.

Origin

Copies of this mod

1 near-identical copy found in the catalogue:

.claude/agents/portal-bulk-operator.md · 42 lines

How it starts

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

You are the Bulk Operator — you make the same change across many blocks or pages without breaking any of them. One-off edits are someone else's job; you exist for the fan-out, where the risk is a silent partial failure across dozens of items. Your value is discipline, not speed: snapshot, plan, confirm, apply carefully, verify, and hand back a clean rollback path. A bulk change that wipes bindings or races itself is worse than no change.

Ground yourself first (every time)

Read the canonical references in this repo — they are the source of truth, do not work from memory:

  • assets/conventions.md — especially Block data binding (the ui_queries re-send rule), section separation, the $ trap, and re-render cleanup. Every block you touch must still satisfy these after your edit.
  • assets/design.md — if the bulk change is a restyle/token swap, the change must land toward the house system, not away from it.

The live portal is v1.19 (confirm with check_connection). Every write is mirrored to the version-control repo when configured (vc_status), so each item you change is individually revertible with restore_resource.

The two footguns that define this role

  • update_block that omits ui_queries wipes the binding — the block goes blank. On every update: get_resource resource="block" first and re-send the existing ui_queries verbatim alongside your change. This is non-negotiable in a loop, where one dropped binding hides among many successes.
  • Placing blocks on a page: one declarative place_blocks call. It is an atomic read-modify-write — pass the full intent in one call: {layout_id, blocks:[{block_id, position?, height?, hidden?}], remove:[…], mode:"merge"} to append/update/remove, or mode:"replace" + confirm:true when the page must become exactly the list (it preserves customized grid.layouts and survivors' hidden flags). Never assemble a page through a series of separate per-block writes — build the full intended placement and write it once.

Read the full file on GitHub · 42 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. 10d ago First seen · 42 lines · 0 tokens per session scan A efd58d0a7d8d

Subscribe to this mod's changes

portal-bulk-operator is an agent published in the GitHub repository patrickdeanfox/zuar-portal-mcp (1 stars, last pushed 1mo ago), licensed MIT. It adds 87 tokens to every session and 1,360 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-31.

Related

Other agents, from other repositories

project-implementer

Implementation specialist - executes tasks from plans with TDD methodology, writes tests, and validates acceptance criteria. Use for executing phased implementation plans generated by attune:plan.

athola/claude-night-market · 38 tokens

scrum-master

Scrum Master agent (Bob) — generates story files from Epic Manifest rows and the delivery file.

LuisFelipeMoro/Harness-devkit · 24 tokens

onboard-guide

Onboarding assistant that provides ongoing personalized guidance after initial /onboard. Use for questions about conventions, architecture, patterns, or "where do I put this?" — answers are tailored to the engineer's background.

smicolon/ai-kit · 46 tokens

jira-analyst

Read full Jira ticket context (description, comments, attachments, links, media) and produce structured analysis suitable for posting back as a Jira comment. Read-only via the jira-as CLI wrapper. Routed by mk:jira-analyst skill. NOT for complexity scoring (jira-evaluator); NOT for story-point estimation…

ngocsangyem/MeowKit · 72 tokens

pm-advisor

You are pm-advisor — great-pm's external-perspective product advisor. You are NOT a process reviewer. You are the seasoned operator the founder pulls aside and says: "Be honest — what do you actually think of this?".

VandanaAjayDubey111/great-pm · 123 tokens

goals-onboarding

Use this agent to set up the OKR/goals system for a new company or project. Guides the user through defining annual objectives, key results, team quarterly OKRs, initiatives, tasks, support functions, and org chart. Generates YAML files following the workspace goals schema. Examples: Context: User wants to set up…

41fred/ace-level1 · 206 tokens