# Build Actions

> Build a feature's action-database — async orchestration over services and transactions. If the feature has async flows or side effects outside of the main store.

- Skill: `adobe/build-actions` (Agent Skill)
- Install (CLI): `npx skillmds@latest add adobe/build-actions`
- Raw SKILL.md: https://api.skillmd.com/api/skills/adobe/build-actions/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: Adobe (https://skillmd.com/u/adobe)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/adobe/build-actions

---


Skip if this feature doesn't contain or require actions.

Create `services/main-service/action-database/`: `action-database.ts` (extends `ServiceDatabase`, adds `actions`
from `./actions/index.js`) plus an `actions/` folder — one async orchestrator per file. An action
takes `db: ServiceDatabase`, awaits `services/` ports, then commits **exactly one** transaction.

The top main-service layer; comes after `service-database`.

The how is in the auto-loading `features/services/main-service/actions.md` rule.

