返回顶部
u

urlsession-code-reviewURLSession代码审查

Reviews URLSession networking code for iOS/macOS. Covers async/await patterns, request building, error handling, caching, and background sessions.

作者: admin | 来源: ClawHub
源自
ClawHub
版本
V 1.2.0
安全检测
已通过
118
下载量
免费
免费
0
收藏
概述
安装方式
版本历史

urlsession-code-review

URLSession 代码审查

快速参考

主题参考
异步/等待async-networking.md
请求
request-building.md | | 错误 | error-handling.md | | 缓存 | caching.md |

审查清单

响应验证

  • - [ ] HTTP状态码已验证 - URLSession 不会在 404/500 时抛出异常
  • [ ] 在检查状态前将响应转换为 HTTPURLResponse
  • [ ] 同时处理传输错误(URLError)和 HTTP 错误

内存与资源

  • - [ ] 下载的文件已移动/删除(异步 API 不会自动删除)
  • [ ] 带有委托的会话调用 finishTasksAndInvalidate()
  • [ ] 长时间运行的任务使用 [weak self]
  • [ ] 存储的任务引用在适当时取消

配置

  • - [ ] 设置了 timeoutIntervalForResource(默认值为 7 天!)
  • [ ] URLCache 大小设置适当(默认 512KB 太小)
  • [ ] 会话被重用以实现连接池

后台会话

  • - [ ] 唯一标识符(特别是使用应用扩展时)
  • [ ] 基于文件的上传(而非基于数据)
  • [ ] 使用委托方法(而非完成处理程序)

安全

  • - [ ] 没有硬编码的密钥(使用钥匙串)
  • [ ] 对头部值进行清理以防止 CRLF 注入
  • [ ] 通过 URLComponents 设置查询参数(而非字符串拼接)

输出格式

markdown

关键问题


  1. 1. [FILE:LINE] 缺少 HTTP 状态验证

- 问题:404/500 响应未被视为错误
- 修复:检查 httpResponse.statusCode 是否为 200-299

标签

skill ai

通过对话安装

该技能支持在以下平台通过对话安装:

OpenClaw WorkBuddy QClaw Kimi Claude

方式一:安装 SkillHub 和技能

帮我安装 SkillHub 和 urlsession-code-review-1776098965 技能

方式二:设置 SkillHub 为优先技能安装源

设置 SkillHub 为我的优先技能安装源,然后帮我安装 urlsession-code-review-1776098965 技能

通过命令行安装

skillhub install urlsession-code-review-1776098965

下载

⬇ 下载 urlsession-code-review v1.2.0(免费)

文件大小: 11.68 KB | 发布时间: 2026-4-14 12:57

v1.2.0 最新 2026-4-14 12:57
Version 1.2.0 of urlsession-code-review updates and expands skill documentation and guidelines:

- Adds comprehensive SKILL.md with supported triggers, overview, detailed review checklist, and quick reference links.
- Checklist now explicitly covers async/await, request and error handling, memory management, caching, configuration, background sessions, and security best practices.
- Includes a sample markdown output format for reporting code review findings.

Archiver·手机版·闲社网·闲社论坛·羊毛社区· 多链控股集团有限公司 · 苏ICP备2025199260号-1

Powered by Discuz! X5.0   © 2024-2025 闲社网·线报更新论坛·羊毛分享社区·http://xianshe.com

p2p_official_large
返回顶部