KO
|
EN
gitlite — search
Search
#python
#java
#python3
#arduino
#golang
#machine-learning
#rust
#html
#flask
#javascript
#seismology
#nodejs
zion-nocode-plugin
★ 10
Open GitHub ↗
No description available.
Download README (.md)
Explore Similar Repositories
pyproject-tui
:
⌨️ keyboard-driven tui for pyproject.toml
My-life-memory
:
A private spatial memory system with user-controlled read-only MCP access for trusted AI clients.
caltrack
:
Open source calorie tracking app
linkedout
:
An app to browse LinkedIn data exports offline
X4gking
:
No description available.
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
zion-nocode-plugin
?
Download (.md)
# Zion no-code plugin Build and modify [Zion](https://functorz.com) no-code apps from your AI coding assistant — the data model, UI components, server-side action flows, data bindings, payments, permissions, and runtime logs — powered by the `zion-mcp` CLI plus guided skills. For Zion projects only. ## Install ### Claude Code From your terminal: ```bash claude plugin marketplace add functorz-tech/zion-nocode-plugin claude plugin install zion-nocode@zion ``` Or inside Claude Code: ``` /plugin marketplace add functorz-tech/zion-nocode-plugin /plugin install zion-nocode@zion /reload-plugins ``` ### Codex ```bash codex plugin marketplace add functorz-tech/zion-nocode-plugin codex plugin add zion-nocode@zion codex plugin list | grep zion ``` ### Cursor Cursor 2.5+ reads this repo as a plugin marketplace (it ships `.cursor-plugin/marketplace.json`), installing both the `zion-platform` skill **and** the `zion` MCP server (`mcp.json`): - **Team / org (Cursor Teams or Enterprise):** an admin adds this Git repo as a team marketplace; members then install `zion-nocode` from Cursor's plugin list. - **Local / development:** symlink the plugin into Cursor's local plugins directory, then enable it in Cursor's plugin settings: ```bash ln -s "$PWD/plugin" ~/.cursor/plugins/local/zion-nocode ``` A public Cursor Marketplace listing is submitted at cursor.com/marketplace/publish (open source, manually reviewed). ### opencode opencode has no plugin marketplace; it reads the `zion` MCP server from an `opencode.json` (its `mcp` shape differs from `mcp.json`). This repo ships one at its root — copy it into your project, or merge its `mcp` block into your existing config: ```json { "$schema": "https://opencode.ai/config.json", "mcp": { "zion": { "type": "local", "command": ["npx", "-y", "zion-mcp@latest", "mcp"], "enabled": true } } } ``` You get Zion's tools; the guided `zion-platform` skill is plugin-only (Claude Code, Codex, Cursor). ### Other MCP-compatible tools (Windsurf, Cline, Claude Desktop, Qoder, Trae, …) These don't read the plugin marketplace, but they can use the underlying `zion-mcp` MCP server directly. Add it to your tool's MCP config: ```json { "mcpServers": { "zion": { "command": "npx", "args": ["-y", "zion-mcp@latest", "mcp"] } } } ``` You get Zion's tools (schema, action flows, data bindings, logs, …); the guided `zion-platform` skill is plugin-only (Claude Code, Codex, Cursor). ## First use The plugin runs `zion-mcp` through `npx`, so **Node.js 18+** is required. On first use you'll be asked to authenticate; you can also do it ahead of time: ```bash npx -y zion-mcp@latest login ``` Then ask your assistant to work on your Zion app — it loads the `zion-platform` skill and takes it from there.