Install
$ agentstack add skill-maksimzayats-specx-specx-add-infrastructure-adapter ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ● Network access Used
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
specx Add Infrastructure Adapter
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 inherit BaseRepository and 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 inherit BaseGateway, mark required methods with @abstractmethod, declare external effects, and do not return entities.
- Put concrete implementations under
core//infrastructure//.
- 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 the httpx2 namespace; do not generate new legacy httpx imports.
- 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//, 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 a
UnitOfWorkManager; register the manager, not repositories, active UoWs, or UoW providers for use-case injection.
- Register adapter bindings in private
_register_dependencies(...)inside
ioc/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.
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: maksimzayats
- Source: maksimzayats/specx
- License: MIT
- Homepage: https://specx.dev
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.