ソース情報
- リポジトリ
- justcyl/my-skills
- ソースの最終更新活動
- 2026年4月20日 12:07
- 検出された SKILL.md の言語
- 中国語
- スター
- 0
- フォーク
- 0
インストール方法
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
ソースファイルを確認
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
メニュー
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/justcyl/my-skills --skill brainstorm-agentコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
使用 Kapibala 的 OpenAI 兼容图片接口生成/编辑位图图片,默认模型 gpt-image-2。当需要生成图片、编辑已有图片、或批量生成候选图供挑选时触发。触发词:"生成图片""画一张""image generation""edit this image""gpt-image-2""批量出图"。
Add, collect, design, audit, and integrate SVG elements into editable diagrams.net/draw.io scientific figures. Use when the user asks to supplement a draw.io diagram with SVG icons, mechanisms, biological objects, model components, pathway symbols, instruments, graphical abstract elements, or publication-style vector assets. Every execution must first ask the user to choose the SVG source mode: network search or self-designed SVG. For network mode, search for multiple relevant SVG candidates for later user selection, record sources and license notes, and fall back to self-designed SVG for concepts with no suitable result. For self-design mode, create restrained, editable, Nature-style SVGs from simple vector primitives. Use with .drawio, SVG, diagrams.net, 科研流程图, 论文示意图, SVG补图, 图标补充, and draw.io配图.
Two-stage workflow for publication-style scientific schematics: generate or use a raster reference with imagegen/PNG/JPG/WebP, then trace it into an editable diagrams.net/draw.io file using research-drawio-skill. Use for Nature-style scientific illustrations, graphical abstracts, model or mechanism schematics, biomedical workflows, AI architecture figures, and paper-style visual drafts that should become editable .drawio source. For complex recognizable elements, author or select dedicated SVG glyphs and compare rendered SVGs against reference crops before inserting them, instead of assembling those elements from draw.io primitives. Enforces a minimum three-round strict pixel-level export/compare/fix loop for close raster-to-draw.io tracing tasks. Use with imagegen, draw.io, diagrams.net, scientific illustration, graphical abstract, paper schematic, figure tracing, SVG glyph tracing, and drawio redraw requests.
SOC 職業分類に基づく
SKILL.md を表示中
| name | brainstorm-agent |
| description | 先澄清目标与约束,再把需求拆成按依赖层次排序的可执行任务并输出 tasks.json;只做规划不做实现。 |
在以下场景触发本 skill:
tasks.json。tasks.json)、跑实现任务。tasks.json。每个任务必须包含 test-plan,并遵循:
unit:优先在当前层隔离验证,能在单测捕获的缺陷不得上推到集成或手工测试。integration:仅验证本层与真实下层连接是否正确。e2e-manual:仅保留必须人工判断的行为(视觉体验、交互感知等)。先过 unit,再过 integration,最后才做必要的 e2e-manual。
用户确认方向后,写入 tasks.json,结构如下:
{
"tasks": [
{
"task": "短标题(唯一)",
"description": "单句祈使句描述",
"steps": [
{ "step": 1, "description": "可验证子步骤" }
],
"acceptance-criteria": "可衡量且可验证的验收条件",
"test-plan": {
"unit": [],
"integration": [],
"e2e-manual": []
},
"skills": [],
"complete": false
}
]
}
输出前必须自检:
tasks 按依赖层顺序排列。test-plan 三个数组键。complete 初始值都为 false。acceptance-criteria 可验证,不使用模糊措辞。如果用户让你立刻动手实现,固定回复:
I am a brainstorm agent and do not execute tasks. The plan is ready in `tasks.json`.
To execute these tasks, use the Executor agent:
- Call the Executor agent with: `@executor`
- The Executor will coordinate task execution and progress tracking
references/upstream-brainstorm.mdreferences/tasks-schema.md