general-task

general-task is an agent for Claude Code from sfc-gh-dflippo/snowflake-dbt-demo. It costs 52 tokens per session (7,384 once invoked), scanned A, original, Apache-2.0.

A workflow agent that takes one database object through its migration tasks until it is complete or needs human help. It follows the migration system's recorded state rather than choosing steps informally.

In plain words
What is it for?
It helps run the end-to-end migration of one object, including continuing interrupted work, applying guidance, and handling task outcomes through the migration system.
Why use it?
Migrating an object can require several ordered tasks, recovery steps, and checks. This agent keeps the work tied to the object's current state and escalates when it cannot continue safely.

Agent for Claude Code

Written for Claude Code: installed under .claude/. Also seen: mentions subagents.

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

Good fit It helps run the end-to-end migration of one object, including continuing interrupted work, applying guidance, and handling task outcomes through the migration system.

Compare 6 agents from other repositories ↓
Install with agentmods
npx agentmods add agents/sfc-gh-dflippo/snowflake-dbt-demo/general-task
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/sfc-gh-dflippo/snowflake-dbt-demo

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 general-task

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

Your own site · 80×15
<a href="https://agentmods.dev/agents/sfc-gh-dflippo/snowflake-dbt-demo/general-task"><img src="https://agentmods.dev/badge/agents/sfc-gh-dflippo/snowflake-dbt-demo/general-task.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 52 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 7,384 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.00052 $0.07384
Opus 5 $0.00026 $0.03692
Sonnet 5 $0.00010 $0.01477
Haiku 4.5 $0.00005 $0.00738

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

Security

Grade A, and why

general-task 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/agents/general-task.md · 553 lines

How it starts

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

You migrate one object, through as many tasks as it takes. The first prompt carries objectId, projectDir, pluginDir, snowflakeConnection, and snowflakeDatabase. Later turns of this same conversation (the orchestrator resumes you; it does not spawn a new agent) carry only what is new: guidance — a human's words from an earlier escalation, which outrank your own first instinct — relay_wake: when it is sending you back to read a job you already started — or a continue line when the machine routed recovery. Pick up from §2; do not treat a later turn as a new object.

Cortex stamps your identity on every MCP call. Do not pass agent_id. A write aimed at an object you do not hold is refused. Never use 0000 (the orchestrator's).

You MUST use the state machine through the MCP tools to work on your object. If you're stuck, do not invent things or go off the rail. More below on escalations.

Do not call the Skill tool and do not load snowflake-migration:migration. That skill is the interactive session router (welcome, checklist, prescribed path, skill-match). You already have this definition. Task skills are files: Read <pluginDir>/skills/migration/<executor.skill>. If the host dumps the root skill anyway, ignore Step 0 / Skill Match / the progress checklist.

1. Attach and claim

configure(project_dir="<projectDir>")
transition_status(status="begin", where="id = '<objectId>'")

configure is first, always: it names this conversation so a live job is announced here. The orchestrator already set the session; this call does not bind a dashboard or rewrite plugin.yml. Claiming before you work means a dispatch that dies never leaves the object locked by nobody.

Skip this section when this conversation already attached — a relay_wake: turn is that case. A guidance: turn may have been un-parked after the claim was released: run §1 again, then continue; the guidance still outranks.

If you are subscribed to a live job, configure tells you once to return waiting (unless this turn is a relay_wake:). It changes nothing else about the call.

Read the full file on GitHub · 553 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 · 553 lines · 52 tokens per session scan A fd5d45aafed6

Subscribe to this mod's changes

general-task 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 52 tokens to every session and 7,384 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-09-10.

Related

Other agents, from other repositories

taskmanager

Data and invariants spec for the MWGuerra Task Manager. Defines the structure and rules for .taskmanager/taskmanager.db (SQLite database) and logs. All planning and execution behavior is defined in the taskmanager skill and related commands.

mwguerra/plugins · 51 tokens

application-data-manager

Maintains the job-application pipeline database (data/processes.json). Use for any read/write operation on the pipeline — status updates, queries, rollups, integrity checks.

danielrosehill/Claude-Career-Plugin · 39 tokens

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

django-migrations-specialist

Database specialist for Django, runs in the "database" extra phase after development. Finalizes model field types and Meta indexes/constraints, runs makemigrations, reviews generated SQL with sqlmigrate, runs migrate, verifies with migrate --check. Do NOT use for: application logic (django-architect), tests…

AratKruglik/claude-sdlc · 85 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