ソース情報
- リポジトリ
- justcyl/my-skills
- ソースの最終更新活動
- 2026年5月7日 14:15
- 検出された 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 alan-pipelineコマンドは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 | alan-pipeline |
| description | 管理研究项目的 card(知识单元)。当用户需要记录实验发现、提出假设、做出决策时使用。适用于 alan/ 目录存在的项目。 |
用 card 作为原子单元驱动研究项目。
alan/
cards/
method/<slug>.md # 方法论 cards (p0, p1)
exp/<slug>.md # 实验与结果 cards (p0, p1)
framing/<slug>.md # 叙事框架 cards (p0, p1)
archived/<slug>.md # 归档 cards (p2,不分类别)
Card 是普通 Markdown 文件,用 read/write/edit 直接操作。
write alan/cards/{category}/{slug}.md
文件结构:
---
category: method # method | exp | framing
priority: p0 # p0 | p1 | p2
tags: [keyword1, keyword2]
links:
- cards/method/other-card
---
# 标题
1-3 句摘要。
## 1. 第一个要点
...
## 2. 第二个要点
...
完整 schema 和示例见 references/card-schema.md。
每个 ## section 必须有序号:## 1.、## 2.、…
跨卡片引用格式:{category}/{slug}#{section}
method/debiased-sorting#2 → method/debiased-sorting.md 的 ## 2.
exp/bleu-baseline#1 → exp/bleu-baseline.md 的 ## 1.
当用户说「改 method/debiased-sorting#2」,直接定位到对应文件的 ## 2. section。
| 级别 | 含义 | 目录 |
|---|---|---|
p0 | 核心事实——已验证,长期有效,其他 card 依赖它 | cards/{category}/ |
p1 | 中间状态——合理但脆弱,待验证或可能修改 | cards/{category}/ |
p2 | 归档——被取代、被证伪、不再相关 | cards/archived/ |
变更:p1→p0(多次验证后升级)、p1→p2 / p0→p2(移入 archived/,写明原因)。
mkdir -p alan/cards/archived
mv alan/cards/{category}/{slug}.md alan/cards/archived/{slug}.md
# edit frontmatter: priority: p2
# body 末尾加归档原因
归档后不保留原类别目录,统一放 archived/。
Slug 是身份。Slug 不变 = 同一张 card。
| 操作 | 允许? |
|---|---|
| 改错别字、补格式 | ✅ |
| 补充/修改 section 内容 | ✅ |
| 新增 section(末尾追加新序号) | ✅ |
| 改变核心命题/主张 | ❌ 新建 card,旧 card 降为 p2 |
| 改变 category | ❌ 新建 card,mv 到对应目录 |
同一事实只存在于一张 card 中。 创建新 card 前:
见 method/debiased-sorting#1p0 和 p1 cards 必须保持不过时。 每当创建或修改 card 时:
ls alan/cards/method/
ls alan/cards/exp/
grep -l "priority: p0" alan/cards/method/*.md
grep -rn "method/debiased-sorting#2" alan/cards/
每次修改 card(创建、编辑、归档)后,立即提交:
git add alan/cards/
git commit -m "pipeline: update cards (<列出变更的 slug>)"