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.
git clone --depth 1 https://github.com/pixeltable/pixeltable-skillWrote 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.
[](https://agentmods.dev/agents/pixeltable/pixeltable-skill/pixeltable-pipeline-architect)<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.
<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>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.
| Model | Per session | Once 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 |
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.
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_splitterasiterator=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.queryfor retrieval. - Indexes:
__indexes__ = [pxt.EmbeddingIndex(...)]on the model in an app. Notebooks may useadd_embedding_index().
Method:
- Clarify inputs, outputs, and what must be searchable.
- Sketch table -> view -> computed column -> index before writing code.
- Auto-generated keys:
pxt.Column(value=pxtf.uuid.uuid7(), primary_key=True). - Keep transformations declarative. No
forloops calling models. No pandas intermediate store. - 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.
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.
- yesterday Changed fc0c2bb3de74
- 5d ago Changed 2b56a8b831fa
- 7d ago Changed · -1 lines · -7 tokens per session f9cdf9c81538
- 9d ago First seen · 24 lines · 69 tokens per session scan A dba4a3e4ba05
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.
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.
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.
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…
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…
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.
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.