在 Manus 中运行任何 Skill
一键导入
一键导入
一键在 Manus 中运行任何 Skill
开始使用http-client
星标84
分支15
更新时间2026年1月27日 15:34
发送HTTP请求,支持所有方法、请求头、认证和响应处理。
安装
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
文件资源管理器
2 个文件SKILL.md
readonly菜单
发送HTTP请求,支持所有方法、请求头、认证和响应处理。
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
自动分析B站视频内容,下载视频并拆解成帧图片,使用AI分析并生成详细的专题文档或实操教程。
设计RESTful API并生成OpenAPI/Swagger规范文档,遵循行业最佳实践。包括端点命名、请求/响应模式和错误处理模式。
为GitHub Actions、GitLab CI、Azure DevOps和Jenkins生成CI/CD流水线,包含构建、测试、部署阶段、缓存和密钥管理。
全面的代码审查技能,分析代码质量、识别问题、安全漏洞,并提供带严重性评级的改进建议。
设计和优化数据库模式,支持PostgreSQL、MySQL、SQLite和MongoDB。包括ER建模、规范化、索引优化和迁移脚本生成。
创建和管理多容器应用的Docker Compose配置,包含生产级设置、健康检查和网络配置。
| name | http-client |
| description | 发送HTTP请求,支持所有方法、请求头、认证和响应处理。 |
| metadata | {"short-description":"HTTP请求客户端"} |
| source | {"repository":"https://github.com/psf/requests","license":"Apache-2.0"} |
Make HTTP requests with full support for GET, POST, PUT, DELETE, headers, authentication, and file uploads.
/http command# GET request
python scripts/http_client.py GET https://api.example.com/users
# POST with JSON body
python scripts/http_client.py POST https://api.example.com/users --json '{"name": "John"}'
# With headers
python scripts/http_client.py GET https://api.example.com/data --header "Authorization: Bearer token"
# Upload file
python scripts/http_client.py POST https://api.example.com/upload --file document.pdf
http, api, rest, requests, client