specx Add Infrastructure Adapter
SkillDatabases & dataAdd technical infrastructure adapters for specx core scopes. Use when implementing SQLAlchemy repositories and Alembic-backed persistence, Redis stores, HTTP/network clients, file or queue adapters, unit-of-work implementations, gateway implementations for external APIs or SDKs such as OpenAI, or explicit `diwire` bindings for core scope repository and gateway ports.
Available today. Use it from your connected AI after setup.
No other account needed.
Connect ahel once, and every AI you use reads what you have installed.
Then ask your AI: use the specx Add Infrastructure Adapter skill
What this skill tells your AI
The instructions your AI receives, as published by maksimzayats/specx in skills/specx-add-infrastructure-adapter/SKILL.md and read by ahel’s review.
Use this skill whenever code talks to external systems. Read
references/adapter.md before writing adapters.
Workflow
- Define or reuse a repository under
repositories/for owned persistence. Repository ports inheritBaseRepositoryand mark required methods with@abstractmethod. - Define or reuse a gateway under
gateways/for outbound business capabilities to external systems such as OpenAI, payments, email, queues, or external HTTP APIs. Gateway ports inheritBaseGateway, mark required methods with@abstractmethod, declare external effects, and do not return entities. - Put concrete implementations under
core/<scope>/infrastructure/<technology>/. - Inject external clients, session factories, Redis clients, SDK clients, or
project-owned client factories. Do not hide client construction inside
business methods. Generated HTTP adapters use
httpx2, imported from thehttpx2namespace; do not generate new legacyhttpximports. - A bounded short-lived client factory may stay beside its scope adapter. Put
every app-owned pooled client factory or wrapper under top-level
infrastructure/<technology>/, even with only one current consumer. - Give long-lived app-owned infrastructure resources an explicit async
close()method; FastAPI lifecycle owns calling it on shutdown. - Keep technical query/request code in infrastructure.
- Repositories may return entities. Gateways must not return entities; return DTOs, primitives, enums, or explicit result objects. Do not return ORM models or SDK response objects to core.
- Translate low-level exceptions into core exceptions only when callers need to handle them. Catch narrow driver or SDK exceptions, preserve the cause, and never expose raw provider messages, SQL, parameters, bodies, or URLs.
- For transactional persistence, implement an active
UnitOfWorkand aUnitOfWorkManager; register the manager, not repositories, active UoWs, or UoW providers for use-case injection. - Register adapter bindings in private
_register_dependencies(...)insideioc/container.py. Register every technical resource once at its owner boundary and close that same app-scoped instance from lifecycle. - Add focused integration tests only when the adapter has meaningful project-owned behavior to protect; do not add generic CRUD or upstream library tests just because an adapter file exists.
- For SQLAlchemy adapters, add or update Alembic migrations with
$specx-sqlalchemy-migrations.
Logging is top-level runtime infrastructure, not a core-scope adapter. Put
stdlib logging setup in infrastructure/logging/configurator.py with a
LoggingConfigurator that inherits BaseConfigurator; do not create gateway
ports or injected logger bindings for it.
For /readyz, implement required dependency checks as core/health gateway
adapters, for example
core/health/infrastructure/sqlalchemy/readiness_check_gateway.py, and bind
them to ReadinessCheckGateway in ioc/container.py. Bound every dependency
check with a short application timeout and return only a non-sensitive core
status.
Code Style
Use blank lines as logical separators in all code. Keep related statements together, but separate independent setup, action, assertion, response, branch, and transformation groups so long blocks stay readable.
References
references/adapter.md- adapter layout, port binding, SQLAlchemy/UoW, Redis, HTTP client, migration, and test patterns.
Signals
- GitHub stars
- 201
- Forks
- 35
- Last commit
- Aug 2026
Advanced
- Catalog kind
- skill
- Gateway key
specx-add-infrastructure-adapter- Source
- github.com/maksimzayats/specx