packet-factory
仓库创建 2026年2月25日最近提交 24 天前SkillHot 收录 20 天前
▸ 精选理由
为有副作用的任务提供严格审批与不可变范围,适合受控团队流程。
这个 Skill 做什么
创建、审查并派发不可变的工作包,所有副作用操作需先获批。
把一项会产生副作用的操作先写成不可变的“工作包”,经过审批(APPROVED)才能运行。用在需要可审计、可回溯的发布、脚本或自动化任务时,防止随意改范围或直接执行。特别之处是审批后工作包范围被冻结,任何扩展都必须新建包并重新审批,执行前有人复核。
▸ 展开 SKILL.md 英文原文
Creates, reviews, and dispatches atomic work packets. Every task with a side effect requires an APPROVED packet before execution. Scope is immutable after approval — expansion requires a new packet.
2.9k
Stars
342
Forks
18
仓库内 Skill
+0
7 日增星
安装 / 使用
给你的 Agent 一句话(通用)
帮我安装这个 skill:https://raw.githubusercontent.com/open-gitagent/opengap/main/examples/jason-my-claw-is-the-law-deebee-4567b4/skills/packet-factory/SKILL.md或 curl 直取 SKILL.md
curl -fsSL "https://raw.githubusercontent.com/open-gitagent/opengap/main/examples/jason-my-claw-is-the-law-deebee-4567b4/skills/packet-factory/SKILL.md"SKILL.MD 节选查看完整文件 ↗
# Packet Factory The packet factory is the gatekeeper between intent and execution. Nothing with a side effect runs without an APPROVED packet. ## Commands ```bash # Create a new packet (DRAFT status) skills/packet-factory/new-packet.sh \ --intent "Post daily update to Slack #arc-angels" \ --source "Ludo DM 2026-04-01 09:00" \ --destination "Slack #arc-angels" # Review a packet (set APPROVED or REJECTED) skills/packet-factory/review-packet.sh --id 2026-04-01-001 # Dispatch an APPROVED packet (executes and logs output) skills/packet-factory/dispatch-packet.sh --id 2026-04-01-001 ``` ## Packet Queue All in-flight packets live in `memory/packet-queue.md`. The heartbeat pre-flight
via SKILL·HOT · 数据来自 GitHub 公开信息 · 原文版权归作者所有