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.
git clone --depth 1 https://github.com/ahmedawan-oracle/claude-code-pluginsnpx agentmods add skills/ahmedawan-oracle/claude-code-plugins/aidp-fusion-incrementalWrote 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/skills/ahmedawan-oracle/claude-code-plugins/aidp-fusion-incremental)<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.
<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>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.00188 | $0.02332 |
| Opus 5 | $0.00094 | $0.01166 |
| Sonnet 5 | $0.00038 | $0.00466 |
| Haiku 4.5 | $0.00019 | $0.00233 |
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.
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_watermarkinfusion_autopilot_state. A node that was never seeded raisesIncrementalCursorMissingError(it lists the offending datasets). → tell the operator to/aidp-fusion-seedthose nodes first. (Use/aidp-fusion-statusto 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.mdP-incr-L1, resolved 2026-06-15), so the watermark predicate rendering1=1(seed) vscol > :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-hashflag to repin the new hash (writes amode='plan_hash_repin'audit row); otherwise re-seed or revert. - New chart of accounts added? A profile change that ONLY adds a new
chartOfAccounts.byChartarm (existing charts byte-identical) is a proven additive change: incremental absorbs it automatically — no re-seed and no--repin-plan-hashneeded. The per-node gate accepts the plan-hash advance (recordingcoa_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 tobootstrap --refresh(a declared candidate still matches) or/medallion-author(a new column the pack never anticipated). Do NOT paper over it with--force-fingerprint-skipoutside dev. An absent bronze table (a dataset whose extract never succeeded — e.g. theLIMITS.mdL2-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-skipis NOT needed for that case. If the snapshot is missing/desynced the gate still fails closed — runbootstrap --refreshto back-fill it (no repin needed).
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.
- 9d ago First seen · 145 lines · 188 tokens per session scan A d11048851e72
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.
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.
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.
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…
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…
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.
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…