template-skill ยท diff

v1.0 to v1.0

10 added, 3 removed. Audit A to A.

---
name: template-skill
description: A template for creating new AceDataCloud Agent Skills. Copy this directory and customize.
license: Apache-2.0
metadata:
author: acedatacloud
version: "1.0"
compatibility: Requires ACEDATACLOUD_API_TOKEN environment variable.
---
# Template Skill
Replace this with your skill instructions.
- ## Authentication
+ > **Setup:** See [authentication](../_shared/authentication.md) for token setup.
- All AceDataCloud API calls require a Bearer token:
+ ## Quick Start
```bash
- export ACEDATACLOUD_API_TOKEN="your-token-here"
+ 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.