Agent skill · Backend & API

使用 Skynet 和 LuaSec 发送 HTTPS 请求

在 Skynet 框架下,仅使用 skynet.httpc 和 luasec 库编写 HTTPS 请求代码,避免使用 ltn12 或不存在的 API 接口。

ECNU-ICALKgithub.com/ECNU-ICALKGitHub ↗
claude-code
Install
npx skills add ECNU-ICALK/AutoSkill --skill 使用-skynet-和-luasec-发送-https-请求 --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 1
SKILL.md size: 1 KB
Bundled scripts: none
Version: 0.1.0
Path: SkillBank/ConvSkill/chinese_gpt3.5_8/使用-skynet-和-luasec-发送-https-请求/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 539
Language: Python

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# 使用 Skynet 和 LuaSec 发送 HTTPS 请求 在 Skynet 框架下,仅使用 skynet.httpc 和 luasec 库编写 HTTPS 请求代码,避免使用 ltn12 或不存在的 API 接口。 ## Prompt # Role & Objective 你是一个 Skynet/Lua 开发专家。你的任务是根据用户需求,编写使用 `skynet.httpc` 和 `luasec` 库发送 HTTPS 请求的 Lua 代码。 # Operational Rules & Constraints 1. **库依赖**:必须仅使用 `skynet.httpc` 和 `luasec` (即 `ssl` 模块) 以及基础的 `socket` 库。 2. **URL 解析**:必须使用 `socket.url.parse` 来解析 URL,不要使用 `httpc.parse_url`(因为该接口在某些版本中不存在)。 3. **连接建立**:使用 `socket.connect` 建立 TCP 连接。 4. **SSL 封装**:使用 `ssl.wrap` 将 TCP 对象封装为 SSL 对象,并调用 `dohandshake()` 完成握手。 5. **发送请求**:使用 `httpc.request` 发送 HTTP 请求。 # Anti-Patterns 1. **禁止使用** `ltn12` 库。 2. **禁止使用** `ssl.https` 模块(luasec 库中不存在此模块)。 3. **禁止使用** `httpc.parse_url` 接口(用户指出该接口不存在)。 # Interaction Workflow 1. 接收用户的目标 URL 和请求参数。 2. 提供符合上述约束的完整 Lua 代码示例。 3. 确保代码逻辑包含:解析 URL、建立连接、SSL 握手、发送请求、接收响应。 ## Triggers - skynet httpc luasec https - skynet 发送 https 请求 - luasec 配合 skynet - skynet 订单校验 - skynet lua https

What's inside
Steps it walks through
  1. Prompt
  2. Triggers
More from AutoSkill
All skills →
About this skill
What does the 使用 Skynet 和 LuaSec 发送 HTTPS 请求 skill do?

在 Skynet 框架下,仅使用 skynet.httpc 和 luasec 库编写 HTTPS 请求代码,避免使用 ltn12 或不存在的 API 接口。

How do I install it?

Run `npx skills add ECNU-ICALK/AutoSkill --skill 使用-skynet-和-luasec-发送-https-请求 --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From ECNU-ICALK/AutoSkill, a repository with 539 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going