Files
Moe Charm 1b98f85df9 🚀 Phase 10.11: Everything is Plugin革命完了!
主な変更:
- ConsoleBox/MathBoxプラグイン実装・登録完了
- nyash_box.toml 2ファイルシステム設計(中央レジストリ+個別仕様書)
- 全プラグインにnyash_box.tomlテンプレート追加
- プラグイン優先機能(NYASH_USE_PLUGIN_BUILTINS=1)文書化
- ビルトインBox削除準備(ChatGPT5実装中)
- ネイティブビルドデモ追加(Linux/Windows動作確認済み)

Everything is Box → Everything is Plugin への歴史的転換!
開発20日目にしてビルトインBox全削除という革命的決定。

🤖 Generated with Claude Code

Co-Authored-By: Claude <noreply@anthropic.com>
2025-08-30 01:33:52 +09:00

36 lines
719 B
TOML

[box]
name = "ConsoleBox"
version = "0.1.0"
description = "Standard output (stdout) printing"
author = "Nyash Team"
[provides]
boxes = ["ConsoleBox"]
[ConsoleBox]
type_id = 5
[ConsoleBox.lifecycle]
birth = { id = 0 }
fini = { id = 4294967295 }
[ConsoleBox.methods.log]
id = 1
args = [ { name = "text", type = "string" } ]
returns = { type = "void" }
[ConsoleBox.methods.println]
id = 2
args = [ { name = "text", type = "string" } ]
returns = { type = "void" }
[implementation]
ffi_version = 1
thread_safe = true
[artifacts]
windows = "target/x86_64-pc-windows-msvc/release/nyash_console_plugin.dll"
linux = "target/release/libnyash_console_plugin.so"
macos = "target/release/libnyash_console_plugin.dylib"