delivery-package

delivery-package is a skill for Claude Code from dhslegen/digital-delivery-team. It costs 26 tokens per session (1,271 once invoked), scanned A, original, MIT.

A checklist and document set for preparing a software project for delivery. It covers a quick-start README, deployment instructions, a demo script, and review reports.

In plain words
What is it for?
Use it to assemble project documentation, provide repeatable deployment steps, describe the directory structure, prepare a short demo, and record test and review results.
Why use it?
It reduces the chance that users or operators are left without clear setup, deployment, rollback, or verification instructions.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the digital-delivery-team plugin — 13 skills, 21 commands, 9 agents, 8 hooks shipped together

Good fit Use it to assemble project documentation, provide repeatable deployment steps, describe the directory structure, prepare a short demo, and record test and review results.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/dhslegen/digital-delivery-team/delivery-package
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add dhslegen/digital-delivery-team --skill delivery-package
Clone the repo
git clone --depth 1 https://github.com/dhslegen/digital-delivery-team

Made for: Claude Code.

Or install digital-delivery-team, the plugin that ships this one along with the rest of its 13 skills, 21 commands, 9 agents, 8 hooks.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for delivery-package

README.md
[![agentmods](https://agentmods.dev/badge/skills/dhslegen/digital-delivery-team/delivery-package/github.svg)](https://agentmods.dev/skills/dhslegen/digital-delivery-team/delivery-package)
Your own site
<a href="https://agentmods.dev/skills/dhslegen/digital-delivery-team/delivery-package"><img src="https://agentmods.dev/badge/skills/dhslegen/digital-delivery-team/delivery-package/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for delivery-package

Your own site · 80×15
<a href="https://agentmods.dev/skills/dhslegen/digital-delivery-team/delivery-package"><img src="https://agentmods.dev/badge/skills/dhslegen/digital-delivery-team/delivery-package.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 26 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,271 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00026 $0.01271
Opus 5 $0.00013 $0.00635
Sonnet 5 $0.00005 $0.00254
Haiku 4.5 $0.00003 $0.00127

Measured 9d ago against content hash cd42f666b10e, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade A, and why

delivery-package scanned grade A with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 9d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

- **禁止**在 actuator 不可用时写 `curl /api/actuator/health`(会 404 `No static resource`)
skills/delivery-package/SKILL.md · 76 lines

How it starts

The opening of the file, as written. The whole thing — 76 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Delivery Package

Triggers

  • docs-agent 启动 / /package 命令

Package Must Contain

  1. README.md(5 分钟上手)
  2. docs/deploy.md(幂等部署)
  3. docs/demo-script.md(3–5 分钟演示)
  4. 质量守门产物(tests/test-report.md + docs/review-report.md

README 8 要素(缺一不可)

  1. 一句话定位(What):让读者 5 秒内判断是否值得继续读
  2. 受众与场景(Who / When):明确谁在什么场景下使用
  3. 5 分钟上手(copy-paste 命令序列):必须实际可跑通,含 make bootstrap 或等价一键命令
  4. 目录结构导览:列出关键目录及其用途
  5. 常见问题(Top 5 FAQ):覆盖最高频的上手障碍
  6. 相关文档索引:链接到 arch.md / api-contract.yaml / deploy.md
  7. 维护者与反馈渠道:姓名 + 联系方式(用 <YOUR_EMAIL> 占位)
  8. 许可证:明确声明

Deploy 原则

  • 幂等:重复跑 5 次,结果与第 1 次完全一致

  • 环境变量注入:不硬编码任何密钥、内网地址、账号信息(一律 <YOUR_XXX>

  • 回滚脚本:必须有对应的 rollback 命令或说明

  • 环境校验:跑前自检(Node 版本、必要工具、磁盘空间)

  • 脚本头部set -euo pipefail

  • 事实驱动(D36 / v0.9.20):必读 .ddt/deployment-facts.json(由 bin/audit-deployment-config.mjs 生成),禁止凭常识填以下 5 个值:

    1. MySQL root 密码:用 facts.derived.mysql_root_password(不得写 root123456password 等"常见值"——除非 facts 实际是这个值)
    2. MySQL 端口 / 数据库名:用 facts.derived.mysql_database + facts.server.datasource.port
    3. 后端端口 / context-path:用 facts.server.server.port + facts.server.server.context_path
    4. 前端 dev 端口:用 facts.web.dev_port(vite 默认 5173 / next 默认 3000 / cra 默认 3000)
    5. smoke 测试 health endpoint:用 facts.smoke_endpoint——
      • actuator 装好且暴露 → GET /actuator/health
      • actuator 缺失 → 用 facts 推断的 fallback(contract 第一个 GET 或 /auth/login
      • 禁止在 actuator 不可用时写 curl /api/actuator/health(会 404 No static resource

    facts.json 缺失(audit 失败)→ deploy.md 顶部必须加显式 ⚠️ 警告 + 用 <YOUR_XXX> 占位 + 提示用户跑 node $DDT_PLUGIN_ROOT/bin/audit-deployment-config.mjs 补全。

Demo Script 原则

  • 时间轴精确到 10 秒(示例:00:00–00:30 展示登录流程
  • 每步标注三项:动作 / 期望屏幕状态 / 口播稿
  • 总时长 3–5 分钟,聚焦 1–2 个核心特性,不要塞进 10 个特性
  • 意外演示备选分支(网络挂了 / 接口超时时的应对预案)

Do

  • <YOUR_XXX> 占位所有真实密钥、邮件、内网地址
  • 部署脚本加 set -euo pipefail
  • README 第一段必须让人知道"值不值得继续读"
  • 所有示例命令在 clean 环境下实际验证可跑通

Don't

  • README 不是 changelog,不要罗列每次更新历史
  • 部署不要依赖"先手工改一下 XXX 再运行"
  • Demo 不要总时长超过 5 分钟或覆盖超过 3 个特性
  • 不在 README 里放真实用户数据或截图中含敏感信息
  • D36 反模式:不要凭常识写 MYSQL_ROOT_PASSWORD=root / curl /api/actuator/health / 其它"假定默认"——这些导致演示翻车的硬编码假设必须从 .ddt/deployment-facts.json 派生

Read the full file on GitHub · 76 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 9d ago First seen · 76 lines · 26 tokens per session scan A cd42f666b10e

Subscribe to this mod's changes

delivery-package is a skill published in the GitHub repository dhslegen/digital-delivery-team (1 stars, last pushed 3mo ago), licensed MIT. It adds 26 tokens to every session and 1,271 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

design-system-reference

Style guides and implementation rules for frontend design. Works with design-discovery agent which handles context gathering and VS-based style recommendations. Contains detailed style guides, anti-patterns, and implementation checklists.

wigtn/wigtn-plugins · 43 tokens

team-memory-protocol

A shared-memory process for teams of coding agents working on the same build. It stores project knowledge, shared context, and task progress in separate files or repositories.

wigtn/wigtn-plugins · 42 tokens

knowledge-wiki

A tool that turns useful lessons from coding sessions into general articles for a team wiki. A wiki is a collection of linked reference pages, and this one can be kept locally or shared through a Git repository.

wigtn/wigtn-plugins · 97 tokens

handdrawn-diagram

Generate a hand-drawn (sketch-style) architecture or flow diagram as a committable image (SVG + PNG). Use when the user wants a sketch-aesthetic diagram for a README, docs, or hackathon/Devpost submission that still has correct, legible text and per-group color. Authors a Mermaid look:handDrawn source and renders it…

wigtn/wigtn-plugins · 166 tokens

code-review-levels

Reference documents for deep code review (Level 3) and architecture review (Level 4). Used by code-reviewer agent for advanced review levels.

wigtn/wigtn-plugins · 35 tokens

version-sentinel

Use when adding, bumping, or changing a dependency in package.json, requirements.txt, constraints.txt, pyproject.toml, Cargo.toml, .csproj, .fsproj, or .vbproj. Triggered automatically by version-sentinel's PreToolUse hook (where the host supports hooks) — this skill explains how to satisfy the block and record a…

KSEGIT/Version-Sentinel · 83 tokens