- GenericPluginBoxを実装し、任意のプラグインBoxを動的に生成可能に - FileBox決め打ちコードを削除(設計思想違反の解消) - CURRENT_TASK.mdを更新し、nyash.toml v2対応の必要性を明確化 - 問題: プラグインテスターとNyash本体が古い単一Box型形式のまま 次のステップ: 1. nyash.tomlをv2形式(マルチBox型)に更新 2. プラグインテスターをv2対応に 3. Nyash本体のレジストリをv2対応に 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
13 lines
428 B
Plaintext
13 lines
428 B
Plaintext
// 汎用プラグインBox生成システムのテスト
|
|
print("=== Testing Generic Plugin Box Creation ===")
|
|
|
|
// FileBoxプラグインをテスト
|
|
local file
|
|
file = new FileBox() // 汎用システムでFileBoxを生成
|
|
print("✅ FileBox created successfully!")
|
|
|
|
// 将来的に他のプラグインBoxも同じ仕組みで動作
|
|
// local db = new DatabaseBox()
|
|
// local http = new HttpBox()
|
|
|
|
print("=== Test Complete ===") |