Auto-activate for pytest_databases imports, conftest.py with database fixtures. Container-based database testing with pytest. Use when: creating PostgreSQL/MySQL/SQLite/Oracle fixtures, Docker test containers, database integration tests, or any pytest database setup. Produces container-based database test fixtures with proper lifecycle management. Not for mocking databases or non-pytest test frameworks.
From flownpx claudepluginhub cofin/flow --plugin flowThis skill uses the workspace's default tool permissions.
references/config.mdreferences/databases.mdreferences/reference.mdreferences/troubleshooting.mdreferences/xdist.mdSearches, retrieves, and installs Agent Skills from prompts.chat registry using MCP tools like search_skills and get_skill. Activates for finding skills, browsing catalogs, or extending Claude.
Searches prompts.chat for AI prompt templates by keyword or category, retrieves by ID with variable handling, and improves prompts via AI. Use for discovering or enhancing prompts.
Enables AI agents to execute x402 payments with per-task budgets, spending controls, and non-custodial wallets via MCP tools. Use when agents pay for APIs, services, or other agents.
A pytest plugin providing ready-made database fixtures for testing using Docker containers.
For detailed guides and code examples, refer to the following documents in references/:
Add to conftest.py:
pytest_plugins = ["pytest_databases.docker.postgres"]
def test_database(postgres_service):
# Use postgres_service.host, .port, etc.
pass
</workflow>