specx Foundation
SkillDev toolsUse specx foundation bases in Python services, or add a tiny project-local `foundation/` base for missing categories or stateful framework bases.
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 Foundation skill
What this skill tells your AI
The instructions your AI receives, as published by maksimzayats/specx in skills/specx-foundation/SKILL.md and read by ahel’s review.
Use this skill when a service class needs an explicit base, or when a new class
category may need a project-local foundation base. Read
references/foundation.md before editing foundation-related code.
Workflow
- Prefer packaged scoped bases from
specx.core.foundation,specx.delivery.foundation, andspecx.infrastructure.foundation. - Do not create an empty
src/<package>/foundation/package. - Add a project-local
foundation/module only when current code needs a real project-local base category or a stateful framework base that must not be shared globally, such as a SQLAlchemy declarative base. - Keep project-local foundation limited to base definitions: marker bases,
common external-base wrappers, justified ABCs, and stateful framework bases.
Put stable cross-scope concrete primitives under
shared/, notfoundation/. - Give every project source class, including each local base, a docstring that explains what it protects and includes a concrete usage example.
- Make every non-foundation project source class inherit an explicit scoped base.
- Name each class with the suffix implied by its base ancestry, such as
TaskDTO,TaskEntity,TaskResponseSchema,CreateTaskUseCase, orTaskTitleNormalizerService. - Use
BaseLifecyclefor delivery app lifespan managers such asFastAPILifecycle. - Prefer
@dataclass(frozen=True, kw_only=True, slots=True)for commands, queries, DTOs, entities, and other core data classes unless the user asks for another model type. - Keep
BaseCommandandBaseQueryas use-case input bases, independent fromBaseDTO. Commands and queries are not result DTOs. - When an application value has a limited known set, model it with
BaseStrEnuminstead of plainstrorLiteral[...]. - Keep business rules, delivery behavior, adapter code, and runtime wiring out of project-local foundation modules.
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/foundation.md- packaged base catalog, import paths, extension rules, and architecture guardrails.
Signals
- GitHub stars
- 201
- Forks
- 35
- Last commit
- Aug 2026
Advanced
- Catalog kind
- skill
- Gateway key
specx-foundation- Source
- github.com/maksimzayats/specx