Aliyun Ccai Manage
v1.0.0Use when managing Alibaba Cloud Contact Center AI (ContactCenterAI) via OpenAPI/SDK, including the task involves Contact Center AI resource lifecycle operati...
MIT-0
Security Scan
OpenClaw
Suspicious
medium confidencePurpose & Capability
The skill claims to manage Alibaba Cloud ContactCenterAI and includes a script that fetches OpenAPI metadata from api.aliyun.com — this is coherent with the stated purpose. However, the registry metadata declares no required credentials while SKILL.md explicitly requires Alibaba Cloud credentials (ALICLOUD_ACCESS_KEY_ID / ALICLOUD_ACCESS_KEY_SECRET and/or ~/.alibabacloud/credentials). The omission in metadata is an inconsistency (likely sloppy) that reduces transparency.
Instruction Scope
SKILL.md instructs the agent to discover APIs, call SDK/OpenAPI, and save artifacts under output/aliyun-ccai-manage/. It also names environment variables to use for credentials and tells the agent to include 'key parameters (region/resource id/time range)' in evidence files. The instructions access cloud credentials (via env or shared config) not declared in registry metadata and direct writing potentially sensitive identifiers to disk. The included Python script fetches metadata from the documented api.aliyun.com endpoints only (no hidden endpoints), which is expected.
Install Mechanism
No install spec; the skill is instruction-only with a small included Python script. The script only performs an HTTPS GET against api.aliyun.com and writes files under output/, which is low risk compared to download-and-execute installers.
Credentials
Requiring Alibaba Cloud access keys is proportionate to a cloud-management skill. The problem is the registry metadata does not declare these required environment variables or a primary credential, which is a transparency gap. Also, SKILL.md asks agents to persist 'evidence' containing resource identifiers to disk — that is reasonable for reproducibility but could leak sensitive resource context if not handled carefully. No unrelated credentials are requested.
Persistence & Privilege
The skill is not always: true and does not request system-level persistence. It writes outputs under its own output/ directory per its Output policy. Autonomous invocation is allowed by default (disable-model-invocation: false) but that is normal and not by itself flagged here.
What to consider before installing
Before installing or running this skill: 1) Be aware the skill expects Alibaba Cloud credentials (ALICLOUD_ACCESS_KEY_ID and ALICLOUD_ACCESS_KEY_SECRET or ~/.alibabacloud/credentials) even though the registry metadata doesn't list them—verify and supply least-privilege credentials scoped to ContactCenterAI only. 2) Inspect the included script (scripts/list_openapi_meta_apis.py) yourself — it fetches API metadata from api.aliyun.com and writes files to output/aliyun-ccai-manage/ (no hidden network endpoints were found). 3) Avoid placing long-lived or wide-scope credentials in the environment; consider using limited IAM keys, temporary tokens, or a dedicated sandbox account. 4) Review output/ files for any sensitive identifiers before sharing them; the SKILL.md explicitly asks to record region/resource ids/time ranges. 5) If you need stronger assurance, ask the publisher for a homepage/source, or request they add the required env vars to the package metadata and document least-privilege IAM permissions. If you cannot verify the source or cannot restrict credentials, do not run the skill with production credentials.Like a lobster shell, security has layers — review code before you run it.
latest
License
MIT-0
Free to use, modify, and redistribute. No attribution required.
SKILL.md
Category: service
Contact Center AI
Use Alibaba Cloud OpenAPI (RPC) with official SDKs or OpenAPI Explorer to manage resources for Contact Center AI.
Workflow
- Confirm region, resource identifiers, and desired action.
- Discover API list and required parameters (see references).
- Call API with SDK or OpenAPI Explorer.
- Verify results with describe/list APIs.
AccessKey priority (must follow)
- Environment variables:
ALICLOUD_ACCESS_KEY_ID/ALICLOUD_ACCESS_KEY_SECRET/ALICLOUD_REGION_IDRegion policy:ALICLOUD_REGION_IDis an optional default. If unset, decide the most reasonable region for the task; if unclear, ask the user. - Shared config file:
~/.alibabacloud/credentials
API discovery
- Product code:
ContactCenterAI - Default API version:
2024-06-03 - Use OpenAPI metadata endpoints to list APIs and get schemas (see references).
High-frequency operation patterns
- Inventory/list: prefer
List*/Describe*APIs to get current resources. - Change/configure: prefer
Create*/Update*/Modify*/Set*APIs for mutations. - Status/troubleshoot: prefer
Get*/Query*/Describe*StatusAPIs for diagnosis.
Minimal executable quickstart
Use metadata-first discovery before calling business APIs:
python scripts/list_openapi_meta_apis.py
Optional overrides:
python scripts/list_openapi_meta_apis.py --product-code <ProductCode> --version <Version>
The script writes API inventory artifacts under the skill output directory.
Output policy
If you need to save responses or generated artifacts, write them under:
output/aliyun-ccai-manage/
Validation
mkdir -p output/aliyun-ccai-manage
for f in skills/ai/service/aliyun-ccai-manage/scripts/*.py; do
python3 -m py_compile "$f"
done
echo "py_compile_ok" > output/aliyun-ccai-manage/validate.txt
Pass criteria: command exits 0 and output/aliyun-ccai-manage/validate.txt is generated.
Output And Evidence
- Save artifacts, command outputs, and API response summaries under
output/aliyun-ccai-manage/. - Include key parameters (region/resource id/time range) in evidence files for reproducibility.
Prerequisites
- Configure least-privilege Alibaba Cloud credentials before execution.
- Prefer environment variables:
ALICLOUD_ACCESS_KEY_ID,ALICLOUD_ACCESS_KEY_SECRET, optionalALICLOUD_REGION_ID. - If region is unclear, ask the user before running mutating operations.
References
- Sources:
references/sources.md
Files
4 totalSelect a file
Select a file to preview.
Comments
Loading comments…
