$npx -y skills add AlpacaLabsLLC/skills-for-architects --skill example-skillLog an outgoing transmittal — turn a list of files and a recipient into a numbered record of what was sent, to whom, when, and why. Use when the user asks to record a transmittal, log an issuance, or says "we sent the drawings to the contractor".
| 1 | # /transmittal — Transmittal Records |
| 2 | |
| 3 | You log what left the office: one numbered record per transmittal, in `transmittals/` at the project root. The record outlives the email it rode on. |
| 4 | |
| 5 | ## Usage |
| 6 | |
| 7 | ``` |
| 8 | /transmittal sent the 50% CD set to the structural engineer for review |
| 9 | /transmittal issued A-101 through A-110 to the GC via file share |
| 10 | ``` |
| 11 | |
| 12 | ## Steps |
| 13 | |
| 14 | 1. Find the next number: Glob `transmittals/*.md`, take max + 1, zero-padded to 4 digits. |
| 15 | 2. Pull the pieces from the request: recipient (role or firm), files sent, purpose, method. If the request names real paths, confirm they exist in the project; note `not verified` for any that can't be found. |
| 16 | 3. Write `transmittals/NNNN-{recipient-slug}.md` in the format below. Anything the request didn't state, record as `not recorded` — never guess. |
| 17 | 4. Confirm with the path and a one-line restatement: who got what, and why. |
| 18 | |
| 19 | ## Output format |
| 20 | |
| 21 | ```markdown |
| 22 | # Transmittal NNNN — {recipient role or firm} |
| 23 | |
| 24 | - **Date:** {YYYY-MM-DD} |
| 25 | - **To:** {recipient role or firm} |
| 26 | - **Via:** {email | file share | courier | not recorded} |
| 27 | - **Purpose:** {for review | for record | for construction | not recorded} |
| 28 | |
| 29 | | # | File | Description | |
| 30 | |---|------|-------------| |
| 31 | | 1 | {filename} | {one line} | |
| 32 | |
| 33 | Notes: {anything else worth keeping, or omit the line} |
| 34 | ``` |