From oracle-ai-data-platform-fusion-bundle
Generate aidp.config.yaml from human-friendly AIDP names instead of hand-copied OCIDs. Use when the user is setting up the fusion-bundle and doesn't want to dig workspaceKey / clusterKey / aiDataPlatformId out of console URLs — they give a workspace name + cluster name (+ region) and this resolves the keys via the AIDP REST API and writes the env block. Triggers — "set up aidp.config.yaml", "configure the fusion bundle connection", "I don't have the OCIDs", "fill in workspace/cluster keys", "what do I put for workspaceKey/clusterKey", "configure AIDP coords by name".
How this skill is triggered — by the user, by Claude, or both
Slash command
/oracle-ai-data-platform-fusion-bundle:aidp-fusion-configThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
The worst part of fusion-bundle setup is `aidp.config.yaml`: it wants three opaque identifiers —
aidp-fusion-config — fill aidp.config.yaml from names, not OCIDsThe worst part of fusion-bundle setup is aidp.config.yaml: it wants three opaque identifiers —
aiDataPlatformId (a long OCID), workspaceKey, and clusterKey (UUIDs). Customers should not hunt those
out of console URLs and REST responses by hand. This skill collects human-friendly names and resolves the
keys live. This is a control-plane skill — no MCP, no notebook session required.
init, sees aidp.config.yaml full of *-PLACEHOLDER values, and asks what goes there.aidp-fusion-seed ladder) reports the config is missing or has placeholders.bundle.yaml's fusion: connectivity / credentials — customer-supplied policy the CLI can't
discover (use init + hand-edit). This skill only fills the coordinates in aidp.config.yaml.bootstrap / medallion-author.aidp-fusion-bundle init-config commandThe skill shells out to one CLI command; it never re-implements OCI signing or REST calls. The command reuses
the plugin's own AidpRestClient discovery primitives (find_workspace_by_name / find_cluster_by_name,
OCI-signed) to turn names into keys, validates against the AidpConfig schema, then writes the env block.
| Op | What you give | What it resolves / writes |
|---|---|---|
| Resolve workspace | --workspace "<display name>" | → workspaceKey |
| Resolve cluster | --cluster "<display name>" | → clusterKey + live state (warns if not ACTIVE) |
| Anchor | --aidp-id <DATALAKE_OCID> | the one root id (copied once from the console URL) |
| Target env | top-level --env <name> (default dev) | writes environments.<name>, preserves siblings |
| Preview | --dry-run | prints resolved keys + YAML, writes nothing |
# 1. Dry-run first — resolve names → keys and show the YAML before writing anything
aidp-fusion-bundle init-config \
--aidp-id ocid1.datalake.oc1.iad.<...> \
--workspace "My Workspace" \
--cluster "My Cluster" \
--region us-ashburn-1 \
--dry-run
# 2. Write it for real (drop --dry-run). Target a non-dev env with the top-level --env flag:
aidp-fusion-bundle --env prod init-config \
--aidp-id ocid1.datalake.oc1.iad.<...> \
--workspace "My Workspace" --cluster "My Cluster"
# 3. Overwrite an env that already exists:
aidp-fusion-bundle init-config --aidp-id <...> --workspace "..." --cluster "..." --force
All calls sign with the local OCI profile (--oci-profile, default DEFAULT). For a session-token profile,
have the user run oci session authenticate first.
Two of the three coordinates are name-resolved; the root anchor is not:
| Input | How the user gets it | Required? |
|---|---|---|
| AIDP / DataLake OCID | Copy once from the AIDP console URL — the .../aiDataPlatforms/<OCID>/... segment. | ✅ yes |
| Workspace name | The display name in the AIDP console. | ✅ yes |
| Cluster name | The Spark cluster's display name. | ✅ yes |
| Region / OCI profile | Defaults us-ashburn-1 / DEFAULT. | default |
| Catalog | Reminder only — lives in bundle.yaml under aidp.catalog. | optional |
--dry-run first so the user confirms the resolved keys and YAML.ACTIVE, the config still writes — surface the
warning and tell the user to start it before run (see aidp-cluster-ops / bootstrap).--env <name> to add prod alongside dev; sibling environments are preserved.
--force is only needed to overwrite an env that already exists.aidp-fusion-bundle validate →
aidp-fusion-bundle bootstrap. Remind them the catalog goes in bundle.yaml (aidp.catalog).aidp.config.yaml are dropped (resolved values are kept). Mention this if the file is heavily commented.aidp-fusion-seed; both wrap the self-contained CLI rather than importing the
orchestrator. The seed skill's precondition ladder can invoke this skill when the config is the missing rung.npx claudepluginhub daiiis/claude-code-plugins --plugin oracle-ai-data-platform-fusion-bundleGuides completion of development work by verifying tests, detecting environment, and presenting structured options for merge, PR, or cleanup.
Guides creation and editing of skills using test-driven development with pressure scenarios and subagents to verify agent compliance.
Dispatches multiple subagents concurrently for independent tasks without shared state. Use when facing 2+ unrelated failures or subsystems that can be investigated in parallel.