aidp-fusion-incremental

aidp-fusion-incremental is a skill for Claude Code from ahmedawan-oracle/claude-code-plugins. It costs 188 tokens per session (2,332 once invoked), scanned A, original, MIT.

A guarded runner for incremental AIDP Fusion refreshes, which update data using only changes since the previous run. It turns a plain-language refresh request into the appropriate command and performs checks before running it.

In plain words
What is it for?
Use it after an initial seed to refresh supplier-spend data, bronze data, or data marts with the latest changes.
Why use it?
It reduces the risk of running a daily data refresh without the required earlier setup, saved watermarks, or compatible source data. It also checks conditions specific to incremental updates.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter.

Needs its repository: it reads a path above its own folder, which exists only inside the repository. The line is python3 ../aidp-fusion-seed/intent.py "<phrase>" --mode incremental --known-nodes "<ids>".

Part of the oracle-ai-data-platform-fusion-autopilot plugin — 16 skills shipped together

Good fit Use it after an initial seed to refresh supplier-spend data, bronze data, or data marts with the latest changes.

Compare 6 skills from other repositories ↓
Install

Getting it into your agent

It runs from inside its repository, so the clone comes first — what it calls does not travel with the file alone.

Clone the repo
git clone --depth 1 https://github.com/ahmedawan-oracle/claude-code-plugins
agentmods
npx agentmods add skills/ahmedawan-oracle/claude-code-plugins/aidp-fusion-incremental

Made for: Claude Code.

Or install oracle-ai-data-platform-fusion-autopilot, the plugin that ships this one along with the rest of its 16 skills.

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 aidp-fusion-incremental

README.md
[![agentmods](https://agentmods.dev/badge/skills/ahmedawan-oracle/claude-code-plugins/aidp-fusion-incremental/github.svg)](https://agentmods.dev/skills/ahmedawan-oracle/claude-code-plugins/aidp-fusion-incremental)
Your own site
<a href="https://agentmods.dev/skills/ahmedawan-oracle/claude-code-plugins/aidp-fusion-incremental"><img src="https://agentmods.dev/badge/skills/ahmedawan-oracle/claude-code-plugins/aidp-fusion-incremental/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 aidp-fusion-incremental

Your own site · 80×15
<a href="https://agentmods.dev/skills/ahmedawan-oracle/claude-code-plugins/aidp-fusion-incremental"><img src="https://agentmods.dev/badge/skills/ahmedawan-oracle/claude-code-plugins/aidp-fusion-incremental.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 188 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,332 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.00188 $0.02332
Opus 5 $0.00094 $0.01166
Sonnet 5 $0.00038 $0.00466
Haiku 4.5 $0.00019 $0.00233

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

Security

Grade A, and why

aidp-fusion-incremental 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 9d 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-code-plugins/oracle-ai-data-platform-fusion-autopilot/skills/aidp-fusion-incremental/SKILL.md · 145 lines

How it starts

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

aidp-fusion-incremental — guarded daily delta runner

Wraps run --mode incremental (delta-merge using prior watermarks from fusion_autopilot_state) with the prechecks an incremental run actually needs. Like /aidp-fusion-seed, it shells out to the CLI and never touches state directly. Incremental is less destructive than seed (row-grain nodes MERGE on the natural key; replace-marts still CREATE OR REPLACE), so the guard is lighter — but incremental has its own failure modes that seed doesn't, and this skill front-runs them.

When to use

  • "run incremental", "refresh the marts", "daily delta", "pull the latest", "incremental supplier_spend / just bronze / the marts".
  • Routine refresh after an initial seed.

When NOT to use

  • First build / nothing materialized/aidp-fusion-seed (incremental needs prior watermarks).
  • A single known CLI invocation you already have.

Workflow

1 — Parse intent (reuse the seed parser, mode=incremental)

Assemble known node ids (bundle datasets + content-pack info <pack> --json silver+gold), then:

python3 ../aidp-fusion-seed/intent.py "<phrase>" --mode incremental --known-nodes "<ids>"

Honour ambiguous / unknown_tokens (list pack nodes, ask) and needs_run_id (for resume) exactly as the seed skill does. argv comes back as run --mode incremental <scope>.

2 — Preconditions (reuse the shared checker)

python3 ../aidp-fusion-seed/preconditions.py --bundle bundle.yaml --config aidp.config.yaml --env <env>

Act on missing via the same ladder as seed: bundle → init/fix; config/aidp-fusion-config; profile/aidp-fusion-bootstrap (or use-pack if the node is in an unwired overlay); cluster → start it. Re-run until ok: true.

3 — Incremental-specific prechecks (this is what seed doesn't do)

These are the failure modes incremental adds — front-run them so the operator gets a clear next step instead of a deep cluster error:

  • Watermark cursor present? Incremental delta-merges from each node's prior last_watermark in fusion_autopilot_state. A node that was never seeded raises IncrementalCursorMissingError (it lists the offending datasets). → tell the operator to /aidp-fusion-seed those nodes first. (Use /aidp-fusion-status to see which nodes have a prior successful run.)
  • Plan unchanged since last seed? If the node's YAML / SQL / tenant profile changed since it was seeded, the run fails with AIDPF-4040 plan-hash drift. → re-seed that node (run --mode seed) to re-pin the plan-hash (or revert the change). Incremental requires plan continuity with the seed that pinned it. Row-grain MERGE nodes (silver dims, gl_balance) increment cleanly after a seed — the plan-hash is mode-normalized (LIMITS.md P-incr-L1, resolved 2026-06-15), so the watermark predicate rendering 1=1 (seed) vs col > :watermark (incremental) no longer false-trips 4040. A 4040 now means a genuine plan-shape change. If you edited the SQL/profile on purpose and don't want a full re-seed, pass the hidden --repin-plan-hash flag to repin the new hash (writes a mode='plan_hash_repin' audit row); otherwise re-seed or revert.
  • New chart of accounts added? A profile change that ONLY adds a new chartOfAccounts.byChart arm (existing charts byte-identical) is a proven additive change: incremental absorbs it automatically — no re-seed and no --repin-plan-hash needed. The per-node gate accepts the plan-hash advance (recording coa_additive_accept_reason) once the post-land COA checkpoint passes. A mutating COA change (an existing chart's segment moved/removed) is NOT additive and still routes to --mode seed (AIDPF-1048/4040) — an incremental would leave that chart's already-classified rows stale. So: adding a chart → incremental; correcting an existing chart → seed.
  • Fusion-PVO / bronze drift? Incremental fires the drift gates — AIDPF-2072 (live PVO column renamed/removed vs the pinned snapshot), AIDPF-4070/4071 (source-schema), AIDPF-2012 (bronze-table fingerprint). On any of these → hand to /fusion-drift-doctor, which classifies the drift and routes to bootstrap --refresh (a declared candidate still matches) or /medallion-author (a new column the pack never anticipated). Do NOT paper over it with --force-fingerprint-skip outside dev. An absent bronze table (a dataset whose extract never succeeded — e.g. the LIMITS.md L2-blocked PVO) no longer aborts the fingerprint gate: it is tolerated with a WARN and baseline-filled from the pinned schema snapshot, so every present table stays drift-checked and --force-fingerprint-skip is NOT needed for that case. If the snapshot is missing/desynced the gate still fails closed — run bootstrap --refresh to back-fill it (no repin needed).

Read the full file on GitHub · 145 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. 9d ago First seen · 145 lines · 188 tokens per session scan A d11048851e72

Subscribe to this mod's changes

aidp-fusion-incremental is a skill published in the GitHub repository ahmedawan-oracle/claude-code-plugins (2 stars, last pushed 1mo ago), licensed MIT. It adds 188 tokens to every session and 2,332 once invoked, about $0.0009 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-31.

Related

Other skills, from other repositories

create-pr

Creates a GitHub PR with a Linear-ticket-prefixed title and a decision-led, narrative description for prisma-next. Use when the user wants to create a pull request, open a PR, or submit changes for review.

prisma/orm · 47 tokens

schema-exploration

Lists tables, describes columns and data types, identifies foreign key relationships, and maps entity relationships in a database. Use when the user asks about database schema, table structure, column types, what tables exist, ERD, foreign keys, or how entities relate.

langchain-ai/deepagents · 57 tokens

ha-data-stores

Map of Hope Agent's local data stores and safe read-only query workflow. Use when the user asks where Hope Agent stores data, wants to inspect sessions/messages/memory/logs/background jobs/knowledge indexes/settings, asks the model to query local app data, or debugging requires checking persisted state. Trigger…

shiwenwen/hope-agent · 115 tokens

supabase

Supabase / PostgREST Row-Level-Security playbook — pull the anon (or leaked servicerole) key out of the frontend JS, map tables from the auto-generated OpenAPI spec, test anonymous RLS READ disclosures (PII/secret leaks), and anonymous RLS WRITE abuse (insert/update/delete — e.g. forging…

PentesterFlow/agent · 120 tokens

nornicdb-cypher-queries

Pick fast, predictable Cypher query shapes in NornicDB — point lookups, batch retrieval, pagination, search, traversal, batched UNWIND/MERGE writes, cleanup, multi-tenant isolation. Use when writing or reviewing Cypher whose latency or throughput matters; maps user intent to the executor's hot-path query templates.

orneryd/NornicDB · 79 tokens

dsql

Build with Aurora DSQL — manage schemas, execute queries, handle migrations, diagnose query plans, diagnose cluster performance, load data, and develop applications with a serverless, distributed SQL database. Covers IAM auth, multi-tenant patterns, MySQL-to-DSQL and PostgreSQL-to-DSQL schema conversion, foreign key…

awslabs/agent-plugins · 229 tokens