Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
cinience avatar

Alicloud Compute Fc Agentrun

  • 273 installs
  • 396 repo stars
  • Updated July 18, 2026
  • cinience/alicloud-skills

alicloud-compute-fc-agentrun is an AI agent skill that manages Alibaba Cloud Function Compute AgentRun resources via OpenAPI for developers who need to deploy, configure, and troubleshoot serverless AI agent runtimes.

About

alicloud-compute-fc-agentrun is a version 1.0.0 AI coding skill in cinience/alicloud-skills that guides developers through Alibaba Cloud Function Compute AgentRun OpenAPI (ROA) workflows for deploying and operating serverless AI agents. The skill bundles three Python scripts—quickstart.py, runtime_flow.py, and cleanup_runtime.py—plus four reference documents covering regional endpoints, a 56-operation API overview, and SDK guidance. A five-step workflow selects a regional agentrun.cn-*.aliyuncs.com endpoint, creates and publishes an agent runtime, provisions runtime endpoints, optionally configures sandbox templates and model services, and wires credentials and memory collections. Developers reach for alicloud-compute-fc-agentrun when they need programmatic control over AgentRun runtimes, sandboxes, model proxies, memory, and credentials instead of console-only setup, or when troubleshooting requires querying live resource status. Generated artifacts are stored under output/aliyun-fc-agentrun/ including API response summaries and py_compile validation output.

  • Function Compute serverless runtime
  • Agent execution orchestration
  • Scalable cloud compute for AI
  • Trigger and handler patterns
  • AliCloud deployment integration

Alicloud Compute Fc Agentrun by the numbers

  • 273 all-time installs (skills.sh)
  • Ranked #418 of 1,039 Cloud & Infrastructure skills by installs in the Skillselion catalog
  • Data as of Aug 5, 2026 (Skillselion catalog sync)
npx skills add https://github.com/cinience/alicloud-skills --skill alicloud-compute-fc-agentrun

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs273
repo stars396
Last updatedJuly 18, 2026
Repositorycinience/alicloud-skills

How do you deploy AI agents on Alibaba Function Compute AgentRun?

Deploy and run AI agents on Alibaba Function Compute with scalable serverless execution, triggers, and runtime configuration.

Who is it for?

Backend developers deploying serverless AI agents on Alibaba Cloud who already have RAM AccessKey credentials and need OpenAPI-driven AgentRun lifecycle control.

Skip if: Developers not using Alibaba Cloud, teams wanting only local agent prototyping without serverless deployment, or projects that only need generic FC 3.0 function deploy via Serverless Devs CLI.

When should I use this skill?

A developer asks to create, publish, query, or tear down Function Compute AgentRun runtimes, endpoints, sandboxes, model services, memory collections, or credentials via OpenAPI.

What you get

Published AgentRun runtime endpoints, sandbox templates, configured model services, and API response logs under output/aliyun-fc-agentrun/

  • Published AgentRun runtime endpoints
  • API response evidence under output/aliyun-fc-agentrun/
  • py_compile validation output for skill scripts

By the numbers

  • Version 1.0.0 bundles 3 Python automation scripts
  • References document 56 AgentRun OpenAPI operations across 5 resource groups
  • Includes 4 reference markdown files for endpoints, API overview, SDK, and sources

Files

SKILL.mdMarkdownGitHub ↗

Category: service

Function Compute AgentRun (OpenAPI)

Use AgentRun OpenAPI (ROA) to manage runtimes, sandboxes, model services, memory, and credentials.

Prerequisites

  • AccessKey via RAM user (least privilege).
  • Select the correct regional endpoint (see references/endpoints.md). If unsure, choose the most reasonable region for the task or ask the user.
  • Use OpenAPI Explorer or official SDK to avoid manual signing (ROA requires SignatureV1).

Workflow

1) Choose region endpoint (agentrun.cn-<region>.aliyuncs.com). 2) Create runtime → publish version → create runtime endpoint. 3) Create sandbox/template if needed. 4) Configure credentials and model services as required. 5) Query resources for troubleshooting.

API Groups

See references/api_overview.md for the full API list and grouping.

Script quickstart

python skills/compute/fc/alicloud-compute-fc-agentrun/scripts/quickstart.py

Environment variables:

  • AGENTRUN_ENDPOINT
  • ALICLOUD_ACCESS_KEY_ID
  • ALICLOUD_ACCESS_KEY_SECRET
  • OUTPUT_DIR (optional)

Runtime flow script

AGENTRUN_RUNTIME_NAME="my-runtime" \\
AGENTRUN_RUNTIME_ENDPOINT_NAME="my-runtime-endpoint" \\
python skills/compute/fc/alicloud-compute-fc-agentrun/scripts/runtime_flow.py

Environment variables:

  • AGENTRUN_ENDPOINT
  • ALICLOUD_ACCESS_KEY_ID
  • ALICLOUD_ACCESS_KEY_SECRET
  • AGENTRUN_RUNTIME_NAME
  • AGENTRUN_RUNTIME_ENDPOINT_NAME
  • AGENTRUN_RUNTIME_DESC (optional)
  • OUTPUT_DIR (optional)

Cleanup script

AGENTRUN_RUNTIME_ID="runtime-id" \\
AGENTRUN_RUNTIME_ENDPOINT_ID="endpoint-id" \\
python skills/compute/fc/alicloud-compute-fc-agentrun/scripts/cleanup_runtime.py

Environment variables:

  • AGENTRUN_ENDPOINT
  • ALICLOUD_ACCESS_KEY_ID
  • ALICLOUD_ACCESS_KEY_SECRET
  • AGENTRUN_RUNTIME_ID
  • AGENTRUN_RUNTIME_ENDPOINT_ID
  • OUTPUT_DIR (optional)

SDK Notes

See references/sdk.md for SDK acquisition guidance.

Output Policy

If you store any generated files or responses, write them under: output/compute-fc-agentrun/.

Validation

mkdir -p output/alicloud-compute-fc-agentrun
for f in skills/compute/fc/alicloud-compute-fc-agentrun/scripts/*.py; do
  python3 -m py_compile "$f"
done
echo "py_compile_ok" > output/alicloud-compute-fc-agentrun/validate.txt

Pass criteria: command exits 0 and output/alicloud-compute-fc-agentrun/validate.txt is generated.

Output And Evidence

  • Save artifacts, command outputs, and API response summaries under output/alicloud-compute-fc-agentrun/.
  • Include key parameters (region/resource id/time range) in evidence files for reproducibility.

References

  • API overview and operation list: references/api_overview.md
  • Regional endpoints: references/endpoints.md
  • SDK guidance: references/sdk.md
  • Source list: references/sources.md

Related skills

How it compares

Choose alicloud-compute-fc-agentrun for AgentRun-specific OpenAPI resource lifecycle (runtimes, sandboxes, model services); use the sibling Serverless Devs skill for CLI-based FC 3.0 function project scaffolding and depl

FAQ

What does alicloud-compute-fc-agentrun manage?

alicloud-compute-fc-agentrun manages Alibaba Cloud Function Compute AgentRun resources via OpenAPI, including agent runtimes, runtime endpoints, sandbox templates, model services, memory collections, and credentials across regional agentrun.cn-*.aliyuncs.com endpoints.

What scripts ship with alicloud-compute-fc-agentrun?

alicloud-compute-fc-agentrun ships three Python scripts: quickstart.py for initial setup, runtime_flow.py to create and publish runtimes with endpoints, and cleanup_runtime.py to delete runtime and endpoint resources using environment variables like AGENTRUN_ENDPOINT.

What credentials does AgentRun OpenAPI require?

alicloud-compute-fc-agentrun requires a RAM user AccessKey with least-privilege permissions, set via ALIBABACLOUD_ACCESS_KEY_ID and ALIBABACLOUD_ACCESS_KEY_SECRET, plus a regional AGENTRUN_ENDPOINT before calling AgentRun ROA APIs.

Cloud & Infrastructurebackenddevopsintegrations

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.