drupal-config-reconcile
Reconcile Drupal configuration drift between a working tree and a deployed environment one item at a time, deciding import (disk wins) vs export (DB wins) vs skip for each difference. Use when `drush config:status` shows drift, after pulling a fresh DB, before a deploy, or when local config and a remote/prod environment disagree. Pantheon/Terminus-aware but works with any remote alias; never writes to production.
What this skill does
# Drupal Config Reconcile
A guided workflow for resolving the gap between your tracked config (`config/default`, plus any split dirs) and a deployed environment's active configuration. Most teams have the mechanics (`config:status`, `cim`, `cex`) but no disciplined way to walk drift item-by-item and decide which side wins. This is that discipline.
## The core decision: import vs export vs skip
For every divergent config item, exactly one of three things is true, and you pick a direction:
- **Import = disk → DB.** The tracked file is the source of truth; it deploys to the environment on the next code deploy + config import. No file change — you keep what's in git.
- **Export = DB → disk.** The environment's value wins; you write its config into your tracked files (or `git rm` the file if the environment doesn't have it).
- **Skip.** Leave the divergence unresolved and move on (the right call for benign `uuid`/`_core`-only diffs).
> **Never run config write operations against production.** This workflow only *reads* from a reference environment and only *writes* to local files. It never writes to any remote database.
### Remote CLI — host-neutral
Examples below use Pantheon's **Terminus**. The workflow is the same on any host — substitute your platform's remote-drush command. If your platform provides Drush site aliases, the generic `drush @<alias> <cmd>` form works everywhere and is the simplest baseline.
| Task | Acquia (`acli`) | Pantheon (Terminus) | Platform.sh / Upsun | Lagoon (amazee.io) | Generic (Drush aliases) |
|---|---|---|---|---|---|
| Remote drush | `acli remote:drush -- <cmd>` | `terminus drush <site>.<env> -- <cmd>` | `platform drush -e <env> -- <cmd>` (Upsun: `upsun drush …`) | `lagoon ssh -p <project> -e <env> -C "drush <cmd>"` | `drush @<alias> <cmd>` |
| Refresh non-prod DB from prod | Cloud UI **Copy database** / `acli api:environments:database-copy` | `terminus env:clone-content <site>.live <env> --db-only` | `platform sync data` (Upsun: `upsun sync data`) | drush `sql:sync` or a Lagoon post-rollout task | `drush sql:sync @<prod> @<env>` |
| Pull DB to local | `acli pull:db` | (drush `sql:sync`) | `platform db:dump` | `lagoon ssh … -C "drush sql:dump"` | `drush sql:sync @<env> @self` |
| Get Drush aliases | `acli remote:aliases:download` | `terminus aliases` | `platform`-provided `@platform.<env>` | `drush sa` (Lagoon-provided) | aliases in `drush/sites/` |
> **Auth/link once per platform:** Acquia `acli auth:login` + `acli link`; Pantheon `terminus auth:login`; Platform.sh/Upsun `platform login` / `upsun login`; Lagoon `lagoon login`. Never run write/clone operations *into* production on any of them.
## Workflow
### 1. Pick a reference environment (never `live`/`prod`)
Use a non-production environment as the prod stand-in (e.g. Pantheon `dev`/`test`, or a CI/staging alias). Refuse to target the live environment — config writes against live are how teams nuke production config.
### 2. Make the reference DB fresh
The diff is only meaningful if the reference env reflects current production. If the env's DB is stale (commonly >24h), refresh it from live first. On Pantheon:
```bash
terminus env:clone-content <site>.live <env> --db-only -y # Pantheon; see the table above for acli / platform / upsun / lagoon
```
Cloning modifies a shared environment and takes minutes — **confirm with the user first; never do it silently.** (Note: most platforms can't reliably tell you when an env was last refreshed — `terminus backup:list` reports *backup* recency, not clone-from-live recency. Treat it as a weak hint and ask.)
### 3. Get the diff on the reference env (not locally)
Run `config:status` **on the reference env** so Drupal applies config splits and `config_exclude_modules` correctly — a local run produces false positives from dev-only modules (devel, views_ui, a prod split, etc.):
```bash
terminus drush <site>.<env> -- config:status --format=json # or your platform's remote-drush form (see table)
```
States you'll see:
- **`Only in DB`** — exists in the env's database, not in tracked config.
- **`Only in sync`** — exists in tracked config, not in the env's database.
- **`Different`** — present in both, content differs.
Empty list → "in sync, nothing to reconcile" → stop.
### 4. Fetch the env's value per item with `config:get` (not a full export)
Do **not** reach for `config:export --destination` + scp — config_split commonly fails trying to create its relative split dir under a temp destination, and SSH-command discovery is brittle across Terminus versions. Fetch each item on demand:
```bash
terminus drush <site>.<env> -- config:get <name> --format=yaml > /tmp/ref-<name>.yml # or your platform's remote-drush form
```
`config:get --format=yaml` emits the exact file format Drupal exports (no `_core` key) — byte-identical to tracked sibling files.
**Caveat:** `config:get` appends an extra trailing newline. Drupal's phpcs (`Drupal.Files.EndFileNewline.TooMany`) rejects two newlines at EOF and a pre-commit hook will block the commit. Normalize to exactly one trailing newline when you write the file:
```bash
printf '%s\n' "$(cat /tmp/ref-<name>.yml)" > config/default/<name>.yml
```
### 5. Walk each item, one at a time
Create a todo list (one entry per config name) so progress is visible. Process in this order — `Only in DB`, then `Different`, then `Only in sync` — and for each:
1. **Locate the local file.** Usually `config/default/<name>.yml`. If absent there, check split dirs (`config/prod/`, `config/local/`, `config/envs/…`) before concluding it's missing — split-managed items live outside `config/default` and must be written back to the same split dir.
2. **Show the content diff** (label left = local/disk, right = env/DB):
- `Different`: `diff -u config/default/<name>.yml /tmp/ref-<name>.yml`
- `Only in DB`: local absent → show the env's full content.
- `Only in sync`: env absent → show the local file's full content.
3. **Recommend a direction, and say why:**
- `Only in DB` → **Export.** Config created in the environment (UI or update hook) that should be captured into git (message templates, view displays, etc.).
- `Only in sync` → **Import.** New config added in code, not yet deployed; keep it and let it deploy.
- `Different`:
- Only `uuid` and/or `_core` differ → **Skip** (benign environment artifact; don't churn files).
- Env has real intentional-looking value changes → **Export.**
- Local file has intentional code changes → **Import.**
- Genuinely unclear → present both sides plainly, default to **Skip**, let the user decide.
4. **Ask** Import / Export / Skip.
5. **Perform it — local files only:**
- **Export** (`Different`/`Only in DB`): write the env's file with the trailing newline normalized (split-managed items → split dir). `Only in sync` + Export means the env doesn't have it → confirm, then `git rm` the local file.
- **Import**: keep the local file; no change. ⚠️ **`Only in DB` + Import is destructive** — the env has config absent from git, so a full `drush cim` on deploy will **delete it from the environment**. Warn explicitly and require a second confirmation.
- **Skip**: nothing.
### 6. Verify with the import transformer — NOT `config:status`
After writing exported files, do **not** re-run `config:status` to confirm — it can keep reporting a freshly-written item as `Only in DB` even though the file is present and valid (a stale display artifact). Verify against the storage layer `cim` actually uses, the import transformer (which applies config_split exactly as a deploy does):
```bash
drush ev '
$t = \Drupal::service("config.import_transformer")->transform(\Drupal::service("config.storage.sync"));
foreach (["<name1>","<name2>"] as $n) {
print "$n => " . ($t->exists($n) && in_array($n, $t->listAll(), true) ? "RECONCILED (deploy-safe)" : "MISSING — would be deleted on cim") . "\n";
}'
```
`exists() && in listAll()` = YES means a real deploy Related in Cloud & DevOps
appbuilder-action-scaffolder
IncludedCreate, implement, deploy, and debug Adobe Runtime actions with consistent layout, validation, and error handling. Use this skill whenever the user needs to add actions to an App Builder project, understand action structure (params, response format, web/raw actions), configure actions in the manifest, use App Builder SDKs (State, Files, Events, database), deploy and invoke actions via CLI, debug action issues, or implement patterns such as webhook receivers, custom event providers, journaling consumers, large payload redirects, action sequence pipelines, and Asset Compute workers. Also trigger when users mention serverless functions in Adobe context, action logging, IMS authentication for actions, or cron-style scheduled actions.
orchestrating-datacloud
IncludedSalesforce Data Cloud product orchestrator for connect→prepare→harmonize→segment→act workflows. Use this skill when the user needs a multi-step Data Cloud pipeline, cross-phase troubleshooting, or data space and data kit management. TRIGGER when: user needs a multi-step Data Cloud pipeline, asks to set up or troubleshoot Data Cloud across phases, manages data spaces or data kits, or wants a cross-phase sf data360 workflow. DO NOT TRIGGER when: work is isolated to a single phase (use the matching phase-specific skill), the task is STDM/session tracing/parquet telemetry (use observing-agentforce), standard CRM SOQL (use querying-soql), or Apex implementation (use generating-apex).
github-project-automation
IncludedAutomate GitHub repository setup with CI/CD workflows, issue templates, Dependabot, and CodeQL security scanning. Includes 12 production-tested workflows and prevents 18 errors: YAML syntax, action pinning, and configuration. Use when: setting up GitHub Actions CI/CD, creating issue/PR templates, enabling Dependabot or CodeQL scanning, deploying to Cloudflare Workers, implementing matrix testing, or troubleshooting YAML indentation, action version pinning, secrets syntax, runner versions, or CodeQL configuration. Keywords: github actions, github workflow, ci/cd, issue templates, pull request templates, dependabot, codeql, security scanning, yaml syntax, github automation, repository setup, workflow templates, github actions matrix, secrets management, branch protection, codeowners, github projects, continuous integration, continuous deployment, workflow syntax error, action version pinning, runner version, github context, yaml indentation error
sf-datacloud
IncludedSalesforce Data Cloud product orchestrator for connect→prepare→harmonize→segment→act workflows. TRIGGER when: user needs a multi-step Data Cloud pipeline, asks to set up or troubleshoot Data Cloud across phases, manages data spaces or data kits, or wants a cross-phase `sf data360` workflow. DO NOT TRIGGER when: work is isolated to a single phase (use the matching sf-datacloud-* skill), the task is STDM/session tracing/parquet telemetry (use sf-ai-agentforce-observability), standard CRM SOQL (use sf-soql), or Apex implementation (use sf-apex).
fabric-cli
IncludedUse this skill for Fabric.so CLI workflows with the `fabric` terminal command: diagnose/install/login, search or browse a Fabric library, save notes/links/files, create folders, ask the Fabric AI assistant, manage tasks/workspaces, generate shell completion, check subscription usage, produce JSON output, and use Fabric as persistent agent memory. Do not use for Microsoft Fabric/Azure/Power BI `fab`, Daniel Miessler's Fabric framework, Python Fabric SSH, Fabric.js, or textile/fashion fabric.
lark
IncludedLark/Feishu CLI skills: lark-cli operations for docs, markdown, sheets, base, calendar, im, mail, task, okr, drive, wiki, slides, whiteboard, apps, approval, attendance, contact, vc, minutes, event. Use when the user needs to operate Lark/Feishu resources via lark-cli, send messages, manage documents, spreadsheets, calendars, tasks, OKRs, deploy web pages, or any Feishu/Lark workspace operations.