By rierino-open
Connect Claude Code to the Rierino low-code development platform. Pull configuration, manage entities, query data, and automate platform operations via Rierino REST APIs.
Specialized agent for creating Groovy and JS codes.
Specialized agent for creating React components compatible with Rierino SDK.
Specialized agent for creating Drools codes.
Specialized agent for creating System elements for Rierino integrations.
Specialized agent for creating JMESPath expressions for json manipulation.
Expert Groovy and JavaScript scripting assistant. Specializes in production-ready business logic, data transformation scripts, and event-driven platform hooks. Writes defensive, context-aware code designed for Rierino runtime environments.
React component generator for the Rierino Low-Code page builder. Produces ready-to-paste UI editor components that embed into Rierino pages. Use this skill whenever the user asks to create, modify, or fix an editor component, a widget editor, a property panel control, or any React-based input component intended for the Rierino page builder — even if they don't say "editor" explicitly but the context involves configuration UI.
Expert Drools Rules Engineer AI. Specializes in generating, refining, and validating Drools Rule Language (DRL) code. Deeply understands rule firing mechanics, working memory, and truth maintenance within the Rierino platform.
Configuration generator for Rierino SYSTEM type Elements — configuration components that grant microservices access to external systems, databases, APIs, and more. Produces valid Element JSON objects with correct settings derived from the platform's element catalog. Use this skill whenever the user asks to create, modify, or configure a system element, external integration, database connection, API connector, or service binding — including REST APIs, ERPs, CRMs, message brokers, or any external system the platform connects to. Also trigger when the user mentions system settings, connection parameters, authentication configuration, or element types like REST, MongoDB, Kafka, etc.
Advanced JMESPath expression specialist for the Rierino platform. Expert in complex JSON transformations, arithmetic logic, and dynamic filtering using Rierino's extended function set.
Uses power tools
Uses Bash, Write, or Edit tools
Own this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge. GitHub access is read-only (username + org membership).
Sign in to claimOwn this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge. GitHub access is read-only (username + org membership).
Sign in to claimBased on adoption, maintenance, documentation, and repository signals. Not a security audit or endorsement.
Connect Claude Code to the Rierino low-code development platform. Drop this folder into your project and Claude gains full awareness of the platform — skills, agents, commands, and an authenticated MCP proxy — all with no build step.
Claude Code
│
├── reads skills/global/CONVENTIONS.md (naming & data standards)
├── reads skills/global/RULES.md (operational rules)
├── reads skills/<skill>/SKILL.md (per-task instructions)
│
├── runs /commands/rierino-status (health check)
├── runs /commands/rierino-mcp (list MCP capabilities)
│
└── calls MCP tools ──► whatever the Rierino server registers
│
Token vault (AES-256-GCM)
Auth layer (JWT login + auto-refresh)
│
Rierino MCP Server
The MCP server (proxy.js) is a transparent authenticated proxy — it
forwards every JSON-RPC call straight to the Rierino server. Tools are
discovered at runtime via tools/list; no tool definitions live in this plugin.
Tokens are encrypted in-memory with an ephemeral AES-256-GCM key. Claude only ever sees opaque masked handles — real JWTs never leave the proxy process.
Security note: Do not store credentials in
servers/rierino-mcp/.envor anywhere inside the plugin folder. Claude Code can read files within the project directory, which would expose your username and password in Claude's context. Use one of the two approaches below instead.
env block in .mcp.json (recommended)Pass credentials directly in your .mcp.json (or claude_desktop_config.json).
This file is read by the Claude Code harness to spawn the MCP server and is
not passed to Claude as conversation context.
{
"mcpServers": {
"rierino": {
"command": "node",
"args": ["[PATH]/servers/rierino-mcp/proxy.js"],
"env": {
"RIERINO_BASE_URL": "https://your-instance.rierino.com",
"RIERINO_USERNAME": "your-username",
"RIERINO_PASSWORD": "your-password"
}
}
}
}
Add .mcp.json to your .gitignore so credentials are never committed.
.env file outside the projectStore a .env file in a directory that is not inside your project tree
(e.g. ~/.config/rierino/.env) and point cwd to that directory:
{
"mcpServers": {
"rierino": {
"command": "node",
"args": ["[PATH]/servers/rierino-mcp/proxy.js"],
"cwd": "/home/you/.config/rierino"
}
}
}
proxy.js loads .env from its working directory, so this keeps credentials
entirely outside any folder Claude can browse.
.envCreate a .env file in your project root (next to .mcp.json) with:
RIERINO_UI_BASE_URL=https://your-instance.rierino.com
This is used by Claude to generate direct links to UI records (e.g. ${RIERINO_UI_BASE_URL}/app/design/common/ui?id={id}).
This file contains no credentials — only a public base URL — so it is safe to
keep inside the project.
Add .env to your .gitignore.
No npm install or build step — proxy.js has zero external dependencies.
> /rierino-status
> /rierino-mcp tools
npx claudepluginhub rierino-open/rierino-claude-plugin --plugin rierino-developmentConnect Claude Code to the Rierino low-code development platform. Pull configuration, manage entities, query data, and automate platform operations via Rierino REST APIs.
Intelligent draw.io diagramming plugin with AI-powered diagram generation, multi-platform embedding (GitHub, Confluence, Azure DevOps, Notion, Teams, Harness), conditional formatting, live data binding, and MCP server integration for programmatic diagram creation and management.
Comprehensive skill pack with 66 specialized skills for full-stack developers: 12 language experts (Python, TypeScript, Go, Rust, C++, Swift, Kotlin, C#, PHP, Java, SQL, JavaScript), 10 backend frameworks, 6 frontend/mobile, plus infrastructure, DevOps, security, and testing. Features progressive disclosure architecture for 50% faster loading.
Persistent file-based planning for AI coding agents. Crash-proof markdown plans (task_plan.md, findings.md, progress.md) that survive context loss and /clear, with an opt-in completion gate and multi-agent shared state. Manus-style. Works with Claude Code, Codex CLI, Cursor, Kiro, OpenCode and 60+ agents via the SKILL.md standard. Includes Arabic, German, Spanish, and Chinese (Simplified and Traditional).
Access thousands of AI prompts and skills directly in your AI coding assistant. Search prompts, discover skills, save your own, and improve prompts with AI.
Complete developer toolkit for Claude Code
Feature development with code-architect/explorer/reviewer agents, CLAUDE.md audit and session learnings, and Agent Skills creation with eval benchmarking from Anthropic.