一键导入
template
Skill template with Bun Shell pattern. Copy this folder to create new skills.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Skill template with Bun Shell pattern. Copy this folder to create new skills.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Ask another agent a question and get an answer in real-time. Uses Agent Pool delegation API (sync mode). Auto-selects the right agent if not specified. Use when you need information, opinions, or validation from another agent NOW — not async threads.
Fast agent query via direct tmux (~5-10s). No audit trail. Use for quick checks, yes/no answers, and one-liners where /ask (30-40s) is too slow.
Delegate QA verification to another agent (async). Uses issue as completion artifact — no sync timeout. Use for long-running QA, review, or investigation tasks where /ask would time out.
Multi-agent brainstorm with refinement loop. Agents brainstorm, critique, and refine ideas together via delegation API. Supports 3 patterns: fan-out, round-robin, creative-critic. Live Telegram updates + markdown archive + GitHub Discussion as live thread (--publish).
Query schedule via Oracle API (Drizzle DB). Use when user says "schedule", "upcoming events", "what's on today", "calendar".
Create session retrospective with AI diary and lessons learned. Use when user says "rrr", "retrospective", "wrap up session", "session summary", or at end of work session.
| name | template |
| description | Skill template with Bun Shell pattern. Copy this folder to create new skills. |
Copy this folder to create a new skill.
/your-skill [args]
date "+🕐 %H:%M %Z (%A %d %B %Y)"
bun scripts/main.ts "$ARGUMENTS"
Or fallback (if Bun not available):
npx tsx scripts/main.ts "$ARGUMENTS"
Display results from script.
_template/ folderSKILL.md:
name: in frontmatterdescription: in frontmatterscripts/main.ts with your logicbun scripts/main.tsyour-skill/
├── SKILL.md ← Instructions for Claude
└── scripts/
└── main.ts ← Bun Shell logic
---
name: your-skill-name
description: One line description. Use when user says "X", "Y", or "Z".
---
Note: Description is the trigger signal. Include action words and use cases.
ARGUMENTS: $ARGUMENTS