mirror of
https://github.com/domfelipe/vibeflow-n8n.git
synced 2026-08-07 07:36:46 +00:00
feat: launch Vibeflow n8n v0.5.0
This commit is contained in:
commit
097f35215f
60 changed files with 2831 additions and 0 deletions
21
clients/opencode/README.md
Normal file
21
clients/opencode/README.md
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
# OpenCode
|
||||
|
||||
## Goal
|
||||
|
||||
Use this repository as the instruction pack for building n8n workflows conversationally through MCP.
|
||||
|
||||
## Suggested setup
|
||||
|
||||
- configure the n8n MCP server in OpenCode
|
||||
- provide `templates/system-prompt.md` as the primary behavior file
|
||||
- optionally pin `docs/skill-spec.md` for extra grounding
|
||||
|
||||
## Good defaults
|
||||
|
||||
For most users:
|
||||
- mode: balanced
|
||||
- assumptions: explicit
|
||||
- plan required before build: yes
|
||||
- final report: concise but complete
|
||||
|
||||
See `config-snippets.md` for example `opencode mcp add` and `opencode.jsonc` setup.
|
||||
31
clients/opencode/config-snippets.md
Normal file
31
clients/opencode/config-snippets.md
Normal file
|
|
@ -0,0 +1,31 @@
|
|||
# OpenCode config snippets
|
||||
|
||||
These snippets are examples. Replace placeholder URLs and names with your real n8n MCP configuration.
|
||||
|
||||
## Guided setup
|
||||
|
||||
```bash
|
||||
opencode mcp add
|
||||
opencode mcp list
|
||||
```
|
||||
|
||||
## Example `opencode.jsonc`
|
||||
|
||||
```jsonc
|
||||
{
|
||||
"$schema": "https://opencode.ai/config.json",
|
||||
"mcp": {
|
||||
"n8n": {
|
||||
"type": "remote",
|
||||
"url": "https://YOUR-N8N-MCP-ENDPOINT",
|
||||
"enabled": true
|
||||
}
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
## Suggested agent instruction
|
||||
|
||||
```text
|
||||
When the task is about n8n workflows, use the n8n MCP server and follow the Vibeflow n8n repository contract. Produce a normalized plan first, then build, validate, and report.
|
||||
```
|
||||
13
clients/opencode/sample-opencode.jsonc
Normal file
13
clients/opencode/sample-opencode.jsonc
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
{
|
||||
// Example OpenCode configuration
|
||||
"mcp": {
|
||||
"n8n": {
|
||||
"type": "local",
|
||||
"command": ["npx", "-y", "n8n-mcp"],
|
||||
"env": {
|
||||
"N8N_BASE_URL": "http://localhost:5678",
|
||||
"N8N_API_KEY": "replace-me"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue