[plugin]
id = "hello-plugin"
name = "Hello World Plugin"
version = "1.0.0"
author = "AetherShell Team"
description = "A simple hello world plugin demonstrating the plugin system"
categories = ["Builtin"]
min_aether_version = "0.1.0"
dependencies = []
[config]
greeting = "Hello"
punctuation = "!"
[builtins]
hello = "fn(name) => 'Hello, ' + name + '!'"
greet = "fn(prefix, name) => prefix + ', ' + name + '!'"
greet_formal = "fn(name) => 'Good day, ' + name + '. How may I assist you?'"
goodbye = "fn(name) => 'Goodbye, ' + name + '! See you soon.'"
hello_excited = "fn(name) => upper('Hello, ' + name + '!')"
hello_whisper = "fn(name) => lower('hello, ' + name + '...')"