> ## Documentation Index
> Fetch the complete documentation index at: https://docs.pragmatiks.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Resource Store

> Browse and install pre-built infrastructure resources

The store is where you find resources to install. Browse available resources like an app store, then install what you need with a single command.

## Provider Tiers

Resources are built and maintained by providers. We categorize them into three tiers:

| Tier                  | Description                                                                 | Status      |
| --------------------- | --------------------------------------------------------------------------- | ----------- |
| **First-party**       | Built and maintained by Pragmatiks. Guaranteed to work and fully supported. | Available   |
| **Verified Partners** | Certified by Pragmatiks, maintained by partners.                            | Coming soon |
| **Community**         | Shared by the community.                                                    | Coming soon |

## Available Resources

All resources below are first-party, built and maintained by Pragmatiks.

### Agno Provider

AI agent framework for building and deploying agents and teams. [View documentation →](/providers/agno/overview)

| Resource                                                      | Description                                          |
| ------------------------------------------------------------- | ---------------------------------------------------- |
| [`agno/agent`](/providers/agno/agent)                         | AI agent definition with model, tools, and knowledge |
| [`agno/team`](/providers/agno/team)                           | Multi-agent team with coordinated members            |
| [`agno/models/anthropic`](/providers/agno/models)             | Anthropic Claude model configuration                 |
| [`agno/models/openai`](/providers/agno/models)                | OpenAI GPT model configuration                       |
| [`agno/tools/mcp`](/providers/agno/tools)                     | MCP server tool integration                          |
| [`agno/tools/websearch`](/providers/agno/tools)               | Web search tool                                      |
| [`agno/knowledge`](/providers/agno/knowledge)                 | Semantic search knowledge base                       |
| [`agno/vectordb/qdrant`](/providers/agno/knowledge)           | Qdrant vector database for Agno                      |
| [`agno/knowledge/embedder/openai`](/providers/agno/knowledge) | OpenAI embedding model                               |
| [`agno/knowledge/content`](/providers/agno/knowledge)         | Content ingestion (URLs, text)                       |
| [`agno/memory/manager`](/providers/agno/memory)               | Persistent agent memory                              |
| [`agno/db/postgres`](/providers/agno/storage)                 | PostgreSQL storage for sessions and memory           |
| [`agno/prompt`](/providers/agno/agent)                        | Reusable prompt templates                            |
| [`agno/runner`](/providers/agno/deployment)                   | Deploy agents/teams to Kubernetes                    |

### GCP Provider

Google Cloud Platform infrastructure resources. [View documentation →](/providers/gcp/overview)

| Resource                                                    | Description                           |
| ----------------------------------------------------------- | ------------------------------------- |
| [`gcp/secret`](/providers/gcp/secret)                       | Secret Manager secrets                |
| [`gcp/cloudsql/database_instance`](/providers/gcp/cloudsql) | Cloud SQL managed database instances  |
| [`gcp/cloudsql/database`](/providers/gcp/cloudsql)          | Databases within Cloud SQL instances  |
| [`gcp/cloudsql/user`](/providers/gcp/cloudsql)              | Database users for Cloud SQL          |
| `gcp/gke`                                                   | GKE clusters (Autopilot and Standard) |

### Kubernetes Provider

Core Kubernetes resources for workloads and configuration. [View documentation →](/providers/kubernetes/overview)

| Resource                                                    | Description                                          |
| ----------------------------------------------------------- | ---------------------------------------------------- |
| [`kubernetes/deployment`](/providers/kubernetes/deployment) | Stateless workloads with rolling updates             |
| `kubernetes/statefulset`                                    | Stateful workloads with persistent storage           |
| `kubernetes/service`                                        | Network exposure (ClusterIP, LoadBalancer, NodePort) |
| `kubernetes/configmap`                                      | Configuration key-value storage                      |
| `kubernetes/secret`                                         | Sensitive data storage                               |

### Anthropic Provider

Claude AI model integration.

| Resource             | Description                         |
| -------------------- | ----------------------------------- |
| `anthropic/messages` | Claude Messages API for completions |

### OpenAI Provider

OpenAI model integration.

| Resource                  | Description          |
| ------------------------- | -------------------- |
| `openai/chat_completions` | Chat Completions API |
| `openai/embeddings`       | Text embeddings API  |

### Docling Provider

Document parsing for RAG pipelines.

| Resource         | Description                                      |
| ---------------- | ------------------------------------------------ |
| `docling/parser` | Parse PDF, DOCX, HTML, Markdown with OCR support |

### Qdrant Provider

Vector database for similarity search.

| Resource            | Description                   |
| ------------------- | ----------------------------- |
| `qdrant/database`   | Deploy Qdrant to GKE via Helm |
| `qdrant/collection` | Manage vector collections     |

### Pragma Provider

Platform resources built into Pragmatiks.

| Resource        | Description                                              |
| --------------- | -------------------------------------------------------- |
| `pragma/secret` | Secure credential storage (deprecated, use `gcp/secret`) |

## Browsing Resources

The web store is coming with the Pragmatiks dashboard. For now, browse resources via the CLI:

```bash theme={"theme":{"light":"min-light","dark":"min-dark"}}
pragma providers list
```

## Building Your Own

Want to create resources for your team or the community?

<Card title="Building Providers" icon="hammer" href="/building-providers/overview">
  Learn how to build custom providers and resources.
</Card>
