Back to the catalog

appwrite-cli

appwrite/skills · skills.sh

Open source Repository Open in the app JSON README (API)

About

Skill publicada por appwrite/skills no skills.sh. Instale com: npx skills add appwrite/skills@appwrite-cli

Details

Kind
Agent skills
Topic
Developer tools
Publisher
appwrite
Origin
skillssh
Category
ferramentas
Stars
27
Forks
2
Last push
2026-08-18T04:32:06Z
Repository state
ativo
License
BSD-3-Clause
Added
2026-08-30 15:22:39
Updated
2026-09-08 15:05:55
Origin id
appwrite/skills/appwrite-cli

README

# Appwrite AgentSkills

![License](https://img.shields.io/github/license/appwrite/agent-skills.svg?style=flat-square)
![Version](https://img.shields.io/badge/api%20version-1.9.x-blue.svg?style=flat-square)
[![Build Status](https://img.shields.io/travis/com/appwrite/sdk-generator?style=flat-square)](https://travis-ci.com/appwrite/sdk-generator)
[![Twitter Account](https://img.shields.io/twitter/follow/appwrite?color=00acee&label=twitter&style=flat-square)](https://twitter.com/appwrite)
[![Discord](https://img.shields.io/discord/564160730845151244?label=discord&style=flat-square)](https://appwrite.io/discord)

**This SDK is compatible with Appwrite server version 1.9.x. For older versions, please check [previous releases](https://github.com/appwrite/agent-skills.git/releases).**

Appwrite is an open-source backend as a service server that abstracts and simplifies complex and repetitive development tasks behind a very simple to use REST API. Appwrite aims to help you develop your apps faster and in a more secure way. Use the AgentSkills SDK to integrate your app with the Appwrite server to easily start interacting with all of Appwrite backend APIs and tools. For full API documentation and tutorials go to [https://appwrite.io/docs](https://appwrite.io/docs)

![Appwrite](https://github.com/appwrite/appwrite/raw/main/public/images/github.png)


## Getting Started

Agent Skills to help developers using AI coding agents with Appwrite. Agent Skills are folders of instructions, scripts, and resources that agents like Claude Code, Cursor, GitHub Copilot, and others can discover and use to work more accurately and efficiently.

These skills follow the Agent Skills Open Standard: https://agentskills.io/home

### Install the skills

Install directly with the Skills CLI:

```bash
npx skills add appwrite/agent-skills
```

This installs the packaged `appwrite-*` skills into your local skills directory.

### Available language skills

- `appwrite-typescript`
- `appwrite-dart`
- `appwrite-kotlin`
- `appwrite-swift`
- `appwrite-php`
- `appwrite-python`
- `appwrite-ruby`
- `appwrite-go`
- `appwrite-dotnet`

### Usage

Skills are automatically available once installed. The agent will use them when relevant tasks are detected.

### Prompt examples

Use these as copy-paste prompt starters.

#### TypeScript (server-side)

```text
Use the appwrite-typescript skill.
Create a Node.js script that uses Users service to create a user, then adds an initial profile row in TablesDB.
Use env vars for endpoint, project ID, and API key.
Include error handling and a small retry for transient failures.
```

#### TypeScript (web client)

```text
Use the appwrite-typescript skill.
Build a browser login flow with Account service:
- email/password signup
- email/password session login
- fetch current user
- logout current session
Return production-ready TypeScript code.
```

#### Python

```text
Use the appwrite-python skill.
Write a script that uploads a local file to Storage, then prints the file ID and a preview URL.
Use InputFile.from_path and catch Appwrite exceptions.
```

#### PHP

```text
Use the appwrite-php skill.
Create a service class that lists rows from TablesDB with Query.equal and Query.limit, and maps them to DTOs.
Prefer dependency injection for the Appwrite client.
```

#### Go

```text
Use the appwrite-go skill.
Implement a CLI command that creates a document-style row, then reads it back and prints JSON output.
Use context timeouts and structured error messages.
```

#### Kotlin

```text
Use the appwrite-kotlin skill.
Generate Android repository code to paginate rows using cursor queries and expose a suspend function API.
Keep UI concerns out of the data layer.
```

#### Migration prompt (Databases -> TablesDB)

```text
Use the appwrite-typescript skill.
Migrate this existing Databases-based code to TablesDB APIs.
Keep behavior identical and list each API mapping you changed.
```


## Contribution

This library is auto-generated by Appwrite custom [SDK Generator](https://github.com/appwrite/sdk-generator). To learn more about how you can help us improve this SDK, please check the [contribution guide](https://github.com/appwrite/sdk-generator/blob/master/CONTRIBUTING.md) before sending a pull-request.

## License

Please see the [BSD-3-Clause license](https://raw.githubusercontent.com/appwrite/appwrite/master/LICENSE) file for more information.

More