investigate-custom-assets

investigate-custom-assets is an agent for Claude Code from sfc-gh-dflippo/snowflake-dbt-demo. It costs 85 tokens per session (2,025 once invoked), scanned A, original, Apache-2.0.

An agent that examines an assigned group of custom files and turns the assets it finds into registry manifest entries. It can copy assets outside the project into a source directory and resolve their dependencies against a code registry.

In plain words
What is it for?
It is for migration projects that need to discover files such as orchestration configurations, data pipelines, or other custom assets and describe them for later registration.
Why use it?
It removes the manual work of cataloguing custom assets while multiple agents inspect different parts of a project.

Agent for Claude Code

Written for Claude Code: installed under .claude/.

Not installable: its command points at a path on the author’s own machine, so it runs nowhere else. The line is /home/me/ft-connectors/tasktracker/.

Part of the snowflake-migration plugin — 72 skills, 7 agents shipped together

Good fit It is for migration projects that need to discover files such as orchestration configurations, data pipelines, or other custom assets and describe them for later registration.

Compare 6 agents from other repositories ↓
Install

Getting it into your agent

This one installs as part of its plugin. Adding the marketplace and installing the plugin brings it with everything else the plugin ships.

Claude Code
/plugin marketplace add sfc-gh-dflippo/snowflake-dbt-demo
Claude Code
/plugin install snowflake-migration

Made for: Claude Code.

Or install snowflake-migration, the plugin that ships this one along with the rest of its 72 skills, 7 agents.

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 investigate-custom-assets

README.md
[![agentmods](https://agentmods.dev/badge/agents/sfc-gh-dflippo/snowflake-dbt-demo/investigate/github.svg)](https://agentmods.dev/agents/sfc-gh-dflippo/snowflake-dbt-demo/investigate)
Your own site
<a href="https://agentmods.dev/agents/sfc-gh-dflippo/snowflake-dbt-demo/investigate"><img src="https://agentmods.dev/badge/agents/sfc-gh-dflippo/snowflake-dbt-demo/investigate/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 investigate-custom-assets

Your own site · 80×15
<a href="https://agentmods.dev/agents/sfc-gh-dflippo/snowflake-dbt-demo/investigate"><img src="https://agentmods.dev/badge/agents/sfc-gh-dflippo/snowflake-dbt-demo/investigate.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 85 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 2,025 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.00085 $0.02025
Opus 5 $0.00043 $0.01012
Sonnet 5 $0.00017 $0.00405
Haiku 4.5 $0.00009 $0.00202

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

Security

Grade A, and why

investigate-custom-assets 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 2d 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.

.claude/skills/snowflake-migration/skills/migration/setup/discover-extras/agents/investigate.md · 130 lines

How it starts

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

Agent: Investigate Custom Assets

You investigate one assigned slice of candidate assets and return manifest entries describing them. You do not register anything — the orchestrator performs the single registry write after collecting every agent's output.

No registry writes. Do not call register_units or update_registry. Concurrent registry writes serialize on an exclusive file lock and each one triggers a registry-wide dependency-graph refresh, so parallel writes are slower than one batch and make partial failures far harder to report. You may write files under source/ (Step 3) — those paths are yours alone and don't contend.

Inputs

The orchestrator's spawn prompt gives you:

  • project_dir — absolute path to the migration project.
  • customKind — the discriminator to stamp on every entry you emit (e.g. fivetran, airflowDag, ssasCube).
  • slice — the paths you own: a directory, a glob, or an explicit file list. Stay inside it. Another agent owns the rest.
  • slug — short identifier for your output filename.

Step 1: Identify the assets in your slice

Read the files you were given. What counts as one unit is judgment — apply the rule that a unit is the thing a person would migrate, track, and check off as done:

  • One FiveTran connector project (connector.py + configuration.json) is one unit, even when it syncs several tables. It deploys and fails as a whole.
  • One Airflow DAG file is one unit, even with many tasks.
  • One SSAS cube is one unit; its measure groups are not.
  • A directory of independent shell scripts is one unit per script — they run and break separately.

When a file makes you unsure, prefer the coarser unit and note the ambiguity in notes (below) rather than inventing several fine-grained entries.

Step 2: Determine each entry's fields

  • name — the canonical name a person would use: the connector/sync name, the DAG id, the cube name, the script filename. Prefer a name declared inside the file over the filename when the two differ.
  • customKind — exactly the value you were handed. Do not invent variants.
  • objectType — only when the asset maps to a built-in Snowflake object type (an Oracle PACKAGE → package). Omit it otherwise; other is acceptable when something clearly needs a bucket. Never guess a type to fill the field.
  • sourcePath — filled in at Step 3, after vendoring. Always repo-relative to project_dir, never an absolute path and never a path outside it.
  • description — one line on what the asset does, drawn from the file. Skip it rather than restating the name.
  • workflowHints (kind-level, not per entry) — how this kind is migrated or run, as the files state it. The orchestrator uses these to draft the per-kind cookbook with the customer. Examples: "Fivetran Connector SDK (connector.py); config names a Snowflake destination", "README: fivetran deploy", "Airflow DAG, SnowflakeOperator, no in-tree Snowflake rewrite", "no run/deploy story in the slice". One or two short strings for the whole slice. No secrets, no per-unit restatement of description.

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

Subscribe to this mod's changes

investigate-custom-assets is an agent published in the GitHub repository sfc-gh-dflippo/snowflake-dbt-demo (33 stars, last pushed 3d ago), licensed Apache-2.0. It adds 85 tokens to every session and 2,025 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-09-10.

Related

Other agents, from other repositories