Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 24 additions & 3 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@atxp-dev/cli-monorepo",
"version": "1.2.7",
"version": "1.3.0",
"description": "ATXP CLI tools for creating projects and running demos",
"license": "MIT",
"repository": {
Expand Down
2 changes: 1 addition & 1 deletion packages/atxp/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "atxp",
"version": "1.2.7",
"version": "1.3.0",
"description": "ATXP CLI - Command line tool for creating ATXP projects and running demos",
"license": "MIT",
"repository": {
Expand Down
32 changes: 29 additions & 3 deletions skills/atxp/SKILL.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
name: atxp
description: Access ATXP paid API tools for web search, AI image generation, music creation, video generation, and X/Twitter search. Use when users need real-time web search, AI-generated media (images, music, video), or X/Twitter search. Requires authentication via `npx atxp login`.
description: Access ATXP paid API tools for web search, AI image generation, music creation, video generation, X/Twitter search, and cloud deployment (Workers, D1, R2). Requires authentication via `npx atxp login`.
---

# ATXP Tools
Expand Down Expand Up @@ -28,6 +28,31 @@ source ~/.atxp/config
| `npx atxp video <prompt>` | AI video generation |
| `npx atxp x <query>` | X/Twitter search |

## PaaS Tools

Deploy serverless apps with Cloudflare Workers, SQLite databases (D1), and object storage (R2).

### Workers (Serverless Functions)
- `deploy_worker` - Deploy a Cloudflare Worker
- `list_deployments` - List all deployed workers
- `get_logs` - Retrieve worker logs
- `delete_worker` - Delete a worker deployment

### D1 Database (SQLite)
- `create_database` - Create a new D1 database
- `list_databases` - List all databases
- `query` - Execute SQL queries
- `delete_database` - Delete a database

### R2 Storage (Object Storage)
- `create_bucket` - Create a new R2 bucket
- `list_buckets` - List all buckets
- `upload_file` - Upload a file to a bucket
- `get_file` - Retrieve a file from a bucket
- `list_files` - List files in a bucket
- `delete_file` - Delete a file
- `delete_bucket` - Delete a bucket

## Usage

1. Verify `$ATXP_CONNECTION` is set
Expand All @@ -52,10 +77,11 @@ const result = await client.callTool({

## MCP Servers

| Server | Tool |
|--------|------|
| Server | Tools |
|--------|-------|
| `search.mcp.atxp.ai` | `search_search` |
| `image.mcp.atxp.ai` | `image_create_image` |
| `music.mcp.atxp.ai` | `music_create` |
| `video.mcp.atxp.ai` | `create_video` |
| `x-live-search.mcp.atxp.ai` | `x_live_search` |
| `paas.mcp.atxp.ai` | `deploy_worker`, `list_deployments`, `get_logs`, `delete_worker`, `create_database`, `list_databases`, `query`, `delete_database`, `create_bucket`, `list_buckets`, `delete_bucket`, `upload_file`, `get_file`, `list_files`, `delete_file` |
Loading