ソース情報
- リポジトリ
- adobe/data
- ソースの最終更新活動
- 2026年7月29日 18:15
- 検出された SKILL.md の言語
- 英語
- スター
- 11
- フォーク
- 8
インストール方法
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
ソースファイルを確認
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
メニュー
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/adobe/data --skill build-computedコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
Wire built features into a running application — import peer schemas, lazy-load peers, and mount the root UI.
Build a feature's data/ layer — data-type namespaces and the State spec. The first, foundational feature phase.
Build a feature's system-database — the real-time tick loop (systems the scheduler runs each frame). For real-time features only.
SOC 職業分類に基づく
SKILL.md を表示中
| name | build-computed |
| description | Build a feature's computed-database — derived observable values. |
| input | feature |
| output | feature |
Skip if this feature doesn't contain or require computed values.
Create services/main-service/computed-database/: computed-database.ts (extends the previous layer, adds
computed from ./computed/index.js) plus a computed/ folder — one cached derived value
per file + barrel. Derivation logic lives in data/; a computed only wires a db observable to it.
Comes after transaction-database.
The how is in the auto-loading features/services/main-service/computed.md rule.