Category: service
Works with
AI-first code editor with Composer
Before installing skills in Cursor, ensure your development environment meets these requirements:
node --versionalicloud-network-esaExecute the skills CLI command in your project's root directory to begin installation:
Fetches alicloud-network-esa from cinience/alicloud-skills and configures it for Cursor.
The CLI shows a list of agents. Use arrow keys and space to select Cursor:
Confirm successful installation by checking the skill directory location:
Restart Cursor to activate alicloud-network-esa. Access via /alicloud-network-esa in your agent's command palette.
We perform automated surface-level scans (Gen AI Scanner, Socket, Snyk) during installation. These checks detect common vulnerabilities but do not guarantee complete security. Always review skill source code and verify the publisher's reputation before production use.
Skills execute code in your environment. Always review source, verify the publisher, and test in isolation before production.
Submit your Claude Code skill and start earning
Automate repetitive workflows and reduce manual effort
Example
Generate reports, summarize documents, draft communications
Save 3-5 hours per week on routine tasks
Learn new skills, understand complex topics, get expert guidance
Example
Explain concepts, provide examples, suggest learning resources
Accelerate learning and skill development by 2x
Enhance output quality through reviews, suggestions, and refinements
Example
Review drafts, suggest improvements, catch errors
Improve work quality by 30-40% with less effort
0
total installs
0
this week
368
GitHub stars
0
upvotes
Run in your terminal
0
installs
0
this week
368
stars
Category: service
Use Alibaba Cloud OpenAPI (RPC) with official Python SDK to manage all ESA capabilities.
Alibaba Cloud ESA provides five core capabilities:
Use Python SDK uniformly to call ESA OpenAPI.
pip install alibabacloud_esa20240910 alibabacloud_tea_openapi alibabacloud_credentialsfrom alibabacloud_esa20240910.client import Client as Esa20240910Client
from alibabacloud_esa20240910 import models as esa_models
from alibabacloud_tea_openapi import models as open_api_models
def create_client(region_id: str = "cn-hangzhou") -> Esa20240910Client:
config = open_api_models.Config(
region_id=region_id,
endpoint="esa.cn-hangzhou.aliyuncs.com",
)
return Esa20240910Client(config)
Pages is a quick deployment flow based on Edge Routine, deploying HTML or static directories to the edge.
CreateRoutine → GetRoutineStagingCodeUploadInfo → Upload code to OSS
→ CommitRoutineStagingCode → PublishRoutineCodeVersion(staging)
→ PublishRoutineCodeVersion(production) → GetRoutine(get access URL)
CreateRoutine → CreateRoutineWithAssetsCodeVersion → Package zip and upload to OSS
→ Poll GetRoutineCodeVersionInfo(wait for available)
→ CreateRoutineCodeDeployment(staging) → CreateRoutineCodeDeployment(production)
→ GetRoutine(get access URL)
The zip package structure depends on EDGE_ROUTINE_TYPE (automatically determined by checkEdgeRoutineType based on whether entry file and assets directory exist):
routine/index.js (bundled with esbuild or --no-bundle to read source files directly)assets/, maintaining original directory structureroutine/index.js + assets/ static resources (most common)The assets/ path is relative to assets.directory in configuration. Configuration priority: CLI args > esa.jsonc / esa.toml.
defaultRelatedRecord via GetRoutine as access domainDetailed reference: references/pages.md
Manage the complete lifecycle of serverless edge functions via Python SDK.
CreateRoutine → GetRoutineStagingCodeUploadInfo → Upload code to OSS
→ CommitRoutineStagingCode → PublishRoutineCodeVersion
→ (CreateRoutineRoute) → GetRoutine
CreateRoutine, DeleteRoutine, GetRoutine, GetRoutineUserInfo, ListUserRoutinesGetRoutineStagingCodeUploadInfo, CommitRoutineStagingCode, PublishRoutineCodeVersion, DeleteRoutineCodeVersionCreateRoutineRoute, UpdateRoutineRoute, DeleteRoutineRoute, GetRoutineRoute, ListRoutineRoutes, ListSiteRoutesCreateRoutineRelatedRecord, DeleteRoutineRelatedRecord, ListRoutineRelatedRecordsexport default {
async fetch(request) {
return new Response("Hello", {
headers: { "content-type": "text/html;charset=UTF-8" },
});
},
};
Detailed reference: references/er.md
Distributed edge key-value storage, readable and writable in Edge Routine, also manageable via OpenAPI/SDK.
Expiration (Unix timestamp) or ExpirationTtl (seconds)CreateKvNamespace, DeleteKvNamespace, GetKvNamespace, GetKvAccount, DescribeKvAccountStatusPutKv, GetKv, GetKvDetail, DeleteKv, PutKvWithHighCapacityBatchPutKv, BatchDeleteKv, BatchPutKvWithHighCapacity, BatchDeleteKvWithHighCapacity, ListKvsclient = create_client()
# Create namespace
client.create_kv_namespace(esa_models.CreateKvNamespaceRequest(namespace="my-ns"))
# Write
client.put_kv(esa_models.PutKvRequest(namespace="my-ns", key="k1", value="v1"))
# Read
resp = client.get_kv(esa_models.GetKvRequest(namespace="my-ns", key="k1"))
Detailed reference: references/kv.md
Use Python SDK to manage ESA sites, DNS records, cache rules, etc.
PageNumber + PageSize.ListSites returns sites across all regions; no need to iterate regions.pending; complete access verification via VerifySite to activate.UpdateSiteAccessType can switch between CNAME and NS, but switching to CNAME may fail if incompatible DNS records exist.CreateRecord, ListRecords, etc.) work for both NS and CNAME connected sites. CNAME sites are limited to CNAME and A/AAAA types only, and records cannot disable acceleration (proxy must stay enabled).Type parameter must be exact: use A/AAAA (not A), CNAME, MX, TXT, NS, SRV, CAA.CreateCacheRule supports two config types: global (site-wide default) and rule (conditional rule with match expression).references/api_overview.md.scripts/ and write outputs under output/alicloud-network-esa/.scripts/list_sites.pyscripts/summary_sites_by_plan.pyscripts/check_site_status.pyscripts/list_dns_records.pyQuery and analyze ESA site traffic data using DescribeSiteTimeSeriesData and DescribeSiteTopData APIs.
Query traffic trends over time, returning aggregated data points.
Time Granularity Rules:
| Time Range | Interval | Interval Value |
|---|---|---|
| <= 3 hours | 1 minute | 60 |
| 3-12 hours | 5 minutes | 300 |
| 12 hours - 1 day | 15 minutes | 900 |
| 1-10 days | 1 hour | 3600 |
| 10-31 days | 1 day | 86400 |
Query Top-N ranking data by various dimensions.
Limit Options: 5, 10, 150
| Field | Type | Description |
|---|---|---|
Traffic |
int | Response traffic from ESA to client (bytes) |
Requests |
int | Number of requests |
RequestTraffic |
int | Client request traffic (bytes) |
PageView |
int | Page views |
Geographic Dimensions: ClientCountryCode (country), ClientProvinceCode (province), ClientISP (ISP), ClientASN
Client Info: ClientIP, ClientIPVersion, ClientBrowser, ClientDevice, ClientOS
Request Details: ClientRequestHost, ClientRequestMethod, ClientRequestPath, ClientRequestProtocol, ClientRequestQuery, ClientRequestReferer, ClientRequestUserAgent
Response/Cache: EdgeCacheStatus, EdgeResponseStatusCode, EdgeResponseContentType, OriginResponseStatusCode
Others: ALL (aggregated), SiteId (account-level query), Version, ClientSSLProtocol, ClientXRequestedWith
| HTTP Code | Error Code | Description |
|---|---|---|
| 400 | InvalidParameter.TimeRange |
Time range exceeded (max 31 days) |
| 400 | InvalidEndTime.Mismatch |
EndTime earlier than StartTime |
| 400 | InvalidParameter.Field |
Invalid field name |
| 400 | InvalidParameter.Dimension |
Invalid dimension |
| 400 | InvalidTime.Malformed |
Time format error (use yyyy-MM-ddTHH:mm:ssZ) |
Detailed reference: references/time-series.md, references/top-data.md, references/fields.md
CreateSiteListSites (supports SiteName, Status, AccessType, Coverage filters)GetSiteDeleteSiteCheckSiteNameVerifySiteUpdateSiteAccessTypeUpdateSiteCoverageGetSiteCurrentNSUpdateSiteVanityNSUpdateSitePause, GetSitePauseUpdateSiteNameExclusive, GetSiteNameExclusiveActivateVersionManagement, DeactivateVersionManagementGetIPv6, UpdateIPv6NS access: full record type support. CNAME access: only CNAME and A/AAAA, proxy must stay enabled.
CreateRecordListRecords (supports Type, RecordName, Proxied filters)GetRecordUpdateRecordDeleteRecordBatchCreateRecordsExportRecordsCreateCacheRuleListCacheRulesGetCacheRuleUpdateCacheRuleDeleteCacheRuleCache rule expression notes (important):
CreateCacheRule parameters are flat, not a nested JSON Rule object.Rule parameter is a match condition expression string. See Rule Expression Syntax section below.ends_with()/starts_with() must use function-call style; matches (regex) requires standard plan or above.--EdgeCacheMode override_origin --EdgeCacheTtl <seconds>.ESA uses a unified rule engine expression syntax across multiple features (cache rules, WAF custom rules, rate limiting, URL rewrite, header modification, etc.).
Use this syntax for the Rule parameter in any ESA API that accepts a match condition expression:
CreateCacheRule / UpdateCacheRule - Cache rulesCreateWafRule / UpdateWafRule - WAF custom rulesCreateRatePlanRule - Rate limiting rulesCreateRewriteUrlRule / UpdateRewriteUrlRule - URL rewrite rules(condition)
(condition1 and condition2)
(condition1) or (condition2)
Max nesting depth: 2 levels.
Infix style (operator between field and value):
(field eq "value")
(field ne "value")
(field contains "value")
(field in {"value1" "value2"})
(field matches "regex")
Function style (operator wraps field):
(starts_with(field, "value"))
(ends_with(field, "value"))
(exists(field))
(len(field) gt 100)
(lower(field) eq "value")
# Match file extension
--Rule '(http.request.uri.path.extension eq "html")'
# Match multiple extensions
--Rule '(http.request.uri.path.extension in {"js" "css" "png" "jpg"})'
# Match URL prefix
--Rule '(starts_with(http.request.uri, "/api/"))'
# Match URL suffix
Implementation Guide
Prerequisites
- ›Claude Desktop or compatible AI client with skill support
- ›Clear understanding of task or problem to solve
- ›Willingness to iterate and refine outputs
Time Estimate
15-45 minutes depending on use case complexity
Steps
- 1Install skill using provided installation command
- 2Test with simple use case relevant to your work
- 3Evaluate output quality and relevance
- 4Iterate on prompts to improve results
- 5Integrate into regular workflow if valuable
Common Pitfalls
- ⚠Expecting perfect results without iteration
- ⚠Not providing enough context in prompts
- ⚠Using skill for tasks outside its intended scope
- ⚠Accepting outputs without review and validation
Best Practices
✓ Do
- +Start with clear, specific prompts
- +Provide relevant context and constraints
- +Review and refine all outputs before using
- +Iterate to improve output quality
- +Document successful prompt patterns
✗ Don't
- −Don't use without understanding skill limitations
- −Don't skip validation of outputs
- −Don't share sensitive information in prompts
- −Don't expect skill to replace human judgment
💡 Pro Tips
- ★Be specific about desired format and style
- ★Ask for multiple options to choose from
- ★Request explanations to understand reasoning
- ★Combine AI efficiency with human expertise
When to Use This
✓ Use when
Use when skill capabilities match your task, clear ROI on time saved, and you can validate outputs. Best for repetitive tasks, learning, and quality improvement.
✗ Avoid when
Avoid when task requires deep expertise you can't validate, involves sensitive decisions, or when learning process is more valuable than speed of completion.
Learning Path
- 1Familiarize yourself with skill capabilities and limitations
- 2Start with low-risk, non-critical tasks
- 3Progress to more complex and valuable use cases
- 4Build expertise through regular use and experimentation
Related Skills
alicloud-ai-audio-tts-voice-clone
2cinience/alicloud-skills
Cloudsame reponetwork-engineer
31404kidwiz/claude-supercode-skills
Productivitytag: networkwireshark-network-traffic-analysis
5sickn33/antigravity-awesome-skills
Productivitytag: networkwireshark-network-traffic-analysis
2davila7/claude-code-templates
Productivitytag: networkdocker-expert
15davila7/claude-code-templates
Cloudsame categoryk8s-manifest-generator
4wshobson/agents
Cloudsame categoryReviews
4.6★★★★★66 reviews- AAarav Liu★★★★★Dec 28, 2024
alicloud-network-esa has been reliable in day-to-day use. Documentation quality is above average for community skills.
- IIshan Li★★★★★Dec 20, 2024
alicloud-network-esa is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.
- IIshan Park★★★★★Dec 16, 2024
I recommend alicloud-network-esa for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.
- NNeel White★★★★★Dec 12, 2024
alicloud-network-esa is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.
- NNeel Sanchez★★★★★Dec 12, 2024
Useful defaults in alicloud-network-esa — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.
- IIra Taylor★★★★★Dec 12, 2024
Solid pick for teams standardizing on skills: alicloud-network-esa is focused, and the summary matches what you get after install.
- PPratham Ware★★★★★Dec 8, 2024
Keeps context tight: alicloud-network-esa is the kind of skill you can hand to a new teammate without a long onboarding doc.
- NNeel Perez★★★★★Dec 4, 2024
alicloud-network-esa has been reliable in day-to-day use. Documentation quality is above average for community skills.
- LLiam Liu★★★★★Dec 4, 2024
Keeps context tight: alicloud-network-esa is the kind of skill you can hand to a new teammate without a long onboarding doc.
- XXiao Zhang★★★★★Nov 23, 2024
alicloud-network-esa fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.
showing 1-10 of 66
1 / 7Discussion
Comments — not star reviews- No comments yet — start the thread.