# zuoyebang

> Open-source publisher. Listings imported from github.com/zuoyebang — credited to the original author with their license.

- **Listings:** 19
- **Total installs:** 0
- **Profile:** https://agentstack.voostack.com/s/zuoyebang
- **Website:** https://github.com/zuoyebang

## Published listings

- [Performance Review](https://agentstack.voostack.com/l/skill-zuoyebang-aiweave-performance-review) — Skill · Free · security-reviewed — `agentstack add skill-zuoyebang-aiweave-performance-review`
  审计代码的性能合约。扫描新增/修改的代码，对照 docs/architecture/performance_contract.md §2 热路径清单与 §3-§6 性能约束，结合 docs/architecture/ai_dev_guide.md §10.2 grep 锚 rule-id 索引（R-PERF-*）机械执行。命中标 🟡 待复核（信号级），最终判定权在人工 reviewer。
- [Failure Path Review](https://agentstack.voostack.com/l/skill-zuoyebang-aiweave-failure-path-review) — Skill · Free · security-reviewed — `agentstack add skill-zuoyebang-aiweave-failure-path-review`
  审计 service 方法的所有失败分支是否在 transaction_design.md §6 失败路径全景图中覆盖，且每条分支都有对应测试用例。命中标 🔴 严重（缺失关键分支）或 🟡 待复核。
- [New Service](https://agentstack.voostack.com/l/skill-zuoyebang-aiweave-new-service) — Skill · Free · security-reviewed — `agentstack add skill-zuoyebang-aiweave-new-service`
  根据 service_design.md 的伪代码生成 Service 方法实现。自动选择错误类型、MySQL client 和双写模式。
- [New Middleware](https://agentstack.voostack.com/l/skill-zuoyebang-aiweave-new-middleware) — Skill · Free · security-reviewed — `agentstack add skill-zuoyebang-aiweave-new-middleware`
  根据 middleware.md 生成 Gin 认证中间件。
- [New Mq Consumer](https://agentstack.voostack.com/l/skill-zuoyebang-aiweave-new-mq-consumer) — Skill · Free · security-reviewed — `agentstack add skill-zuoyebang-aiweave-new-mq-consumer`
  根据 scheduled_tasks_design.md §3 生成 MQ 消费者（攒批 + 落库 + Redis 联动 + 死信队列）。
- [New Scheduled Task](https://agentstack.voostack.com/l/skill-zuoyebang-aiweave-new-scheduled-task) — Skill · Free · security-reviewed — `agentstack add skill-zuoyebang-aiweave-new-scheduled-task`
  根据 scheduled_tasks_design.md 生成定时任务实现（cobra 命令 / cycle / crontab + controller 入口 + service 方法）。
- [Io Review](https://agentstack.voostack.com/l/skill-zuoyebang-aiweave-io-review) — Skill · Free · security-reviewed — `agentstack add skill-zuoyebang-aiweave-io-review`
  审计代码的 IO 铁律。扫描新增/修改的代码，对照 docs/architecture/io_contract.md §2 三条 IO 铁律（批量优先 / 禁止 N+1 / 禁止独立串行编排）与 §3-§5 聚合并行约束，结合 docs/architecture/ai_dev_guide.md §10.2 grep 锚 rule-id 索引（R-IO-*）机械执行。命中标 🟡 待复核（信号级），最终判定权在人工 reviewer。
- [New Model](https://agentstack.voostack.com/l/skill-zuoyebang-aiweave-new-model) — Skill · Free · security-reviewed — `agentstack add skill-zuoyebang-aiweave-new-model`
  根据 database_design.md 的 DDL 生成或更新 GORM Model 文件。自动选择正确的包、类型映射和 tag 格式。
- [New Test](https://agentstack.voostack.com/l/skill-zuoyebang-aiweave-new-test) — Skill · Free · security-reviewed — `agentstack add skill-zuoyebang-aiweave-new-test`
  为指定接口生成 test/cases/ 下的接口级测试文件。基于 API 文档 + seed 数据生成 4 类用例骨架。
- [Design Solution](https://agentstack.voostack.com/l/skill-zuoyebang-aiweave-design-solution) — Skill · Free · security-reviewed — `agentstack add skill-zuoyebang-aiweave-design-solution`
  技术方案生成 — 输入一句需求，过 design-spec 七大决策视角（IO / 数据建模 / 并发 / 事务 / 缓存 / 稳定性 / 尾延迟与过载），产出一份占位符化的技术方案(TRD)，作为 A1 forward / B1 sync 的输入。不生成代码、不写 docs/。
- [Rebuild From Docs](https://agentstack.voostack.com/l/skill-zuoyebang-aiweave-rebuild-from-docs) — Skill · Free · security-reviewed — `agentstack add skill-zuoyebang-aiweave-rebuild-from-docs`
  从 docs/ 文档重建指定模块的代码。这是 AI 原生工程的终极能力：仅凭文档即可重建整个系统。
- [Domain Invariant Check](https://agentstack.voostack.com/l/skill-zuoyebang-aiweave-domain-invariant-check) — Skill · Free · security-reviewed — `agentstack add skill-zuoyebang-aiweave-domain-invariant-check`
  审计代码是否真正保护了领域不变量。扫描 service 方法，对照 docs/service/{module}_service.md §7 业务规则 / 隐式约束 / 业务状态机，校验伪码 [INVARIANT-CHECK: I-N] 标记与代码实现的一致性。命中标 🔴 严重（结构性问题）或 🟡 待复核。
- [Doc Sync Check](https://agentstack.voostack.com/l/skill-zuoyebang-aiweave-doc-sync-check) — Skill · Free · security-reviewed — `agentstack add skill-zuoyebang-aiweave-doc-sync-check`
  检查 docs/ 文档与代码的一致性，发现缺失文档、过期文档和未登记的文档。同时审计 aiweave 规范本体是否含业务名泄漏（PRINCIPLES §12），并机械扫描配置安全（R-CONF-*）与部署/运行时生命周期（R-SHUTDOWN-* / R-PROBE-* / R-DEPLOY-*）、数据对外暴露（R-SEC-*）危险锚。用于定期审计文档质量。
- [New Saga Step](https://agentstack.voostack.com/l/skill-zuoyebang-aiweave-new-saga-step) — Skill · Free · security-reviewed — `agentstack add skill-zuoyebang-aiweave-new-saga-step`
  生成 Saga 步骤的正向操作 + 补偿操作 + 幂等保证。读 docs/service/transaction_design.md §2 事务边界清单中标 Saga 的方法，按 §3 补偿逻辑设计 + §4 幂等性设计生成代码。
- [Sync Feature To Docs](https://agentstack.voostack.com/l/skill-zuoyebang-aiweave-sync-feature-to-docs) — Skill · Free · security-reviewed — `agentstack add skill-zuoyebang-aiweave-sync-feature-to-docs`
  增量需求同步 — 开发完需求后，把代码改动反向同步到全链路 docs/（INDEX/BUILD_STATUS/各架构 md/API/Service/缓存/错误码/常量/测试覆盖）。
- [New Controller](https://agentstack.voostack.com/l/skill-zuoyebang-aiweave-new-controller) — Skill · Free · security-reviewed — `agentstack add skill-zuoyebang-aiweave-new-controller`
  根据 API 接口文档生成 Controller handler 文件。自动区分多种响应模式（Internal vs UserSelf/Admin）。
- [New Router](https://agentstack.voostack.com/l/skill-zuoyebang-aiweave-new-router) — Skill · Free · security-reviewed — `agentstack add skill-zuoyebang-aiweave-new-router`
  根据 routing.md 生成路由注册文件（http.go 主入口 + http_{audience}.go 子文件）。
- [Update Index](https://agentstack.voostack.com/l/skill-zuoyebang-aiweave-update-index) — Skill · Free · security-reviewed — `agentstack add skill-zuoyebang-aiweave-update-index`
  自动扫描 docs/ 目录并更新 INDEX.md 的计数和条目，确保索引与实际文档保持一致。
- [Concurrency Review](https://agentstack.voostack.com/l/skill-zuoyebang-aiweave-concurrency-review) — Skill · Free · security-reviewed — `agentstack add skill-zuoyebang-aiweave-concurrency-review`
  审计代码的并发安全性。扫描新增/修改的代码，对照 docs/architecture/concurrency_safety.md §2 共享状态注册表与 §6 危险操作清单，结合 docs/architecture/ai_dev_guide.md §10.1 grep 锚 rule-id 索引（R-CONC-*）机械执行。命中标 🟡 待复核（信号级），最终判定权在人工 reviewer。

---
Seller on AgentStack — the marketplace for AI agent skills and MCP servers. Every listing is security-reviewed. Install any with `agentstack add <slug>`.
