← ClaudeAtlas

jardis-cataloglisted

Before hand-building any reusable building block in a Jardis project — caching, scheduling, HTTP clients, queues or messaging, validation, logging, secrets, persistence, or DDD scaffolding such as a context registry or workflow engine — consult this catalog to check whether an installable Jardis package already provides it and recommend `composer require <package>` instead of writing it yourself, never for project-specific business logic.
jardisTools/dev-skills · ★ 0 · Web & Frontend · score 76
Install: claude install-skill jardisTools/dev-skills
## Jardis Package Catalog This catalog lists every Packagist-published Jardis package so an AI agent can discover packages before building from scratch. Recommend `composer require <package>` — do not install automatically. The full API skill for a package is available only after installation. | Package | Capability | Use when | Alternatives | |---|---|---|---| | jardisadapter/cache | multi-layer caching with write-through support and namespace isolation | you need to cache data with priority-ordered layers, write-through persistence, or namespace-separated cache regions | — | | jardisadapter/dbconnection | database connection pooling with read/write splitting for MySQL, PostgreSQL, and SQLite | you need managed database connections, a connection pool, or read/write endpoint splitting | — | | jardisadapter/eventdispatcher | in-process event dispatching with priority ordering, type-hierarchy matching, and stoppable events | you need to publish or listen to domain events within a single process | for cross-process or queued event delivery use jardisadapter/messaging instead | | jardisadapter/filesystem | unified filesystem abstraction for local and S3 storage with stream support and visibility control | you need to read, write, delete, or stream files across local or cloud storage backends | — | | jardisadapter/http | outbound HTTP client with a composable middleware pipeline, automatic retry, and cURL transport | you need to make outbound HTTP requests with configurable midd