用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/majiayu000/claude-skill-registry-data --skill aria-identity-architecture命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
Guided, hands-on course teaching architects how to use Claude Code — six short modules, each built around an exercise on a bundled sandbox project (a fictional Brooklyn art museum expansion). Resumable across sessions via PROGRESS.md. Use when the user runs /learn, says they're new to Claude Code, or asks how to learn it.
Upscale and restore video in ComfyUI — both the quick local path (per-frame ESRGAN like 4x_foolhardy_Remacri via ImageUpscaleWithModel + 4x→2x supersample, with its temporal-flicker tradeoff) and temporal-aware super-resolution (SeedVR2, the newer FlashVSR) with the downscale-first restore pipeline; RIFE/FILM frame interpolation via the BUILT-IN ComfyUI 0.26 FrameInterpolate (rife_v4.26 in models/frame_interpolation/) or the ComfyUI-Frame-Interpolation pack; 2x/4x scaling, VRAM tiers, VHS encode. Captures the classic downscale→SeedVR2→RIFE recipe and the current 2026 recommendation.
Auto-tag FF&E products with categories, colors, materials, and style tags using AI. Use when the user asks to "enrich", "tag", or "categorize" products, or to fill in missing category, material, or style columns in the schedule.
正在显示 SKILL.md
| name | aria-identity-architecture |
| description | ARIA の識別子ヒエラルキー(JCN/EDINET Code/証券コード)の設計思想と、コード変更シナリオへの対応戦略。 |
ARIA が「企業の同一性」をどのように追跡・保証するかを定義するスキル。
| 層 | 識別子 | 安定性 | 管轄 | ARIA での役割 |
|---|---|---|---|---|
| 🔒 | EDINET Code | 準静的 | 金融庁 | 真の主キー。物理パス分散(bin=EXX)およびデータ統合の軸 |
| ⚠️ | 国籍付証券コード | 動的 | JPX | JP:37780 形式。グローバル展開とサブ検索用 |
| 🔍 | JCN (法人番号) | 完全不変 | 国税庁 | 最終フォールバック用検索属性 |
設計原則: 下位の識別子が変更されても、上位の識別子で企業の一貫性を保証する。また、将来のグローバル展開を見据え、証券コードは常に「国籍プレフィックス」を伴う。
edinet_code.fillna(code) を identity_key として使用し、物理的なレコード統合を強制する。詳細は stock-master-reconciler を参照。| シナリオ | JCN | EDINET Code | 証券コード | ARIA の対応 |
|---|---|---|---|---|
| 商号変更 | 不変 | 不変 | 不変 | stocks_master の company_name を更新。 |
| 本店移転 | 不変 | 不変 | 不変 | stocks_master の address を更新。 |
| 合併 (吸収) | 存続会社 | 存続会社 | 存続会社 | 消滅会社の is_disappeared を True に設定。 |
| コード集約 | 不変 | 変更 | 不変 | ESE140190.csv を用い、廃止される旧コードを継続コードの former_edinet_codes へ逆方向に追記(マージ)し、現在の識別子を保護。 |
0 を付与し、さらに国籍プレフィックス(例: JP:)を強制付与する。CatalogManager はプレフィックスを無視した「コア・マッチング」をフォールバックとして備える。ARIA は、以下の「工学的主権」に基づき、マスタデータの整合性を死守します。
is_disappeared=True とし、物理削除しない。詳細は stock-master-reconciler を参照。