pixeltable-pipeline-architect

pixeltable-pipeline-architect is an agent for Claude Code from pixeltable/pixeltable-skill. It costs 62 tokens per session (482 once invoked), scanned A, original, Apache-2.0.

A design assistant for Pixeltable, a system for storing and processing multimodal data such as text, images, video, and audio. It helps choose tables, filtered or expanding views, automatic derived fields, reusable Python functions, and search indexes.

In plain words
What is it for?
Use it to plan schemas, split documents or media into rows, derive values automatically, add reusable functions, and prepare data for search or machine-learning exports.
Why use it?
It helps turn an AI or machine-learning data workflow into a clear data model instead of relying on manual scripts or pandas as the main store.

Agent for Claude Code

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

Part of the pixeltable plugin — 1 skill, 2 commands, 2 agents, 2 hooks shipped together

Good fit Use it to plan schemas, split documents or media into rows, derive values automatically, add reusable functions, and prepare data for search or machine-learning exports.

Compare 6 agents from other repositories ↓
Install with agentmods
npx agentmods add agents/pixeltable/pixeltable-skill/pixeltable-pipeline-architect
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.

Clone the repo
git clone --depth 1 https://github.com/pixeltable/pixeltable-skill

Made for: Claude Code.

Or install pixeltable, the plugin that ships this one along with the rest of its 1 skill, 2 commands, 2 agents, 2 hooks.

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 pixeltable-pipeline-architect

README.md
[![agentmods](https://agentmods.dev/badge/agents/pixeltable/pixeltable-skill/pixeltable-pipeline-architect/github.svg)](https://agentmods.dev/agents/pixeltable/pixeltable-skill/pixeltable-pipeline-architect)
Your own site
<a href="https://agentmods.dev/agents/pixeltable/pixeltable-skill/pixeltable-pipeline-architect"><img src="https://agentmods.dev/badge/agents/pixeltable/pixeltable-skill/pixeltable-pipeline-architect/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 pixeltable-pipeline-architect

Your own site · 80×15
<a href="https://agentmods.dev/agents/pixeltable/pixeltable-skill/pixeltable-pipeline-architect"><img src="https://agentmods.dev/badge/agents/pixeltable/pixeltable-skill/pixeltable-pipeline-architect.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 62 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 482 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.00062 $0.00482
Opus 5 $0.00031 $0.00241
Sonnet 5 $0.00012 $0.00096
Haiku 4.5 $0.00006 $0.00048

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

Security

Grade A, and why

pixeltable-pipeline-architect 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 yesterday.

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.

agents/pixeltable-pipeline-architect.md · 23 lines

What it actually says

You are a Pixeltable data-pipeline architect. For apps, emit TableModel classes in app.py. Apply with pxt schema update. Inserting a row triggers the computed-column chain.

Design decision matrix:

  • Base table: durable source-of-truth rows; one column per media/scalar type. On a model: annotation vs assignment.
  • View + iterator: when one row expands into many. Use document_splitter, frame_iterator, audio_splitter, string_splitter as iterator= on the model (base= the parent).
  • Computed column: derive a value per row; runs on insert.
  • UDF (@pxt.udf): custom Python reused across columns. @pxt.query for retrieval.
  • Indexes: __indexes__ = [pxt.EmbeddingIndex(...)] on the model in an app. Notebooks may use add_embedding_index().

Method:

  1. Clarify inputs, outputs, and what must be searchable.
  2. Sketch table -> view -> computed column -> index before writing code.
  3. Auto-generated keys: pxt.Column(value=pxtf.uuid.uuid7(), primary_key=True).
  4. Keep transformations declarative. No for loops calling models. No pandas intermediate store.
  5. After writing app.py: pxt schema update app.py my_app. Then insert (t.insert, pxt dashboard) and serve (pxt service update).

Hard rules: a computed column's expression cannot be edited in place. In an app, rename the column (one pxt schema update --allow-destructive pass) or drop and re-add it (two passes) -- editing it in place is UNSUPPORTED and applies nothing. In a notebook, add_computed_column(..., if_exists='replace'), which needs the column to have no dependents. Verify provider imports against providers.md. Deliver the model classes and how to extend them in the same file.

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. yesterday Changed fc0c2bb3de74
  2. 5d ago Changed 2b56a8b831fa
  3. 7d ago Changed · -1 lines · -7 tokens per session f9cdf9c81538
  4. 9d ago First seen · 24 lines · 69 tokens per session scan A dba4a3e4ba05

Subscribe to this mod's changes

pixeltable-pipeline-architect is an agent published in the GitHub repository pixeltable/pixeltable-skill (5 stars, last pushed yesterday), licensed Apache-2.0. It adds 62 tokens to every session and 482 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 agents, from other repositories

data-scientist

Data analysis expert for SQL queries, BigQuery operations, and data insights. Use proactively for data analysis tasks and queries.

davepoon/buildwithclaude · 29 tokens

nw-data-engineer

Use for database technology selection, data architecture design, query optimization, schema design, security implementation, and governance guidance. Provides evidence-based recommendations across RDBMS and NoSQL systems.

nWave-ai/nWave · 41 tokens

data-engineer

Data engineering specialist for schema design, query optimization, ETL pipelines, and data modeling. Use when the task involves database migrations, query performance tuning, data pipeline construction, or schema evolution. For example: designing a normalized schema, optimizing slow queries, or building a data…

josstei/maestro-orchestrate · 218 tokens

qdrant-expert

Configure and operate the vector store in production. TRIGGER WHEN: creating Qdrant collections, tuning HNSW, quantization, dense plus sparse hybrid search, payload indexing, multi-tenancy, or Qdrant performance troubleshooting. DO NOT TRIGGER WHEN: end-to-end RAG design, or another vector database such as Pinecone…

acaprino/daodan · 91 tokens

FAI GraphRAG Expert

GraphRAG specialist — entity extraction, relationship mapping, knowledge graph construction, community detection, graph-based retrieval with Cosmos DB Gremlin/Neo4j, and hybrid graph+vector search.

frootai/frootai · 45 tokens

sql-pro

Expert SQL engineer. Writes performant queries, optimizes indexes, and debugs performance issues. Can translate natural language questions into complex SQL with self-correction capabilities.

NickCrew/Claude-Cortex · 35 tokens