← ClaudeAtlas

template-skilllisted

A template for creating new AceDataCloud Agent Skills. Copy this directory and customize.
AceDataCloud/Skills · ★ 8 · AI & Automation · score 69
Install: claude install-skill AceDataCloud/Skills
# Template Skill Replace this with your skill instructions. > **Setup:** See [authentication](../_shared/authentication.md) for token setup. ## Quick Start ```bash curl -X POST https://api.acedata.cloud/<endpoint> \ -H "Authorization: Bearer $ACEDATACLOUD_API_TOKEN" \ -H "Content-Type: application/json" \ -d '{"prompt": "..."}' ``` > **Async:** See [async task polling](../_shared/async-tasks.md). Poll via `POST /<service>/tasks` with `{"task_id": "..."}`. ## Workflow 1. Step one 2. Step two 3. Step three ## Gotchas - List non-obvious behaviors here > **MCP:** See [MCP servers](../_shared/mcp-servers.md) for tool-use integration.