ソース情報
- リポジトリ
- oi-language/oi
- ソースの最終更新活動
- 2026年8月16日 21:17
- 検出された SKILL.md の言語
- 英語
- スター
- 6
- フォーク
- 0
インストール方法
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
ソースファイルを確認
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
メニュー
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/oi-language/oi --skill hello-worldコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
Use when an Agent needs to statically validate an Oi module without compiling, rewriting, or executing it.
Use when an Agent needs deterministic typed receipt replay without invoking the target entry or effects.
Use when an Agent needs to check whether an Oi module can use one explicitly requested installed language version without changing files or executing the target.
SOC 職業分類に基づく
SKILL.md を表示中
| name | hello-world |
| description | Use when a user asks the Oi hello-world example to greet one supplied name. |
Use the local using-oi bootstrap adapter with this directory's oi.mod and main.oi. Bind exactly one caller input,
Name("Oi"), map Reply through caller.reply, and host-invoke lowercase main.
The result is unit completion and exactly one Greeting("Hello, Oi!") payload. The Name contract is checked during
caller binding and creates no entry operation. Constructing Greeting performs one contract Judgment. The immutable,
already-validated exact same named value then crosses the Reply boundary by reusing that validation evidence, without a
second Judgment. Judgment and Reply each have their required Allocation, Started, and Completed records; root completion
appears only as the Completed receipt terminal. Use the frozen runtime and suite catalog for canonical identity and
digest validation; this router defines no algorithm. main has no return value.