원클릭으로
plugins
Create and manage Lulu plugins. Use when building custom tools, integrating external APIs, or extending Lulu with new capabilities.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Create and manage Lulu plugins. Use when building custom tools, integrating external APIs, or extending Lulu with new capabilities.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
| name | plugins |
| description | Create and manage Lulu plugins. Use when building custom tools, integrating external APIs, or extending Lulu with new capabilities. |
Lulu plugins let you add custom tools without modifying the core.
~/.lulu/plugins/
~/.lulu/plugins/
└── plugin-slack/
├── lulu-plugin.json # Manifest
└── index.js # ES module
lulu-plugin.json:
{
"name": "slack",
"version": "0.1.0",
"description": "Send messages to Slack",
"author": "Me",
"permissions": ["network:slack.com"]
}
index.js:
export default {
name: "send_slack_message",
description: "Send a message to a Slack channel",
input_schema: {
type: "object",
properties: {
channel: { type: "string", description: "Channel ID" },
message: { type: "string", description: "Message text" }
},
required: ["channel", "message"]
},
async execute(input, config) {
const token = process.env.SLACK_TOKEN;
const resp = await fetch("https://slack.com/api/chat.postMessage", {
method: "POST",
headers: { "Authorization": "Bearer " + token, "Content-Type": "application/json" },
body: JSON.stringify({ channel: input.channel, text: input.message })
});
const data = await resp.json();
return data.ok ? "Message sent!" : "Failed: " + JSON.stringify(data);
}
};
~/.lulu/plugins/my-tool.js
Same structure as index.js above, just as a single file.
interface Plugin {
name: string; // Tool name (e.g., "send_slack_message")
description: string; // What it does
input_schema: object; // JSON Schema for inputs
execute(input, config): Promise<string>; // Main function
permissions?: string[]; // Optional permission tags
}
| Permission | Allows |
|---|---|
network | Any outbound HTTP request |
network:domain.com | Only requests to domain.com |
filesystem:read | Read any file |
filesystem:write | Write any file |
env:VAR_NAME | Read specific env var |
shell | Run shell commands |
Plugins are reloaded on each conversation turn. No server restart needed.
Design lightweight Kanban board snapshots for project tracking and workflow visualization
Design and generate data dashboards with charts, tables, and real-time layout
Design mobile app prototypes with native-feeling UI patterns
Design pitch deck slide decks with storytelling flow and investor-ready visuals
Design and generate SaaS landing pages with conversion-focused layouts
Design REST/GraphQL APIs