data-plan

data-plan is a skill for Claude Code from YuDefine/nuxt-supabase-starter. It costs 70 tokens per session (759 once invoked), scanned A, original, MIT.

A data-model planning skill that maintains the project's authoritative description of stored data, including tables, fields, links, and indexes. It records whether each data element is added, changed, removed, or unchanged.

In plain words
What is it for?
Use it to update DBML, a plain-text format for describing database structures, and keep the project's data truth files current. It helps review data-model changes and record what changed.
Why use it?
It prevents the data model from becoming scattered across plans and implementation notes. It also highlights risky changes to data ownership, relationships, or retention before work continues.

Skill for Claude Code

Written for Claude Code: disable-model-invocation in frontmatter.

Good fit Use it to update DBML, a plain-text format for describing database structures, and keep the project's data truth files current. It helps review data-model changes and record what changed.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/yudefine/nuxt-supabase-starter/data-plan
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.

Any agent
npx skills add YuDefine/nuxt-supabase-starter --skill data-plan
Clone the repo
git clone --depth 1 https://github.com/YuDefine/nuxt-supabase-starter

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 data-plan

README.md
[![agentmods](https://agentmods.dev/badge/skills/yudefine/nuxt-supabase-starter/data-plan/github.svg)](https://agentmods.dev/skills/yudefine/nuxt-supabase-starter/data-plan)
Your own site
<a href="https://agentmods.dev/skills/yudefine/nuxt-supabase-starter/data-plan"><img src="https://agentmods.dev/badge/skills/yudefine/nuxt-supabase-starter/data-plan/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 data-plan

Your own site · 80×15
<a href="https://agentmods.dev/skills/yudefine/nuxt-supabase-starter/data-plan"><img src="https://agentmods.dev/badge/skills/yudefine/nuxt-supabase-starter/data-plan.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 70 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 759 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.00070 $0.00759
Opus 5 $0.00035 $0.00380
Sonnet 5 $0.00014 $0.00152
Haiku 4.5 $0.00007 $0.00076

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

Security

Grade A, and why

data-plan 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 today.

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.

template/.claude/skills/data-plan/SKILL.md · 41 lines

What it actually says

Data Plan

data-planspecs/truth/data/** 的 truth owner。它維護目前系統唯一資料模型 truth,無論底層是持久化資料庫或記憶體狀態模型。

SOP

Phase 1 -- 對齊 data truth 與 plan handoff

  1. READ 讀取使用者需求、呼叫者 handoff、plan package 的 spec.mdresearch.mdplan.mdtruth-delta.mdspecs/truth/techstack.md、既有 specs/truth/data/** 與指定資料介面名稱。
  2. READ 讀取 templates/data-model.dbmltemplates/data-model.example.dbmltemplates/data-model.example.dbdiagram,確認資料模型 artifact 的固定結構、註記密度與完成樣貌。
  3. READ 讀取 .agents/constitution/CONSTITUTION.md.agents/constitution/shared.md.agents/constitution/skills/data-plan/data-model.md

Phase 2 -- 盤點 data ADD / MODIFY / DELETE

  1. THINK 依需求、handoff、現有 DBML 與 truth-delta,整理本輪要新增、修改、刪除或保持不變的 table、enum、ref、field、index、生命週期與儲存責任。
  2. DELEGATE 若高影響 MODIFY / DELETE 會改變既有資料生命週期、唯一鍵、關聯方向、公開投影或儲存模型,且尚未有明確使用者決策,呼叫 /clarify;未收斂前停止。

Phase 3 -- 更新 data truth

  1. WRITE 直接更新 specs/truth/data/**,使 data truth 成為目前完整系統資料模型,不留下「沿用某 plan 模型」的分散引用。
  2. READ 回頭檢查 data truth 是否符合已載入憲法、指定資料需求、生命週期與現有 API/feature truth;若不符合,立即修正。
  3. THINK 將 data truth 改動整理為語意單元層級的 ADD / MODIFY / DELETE / NOOP 列。

Phase 4 -- 更新 truth-delta 並交付

  1. DELEGATE 呼叫 /truth-delta,傳入 plan package、truth root、owner /data-plan 與本輪 data truth 改動列。
  2. WRITE 向使用者回報更新的 data truth 路徑、主要實體與生命週期變更、是否進入 /clarify、truth-delta 更新結果,以及是否可交給後續實作或 /tasks
Files

What ships with it

3 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. today Changed · -1 lines 2795c777beb0
  2. yesterday First seen · 42 lines · 70 tokens per session scan A d0534807bebc

Subscribe to this mod's changes

data-plan is a skill published in the GitHub repository YuDefine/nuxt-supabase-starter (45 stars, last pushed today), licensed MIT. It adds 70 tokens to every session and 759 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 skills, from other repositories

explorer

Build and modify Studio Explorer surfaces, including notebooks, chats, SQL snippets, query cells, and their shared toolbar patterns.

supabase/supabase · 27 tokens

azure-cosmos-db-py

Build Azure Cosmos DB NoSQL services with Python/FastAPI following production-grade patterns. Use when implementing database client setup with dual auth (DefaultAzureCredential + emulator), service layer classes with CRUD operations, partition key strategies, parameterized queries, or TDD patterns for Cosmos. Triggers…

microsoft/skills · 96 tokens

slides

Build a Grida slides deck — a .canvas bundle in slides mode whose pages are SVG documents (16:9, one SVG per slide). Use when creating a presentation, pitch deck, slideshow, or talk.

gridaco/grida · 46 tokens

dotcanvas

Author and edit a Grida .canvas board — a .canvas.json manifest plus document files (references, generated images, notes) placed on an infinite canvas. Use when working on a .canvas bundle or arranging visuals/design work spatially. For a linear deck/presentation, use the slides skill instead.

gridaco/grida · 69 tokens

supabase

Use when doing ANY task involving Supabase. Triggers: Supabase products (Database, Auth, Edge Functions, Realtime, Storage, Vectors, Cron, Queues); client libraries and SSR integrations (supabase-js, @supabase/ssr) in Next.js, React, SvelteKit, Astro, Remix; auth issues (login, logout, sessions, JWT, cookies…

supabase/agent-skills · 185 tokens

svg

Author and edit .svg files in a Grida editor session — live-canvas binding, SVG output style, and parse-error recovery. Use when creating or modifying an SVG document.

gridaco/grida · 39 tokens