with one click
Draft Queue Skill
npx skills add https://github.com/JansenAnalytics/claudex --skill draft-queueCopy and paste this command into Claude Code to install the skill
Draft Queue Skill
npx skills add https://github.com/JansenAnalytics/claudex --skill draft-queueCopy and paste this command into Claude Code to install the skill
| name | draft-queue |
| description | Draft Queue Skill |
| category | writing |
| maturity | beta |
| tags | ["approval-queue","drafts","json-payload","telegram-action"] |
Use when: you want to take an external action that requires the user's approval before executing.
node ${DRAFT_QUEUE_HOME:-$HOME/projects/draft-queue}/add-draft.cjs \
--type <type> \
--desc "description" \
--payload '<json>'
telegram-message
{ "chat_id": "<your-telegram-user-id>", "message": "text here" }
shell-command
{ "command": "echo hello", "cwd": "$HOME" }
github-comment
{ "repo": "JansenAnalytics/myrepo", "issue": 42, "body": "comment text" }
github-pr-merge
{ "repo": "JansenAnalytics/myrepo", "pr": 7, "method": "squash" }
file-write
{ "path": "/path/to/your/file.txt", "content": "file contents" }
node ${DRAFT_QUEUE_HOME:-$HOME/projects/draft-queue}/approve.cjs <id>
node ${DRAFT_QUEUE_HOME:-$HOME/projects/draft-queue}/reject.cjs <id>
node ${DRAFT_QUEUE_HOME:-$HOME/projects/draft-queue}/list-drafts.cjs
node ${DRAFT_QUEUE_HOME:-$HOME/projects/draft-queue}/list-drafts.cjs --all
node ${DRAFT_QUEUE_HOME:-$HOME/projects/draft-queue}/list-drafts.cjs --status approved
${DRAFT_QUEUE_HOME:-$HOME/projects/draft-queue}/drafts.json (append-only)0 9 * * * /usr/bin/node ${DRAFT_QUEUE_HOME:-$HOME/projects/draft-queue}/expire-drafts.cjs >> ${DRAFT_QUEUE_HOME:-$HOME/projects/draft-queue}/draft-queue.log 2>&1--expires 7d etc.Semantic memory search across all agent memories and conversation history. Use BEFORE answering questions about prior work, decisions, dates, people, preferences, projects, or past conversations. Also use when asked "do you remember", "what did we discuss", "when did we", etc.
Get current weather and forecasts. Use when the user asks about weather, temperature, or forecasts for any location.
Set up and use 1Password CLI (op). Use when installing the CLI, enabling desktop app integration, signing in (single or multi-account), or reading/injecting/running secrets via op.
Accessibility auditing: WCAG compliance checking, contrast ratios, ARIA labels, keyboard navigation, semantic HTML, screen reader compatibility.
ADR Manager Skill
Autonomous API testing and evaluation. Tests any REST API for correctness, security, performance, error handling, and standards compliance. Discovers endpoints, probes with valid/invalid/edge-case payloads, checks auth, response times, injection vulnerabilities, and generates severity-scored reports with actionable fixes. Use before any API "done" claim.