fastsqla
v1.0.0Use FastSQLA's current setup, async session, and pagination APIs correctly.
By Hadrien DavidLicense: MIT85 GitHub starsUpdated 12 hours ago
Directory evidence
- Runtimes
- Codex and Claude Code
- Parsed components
- 3 skill or MCP entries
- Source updated
- Sep 23, 2026
- Manifest status
- Canonical path parsed
The directory validates manifest shape and source location. It does not execute the plugin or provide a security endorsement. Review the indexing methodology →
Install fastsqla for Codex and Claude Code
codex plugin marketplace add hadrien/FastSQLA
codex plugin marketplace upgrade fastsqla
codex plugin add fastsqla@fastsqlaPaste and run these commands in a terminal with Codex. They add and refresh the fastsqla catalog, then install this plugin.
Compatibility: the page URL and API slug “fastsqla” remain stable.
- Codex:
fastsqla@agent-plugin-marketplace→fastsqla@fastsqla
The installer fetches third-party code from the source repository shown on this page. This directory validates manifest structure and source location, but does not perform a security audit; review the manifest, components, and source before installing.
Get the source manually
git clone https://github.com/hadrien/FastSQLAClone the source repository, then follow its setup instructions to add the plugin to a compatible client. The plugin root is plugin/fastsqla/.
Plugin files
├── .codex-plugin/plugin.json├── .claude-plugin/plugin.json├── skills/fastsqla-pagination/SKILL.md├── skills/fastsqla-session/SKILL.md└── skills/fastsqla-setup/SKILL.md
Included Skills3
Paginate SQLAlchemy select queries in FastAPI endpoints using FastSQLA. Covers fastsqla.Paginate (offset/limit) and fastsqla.cursor.Paginate (forward-only cursor/limit), Page/Item/Collection response models, and the new_pagination() factory for custom page sizes, count queries, and result processing.
Manages async SQLAlchemy sessions in FastSQLA endpoints and background tasks. Covers the Session dependency (auto-commit/rollback lifecycle), flush vs commit rules, IntegrityError handling, and the open_session() context manager. Use when writing FastAPI endpoints or background tasks that interact with a database through FastSQLA.
How to install and configure FastSQLA with FastAPI. Covers pip installation, async driver selection, environment variable configuration via fastsqla.lifespan, programmatic configuration via new_lifespan(), and composing multiple lifespans with AsyncExitStack.
Plugin manifests2
{
"name": "fastsqla",
"version": "1.0.0",
"description": "Use FastSQLA's current setup, async session, and pagination APIs correctly.",
"author": {
"name": "Hadrien David",
"email": "[email protected]",
"url": "https://github.com/hadrien"
},
"homepage": "https://hadrien.github.io/FastSQLA/",
"repository": "https://github.com/hadrien/FastSQLA",
"license": "MIT",
"keywords": [
"fastapi",
"sqlalchemy",
"async",
"pagination",
"sqlmodel"
],
"skills": "./skills/",
"interface": {
"displayName": "FastSQLA",
"shortDescription": "FastSQLA setup, sessions, and pagination",
"longDescription": "Build FastAPI applications with FastSQLA's current async SQLAlchemy and SQLModel APIs.",
"developerName": "Hadrien David",
"category": "Productivity",
"capabilities": [
"Read",
"Write"
],
"websiteURL": "https://hadrien.github.io/FastSQLA/",
"defaultPrompt": [
"Set up FastSQLA in this FastAPI application.",
"Use FastSQLA to add an async database endpoint.",
"Paginate this SQLAlchemy query with FastSQLA."
]
}
}{
"$schema": "https://json.schemastore.org/claude-code-plugin.json",
"name": "fastsqla",
"version": "1.0.0",
"description": "Use FastSQLA's current setup, async session, and pagination APIs correctly.",
"author": {
"name": "Hadrien David",
"email": "[email protected]"
},
"homepage": "https://hadrien.github.io/FastSQLA/",
"repository": "https://github.com/hadrien/FastSQLA",
"license": "MIT",
"keywords": [
"fastapi",
"sqlalchemy",
"async",
"pagination",
"sqlmodel"
],
"skills": "./skills/"
}For maintainers
If you maintain this plugin, link to this source-backed listing from your README so users can review its manifest and indexed components.
[fastsqla on Agent Plugins Marketplace](https://pluginsmp.com/plugins/fastsqla)